Skip to content

Commit

Permalink
Remove deprecated function SupervoxelClustering::getColoredVoxelCloud()
Browse files Browse the repository at this point in the history
  • Loading branch information
taketwo committed Nov 15, 2019
1 parent 7254443 commit 5d03496
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions segmentation/include/pcl/segmentation/supervoxel_clustering.h
Original file line number Diff line number Diff line change
Expand Up @@ -296,20 +296,6 @@ namespace pcl
typename pcl::PointCloud<PointXYZL>::Ptr
getLabeledCloud () const;

/** \brief Returns an RGB colorized voxelized cloud showing superpixels
* Otherwise it returns an empty pointer.
* Points that belong to the same supervoxel have the same color.
* But this function doesn't guarantee that different segments will have different
* color(it's random). Points that are unlabeled will be black
* \note This will expand the label_colors_ vector so that it can accommodate all labels
*/
[[deprecated("use getLabeledVoxelCloud() instead. An example of how to display and save with colorized labels can be found in examples/segmentation/example_supervoxels.cpp")]]
pcl::PointCloud<pcl::PointXYZRGBA>::Ptr
getColoredVoxelCloud () const
{
return pcl::PointCloud<PointXYZRGBA>::Ptr (new pcl::PointCloud<PointXYZRGBA>);
}

/** \brief Returns labeled voxelized cloud
* Points that belong to the same supervoxel have the same label.
* Labels for segments start from 1, unlabled points have label 0
Expand Down

0 comments on commit 5d03496

Please sign in to comment.