Skip to content

Commit

Permalink
Fix "DON segmentation" tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
taketwo committed Dec 11, 2018
1 parent c8db0cf commit 43e6fe7
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -136,7 +136,8 @@ main (int argc, char *argv[])
new pcl::FieldComparison<PointNormal> ("curvature", pcl::ComparisonOps::GT, threshold))
);
// Build the filter
pcl::ConditionalRemoval<PointNormal> condrem (range_cond);
pcl::ConditionalRemoval<PointNormal> condrem;
condrem.setCondition (range_cond);
condrem.setInputCloud (doncloud);

pcl::PointCloud<PointNormal>::Ptr doncloud_filtered (new pcl::PointCloud<PointNormal>);
Expand Down

0 comments on commit 43e6fe7

Please sign in to comment.