Skip to content

Commit

Permalink
Merge pull request PointCloudLibrary#3082 from traversaro/patch-1
Browse files Browse the repository at this point in the history
Fix pcl::Registration::getFitnessScore documentation
  • Loading branch information
taketwo authored May 14, 2019
2 parents f9fb3f5 + db56812 commit f020a1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions registration/include/pcl/registration/registration.h
Original file line number Diff line number Diff line change
Expand Up @@ -379,14 +379,14 @@ namespace pcl
return (false);
}

/** \brief Obtain the Euclidean fitness score (e.g., sum of squared distances from the source to the target)
/** \brief Obtain the Euclidean fitness score (e.g., mean of squared distances from the source to the target)
* \param[in] max_range maximum allowable distance between a point and its correspondence in the target
* (default: double::max)
*/
inline double
getFitnessScore (double max_range = std::numeric_limits<double>::max ());

/** \brief Obtain the Euclidean fitness score (e.g., sum of squared distances from the source to the target)
/** \brief Obtain the Euclidean fitness score (e.g., mean of squared distances from the source to the target)
* from two sets of correspondence distances (distances between source and target points)
* \param[in] distances_a the first set of distances between correspondences
* \param[in] distances_b the second set of distances between correspondences
Expand Down

0 comments on commit f020a1b

Please sign in to comment.