File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
filters/include/pcl/filters Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -48,20 +48,24 @@ namespace pcl
48
48
{
49
49
/* * \brief @b ModelOutlierRemoval filters points in a cloud based on the distance between model and point.
50
50
* \details Iterates through the entire input once, automatically filtering non-finite points and the points outside
51
- * the model specified by setSampleConsensusModelPointer() and the threshold specified by setThreholdFunctionPointer().
52
51
* <br><br>
53
52
* Usage example:
54
53
* \code
54
+ *
55
55
* pcl::ModelCoefficients model_coeff;
56
56
* model_coeff.values.resize(4);
57
- * model_coeff.values[0] = 0; model_coeff.values[1] = 0; model_coeff.values[2] = 1.5; model_coeff.values[3] = 0.5;
57
+ * model_coeff.values[0] = 0;
58
+ * model_coeff.values[1] = 0;
59
+ * model_coeff.values[2] = 1;
60
+ * model_coeff.values[3] = 0.5;
58
61
* pcl::ModelOutlierRemoval<pcl::PointXYZ> filter;
59
62
* filter.setModelCoefficients (model_coeff);
60
63
* filter.setThreshold (0.1);
61
64
* filter.setModelType (pcl::SACMODEL_PLANE);
62
65
* filter.setInputCloud (*cloud_in);
63
- * filter.setFilterLimitsNegative (false);
66
+ * filter.setNegative (false);
64
67
* filter.filter (*cloud_out);
68
+
65
69
* \endcode
66
70
*/
67
71
template <typename PointT>
You can’t perform that action at this time.
0 commit comments