-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add setter/getter for search method in ConditionalEuclideanClustering #2437
Add setter/getter for search method in ConditionalEuclideanClustering #2437
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👋 :). See the comments below.
/** \brief Get a pointer to the search method used. | ||
* @todo fix this for a generic search tree | ||
*/ | ||
inline SearcherPtr |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pass a const reference out instead.
const SearcherPtr&
} | ||
|
||
/** \brief Get a pointer to the search method used. | ||
* @todo fix this for a generic search tree |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you provide some more info on this comment?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actually this was just copy/pasted from here:
https://github.com/PointCloudLibrary/pcl/blob/master/segmentation/include/pcl/segmentation/extract_clusters.h#L318
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shall I just remove the @todo
line? I don't see why the brief description would not be sufficient here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup let's go with that.
…euclidean clustering
No description provided.