Skip to content

Commit

Permalink
removed reference to a parameter that doesnt exist yet
Browse files Browse the repository at this point in the history
  • Loading branch information
tiffanyec committed Oct 5, 2022
1 parent 3cd6f1a commit cbc3396
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gh_pages/_source/session5/Building-a-Perception-Pipeline.rst
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,9 @@ Euclidean Cluster Extraction

std::vector<pcl::PointIndices> cluster_indices;
pcl::EuclideanClusterExtraction<pcl::PointXYZ> ec;
ec.setClusterTolerance (cluster_tol);
ec.setMinClusterSize (cluster_min_size);
ec.setMaxClusterSize (cluster_max_size);
ec.setClusterTolerance (0.01);
ec.setMinClusterSize (1);
ec.setMaxClusterSize (10000);
ec.setSearchMethod (tree);
ec.setInputCloud (cloud_filtered);
ec.extract (cluster_indices);
Expand Down

0 comments on commit cbc3396

Please sign in to comment.