Skip to content

Commit 2049ffa

Browse files
committed
fix doxygen style
1 parent 56422d9 commit 2049ffa

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ed_sensor_integration/include/ed/laser/updater.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ class LaserUpdater
3636
* @brief update update the worldmodel based on a novel laserscan message.
3737
*
3838
* @param[in] world worldmodel to be updated
39-
* @param[in] scan laserscan message
40-
* @param[in] sensor_pose pose of the sensor at the time of the measurement
39+
* @param[in] sensor_ranges distances measured by the lrf
40+
* @param[in] sensor_pose pose of the lrf sensor at the time of the measurement
41+
* @param[in] timestamp timestamp of the lrf measurment
4142
* @param[out] req update request
4243
*/
4344
void update(const ed::WorldModel& world, std::vector<double>& sensor_ranges,
@@ -94,8 +95,7 @@ class LaserUpdater
9495
* @brief associate: filter sensor information and remove ranges that can be associated with the worldmodel. Leaving only novel data.
9596
*
9697
* @param[in] sensor_ranges distances measured by the lrf
97-
* @param[in] model_ranges distances as predicted by the worldmodel
98-
* @param[out] model_ranges filtered distances. (associated ranges have value 0.0)
98+
* @param[in,out] model_ranges distances as predicted by the worldmodel. Will be filtered. (associated ranges have value 0.0)
9999
*/
100100
void associate(std::vector<double>& sensor_ranges, const std::vector<double>& model_ranges);
101101

ed_sensor_integration/src/laser/updater.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ geo::Pose3D getPoseFromCache(const ed::Entity& e, std::map<ed::UUID, geo::Pose3D
107107
* @param x_step Step size to sample candidate poses
108108
* @param y_window Window size to sample candidate poses
109109
* @param y_step Step size to sample candidate poses
110-
* @param yaw_min Yaw_plus window size to sample candidate poses\
110+
* @param yaw_min,Yaw_plus window size to sample candidate poses
111111
* @param yaw_step Step size to sample candidate poses
112112
* @param pose_cache Cache of entity poses
113113
* @return Estimated pose of the entity

0 commit comments

Comments
 (0)