In this tutorial we will learn how to use the min-cut based segmentation algorithm implemented in the pcl::MinCutSegmentation class.
This algorithm makes a binary segmentation of the given input cloud. Having objects center and its radius the algorithm divides the cloud on two sets:
foreground and background points (points that belong to the object and those that do not belong).
For the given point cloud algorithm constructs the graph that contains every single point of the cloud as a set of vertices and two more vertices
called source and sink. Every vertex of the graph that corresponds to the point is connected with source and sink with the edges.
In addition to these, every vertex (except source and sink) has edges that connect the corresponding point with its nearest neighbours.
Algorithm assigns weights for every edge. There are three different types of weight. Let’s examine them:
First of all it assigns weight to the edges between clouds points. This weight is called smooth cost and is calculated by the formula:
Here
is the distance between points. The farther away the points are, the more is probability that the edge will be cut.
Next step the algorithm sets data cost. It consists of foreground and background penalties.
The first one is the weight for those edges that connect clouds points with the source vertex and has the constant user-defined value.
The second one is assigned to the edges that connect points with the sink vertex and is calculated by the formula:
Here
is the distance to the expected center of the object in the horizontal plane:
Radius that occurs in the formula is the input parameter for this algorithm and can be roughly considered as the range from objects center
outside of which there are no points that belong to foreground (objects horizontal radius).
After all the preparations the search of the minimum cut is made. Based on an analysis of this cut, cloud is divided on foreground and
background points.
First of all you will need the point cloud for this tutorial.
This is a good one for the purposes of the algorithm.
Next what you need to do is to create a file min_cut_segmentation.cpp in any editor you prefer and copy the following code inside of it:
1#include<iostream> 2#include<vector> 3#include<pcl/io/pcd_io.h> 4#include<pcl/point_types.h> 5#include<pcl/visualization/cloud_viewer.h> 6#include<pcl/filters/filter_indices.h> // for pcl::removeNaNFromPointCloud 7#include<pcl/segmentation/min_cut_segmentation.h> 8 9intmain()10{11pcl::PointCloud<pcl::PointXYZ>::Ptrcloud(newpcl::PointCloud<pcl::PointXYZ>);12if(pcl::io::loadPCDFile<pcl::PointXYZ>("min_cut_segmentation_tutorial.pcd",*cloud)==-1)13{14std::cout<<"Cloud reading failed."<<std::endl;15return(-1);16}1718pcl::IndicesPtrindices(newstd::vector<int>);19pcl::removeNaNFromPointCloud(*cloud,*indices);2021pcl::MinCutSegmentation<pcl::PointXYZ>seg;22seg.setInputCloud(cloud);23seg.setIndices(indices);2425pcl::PointCloud<pcl::PointXYZ>::Ptrforeground_points(newpcl::PointCloud<pcl::PointXYZ>());26pcl::PointXYZpoint;27point.x=68.97;28point.y=-18.55;29point.z=0.57;30foreground_points->points.push_back(point);31seg.setForegroundPoints(foreground_points);3233seg.setSigma(0.25);34seg.setRadius(3.0433856);35seg.setNumberOfNeighbours(14);36seg.setSourceWeight(0.8);3738std::vector<pcl::PointIndices>clusters;39seg.extract(clusters);4041std::cout<<"Maximum flow is "<<seg.getMaxFlow()<<std::endl;4243pcl::PointCloud<pcl::PointXYZRGB>::Ptrcolored_cloud=seg.getColoredCloud();44pcl::visualization::CloudViewerviewer("Cluster viewer");45viewer.showCloud(colored_cloud);46while(!viewer.wasStopped())47{48}4950return(0);51}
The purpose of these lines is to show that pcl::MinCutSegmentation class can work with indices. Here, only the valid points are chosen for segmentation.
pcl::MinCutSegmentation<pcl::PointXYZ>seg;
Here is the line where the instantiation of the pcl::MinCutSegmentation class takes place.
It is the template class that has only one parameter - PointT - which says what type of points will be used.
seg.setInputCloud(cloud);seg.setIndices(indices);
These lines provide the algorithm with the cloud that must be segmented and the indices.