|
Point Cloud Library (PCL)
1.6.0
|
EdgeAwarePlaneComparator is a Comparator that operates on plane coefficients, for use in planar segmentation. More...
#include <pcl/segmentation/edge_aware_plane_comparator.h>


Public Types | |
| typedef Comparator< PointT > ::PointCloud | PointCloud |
| typedef Comparator< PointT > ::PointCloudConstPtr | PointCloudConstPtr |
| typedef pcl::PointCloud< PointNT > | PointCloudN |
| typedef PointCloudN::Ptr | PointCloudNPtr |
| typedef PointCloudN::ConstPtr | PointCloudNConstPtr |
| typedef boost::shared_ptr < EdgeAwarePlaneComparator < PointT, PointNT > > | Ptr |
| typedef boost::shared_ptr < const EdgeAwarePlaneComparator < PointT, PointNT > > | ConstPtr |
| typedef PointCloud::Ptr | PointCloudPtr |
Public Member Functions | |
| EdgeAwarePlaneComparator () | |
| Empty constructor for PlaneCoefficientComparator. More... | |
| EdgeAwarePlaneComparator (const float *distance_map) | |
| Empty constructor for PlaneCoefficientComparator. More... | |
| virtual | ~EdgeAwarePlaneComparator () |
| Destructor for PlaneCoefficientComparator. More... | |
| void | setDistanceMap (const float *distance_map) |
| Set a distance map to use. More... | |
| const float * | getDistanceMap () const |
| Return the distance map used. More... | |
| virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
| Set the input cloud for the comparator. More... | |
| void | setInputNormals (const PointCloudNConstPtr &normals) |
| Provide a pointer to the input normals. More... | |
| PointCloudNConstPtr | getInputNormals () const |
| Get the input normals. More... | |
| void | setPlaneCoeffD (boost::shared_ptr< std::vector< float > > &plane_coeff_d) |
| Provide a pointer to a vector of the d-coefficient of the planes' hessian normal form. More... | |
| void | setPlaneCoeffD (std::vector< float > &plane_coeff_d) |
| Provide a pointer to a vector of the d-coefficient of the planes' hessian normal form. More... | |
| const std::vector< float > & | getPlaneCoeffD () const |
| Get a pointer to the vector of the d-coefficient of the planes' hessian normal form. More... | |
| virtual void | setAngularThreshold (float angular_threshold) |
| Set the tolerance in radians for difference in normal direction between neighboring points, to be considered part of the same plane. More... | |
| float | getAngularThreshold () const |
| Get the angular threshold in radians for difference in normal direction between neighboring points, to be considered part of the same plane. More... | |
| void | setDistanceThreshold (float distance_threshold, bool depth_dependent=false) |
| Set the tolerance in meters for difference in perpendicular distance (d component of plane equation) to the plane between neighboring points, to be considered part of the same plane. More... | |
| float | getDistanceThreshold () const |
| Get the distance threshold in meters (d component of plane equation) between neighboring points, to be considered part of the same plane. More... | |
| virtual PointCloudConstPtr | getInputCloud () const |
| Get the input cloud this comparator operates on. More... | |
EdgeAwarePlaneComparator is a Comparator that operates on plane coefficients, for use in planar segmentation.
In conjunction with OrganizedConnectedComponentSegmentation, this allows planes to be segmented from organized data.
Definition at line 55 of file edge_aware_plane_comparator.h.
| typedef boost::shared_ptr<const EdgeAwarePlaneComparator<PointT, PointNT> > pcl::EdgeAwarePlaneComparator< PointT, PointNT >::ConstPtr |
Definition at line 66 of file edge_aware_plane_comparator.h.
| typedef Comparator<PointT>::PointCloud pcl::EdgeAwarePlaneComparator< PointT, PointNT >::PointCloud |
Definition at line 58 of file edge_aware_plane_comparator.h.
| typedef Comparator<PointT>::PointCloudConstPtr pcl::EdgeAwarePlaneComparator< PointT, PointNT >::PointCloudConstPtr |
Definition at line 59 of file edge_aware_plane_comparator.h.
| typedef pcl::PointCloud<PointNT> pcl::EdgeAwarePlaneComparator< PointT, PointNT >::PointCloudN |
Definition at line 61 of file edge_aware_plane_comparator.h.
| typedef PointCloudN::ConstPtr pcl::EdgeAwarePlaneComparator< PointT, PointNT >::PointCloudNConstPtr |
Definition at line 63 of file edge_aware_plane_comparator.h.
| typedef PointCloudN::Ptr pcl::EdgeAwarePlaneComparator< PointT, PointNT >::PointCloudNPtr |
Definition at line 62 of file edge_aware_plane_comparator.h.
|
inherited |
Definition at line 57 of file comparator.h.
| typedef boost::shared_ptr<EdgeAwarePlaneComparator<PointT, PointNT> > pcl::EdgeAwarePlaneComparator< PointT, PointNT >::Ptr |
Definition at line 65 of file edge_aware_plane_comparator.h.
|
inline |
Empty constructor for PlaneCoefficientComparator.
Definition at line 75 of file edge_aware_plane_comparator.h.
|
inline |
Empty constructor for PlaneCoefficientComparator.
| [in] | distance_map | the distance map to use |
Definition at line 82 of file edge_aware_plane_comparator.h.
|
inlinevirtual |
Destructor for PlaneCoefficientComparator.
Definition at line 89 of file edge_aware_plane_comparator.h.
|
inlineinherited |
Get the angular threshold in radians for difference in normal direction between neighboring points, to be considered part of the same plane.
Definition at line 158 of file plane_coefficient_comparator.h.
|
inline |
Return the distance map used.
Definition at line 105 of file edge_aware_plane_comparator.h.
|
inlineinherited |
Get the distance threshold in meters (d component of plane equation) between neighboring points, to be considered part of the same plane.
Definition at line 177 of file plane_coefficient_comparator.h.
|
inlinevirtualinherited |
Get the input cloud this comparator operates on.
Definition at line 85 of file comparator.h.
|
inlineinherited |
Get the input normals.
Definition at line 117 of file plane_coefficient_comparator.h.
|
inlineinherited |
Get a pointer to the vector of the d-coefficient of the planes' hessian normal form.
Definition at line 142 of file plane_coefficient_comparator.h.
|
inlinevirtualinherited |
Set the tolerance in radians for difference in normal direction between neighboring points, to be considered part of the same plane.
| [in] | angular_threshold | the tolerance in radians |
Definition at line 151 of file plane_coefficient_comparator.h.
|
inline |
Set a distance map to use.
For an example of a valid distance map see OrganizedIntegralImageNormalEstimation
| [in] | distance_map | the distance map to use |
Definition at line 98 of file edge_aware_plane_comparator.h.
|
inlineinherited |
Set the tolerance in meters for difference in perpendicular distance (d component of plane equation) to the plane between neighboring points, to be considered part of the same plane.
| [in] | distance_threshold | the tolerance in meters (at 1m) |
| [in] | depth_dependent | whether to scale the threshold based on range from the sensor (default: false) |
Definition at line 168 of file plane_coefficient_comparator.h.
|
inlinevirtualinherited |
Set the input cloud for the comparator.
| [in] | cloud | the point cloud this comparator will operate on |
Reimplemented from pcl::Comparator< PointT >.
Definition at line 101 of file plane_coefficient_comparator.h.
|
inlineinherited |
Provide a pointer to the input normals.
| [in] | normals | the input normal cloud |
Definition at line 110 of file plane_coefficient_comparator.h.
|
inlineinherited |
Provide a pointer to a vector of the d-coefficient of the planes' hessian normal form.
a, b, and c are provided by the normal cloud.
| [in] | plane_coeff_d | a pointer to the plane coefficients. |
Definition at line 126 of file plane_coefficient_comparator.h.
|
inlineinherited |
Provide a pointer to a vector of the d-coefficient of the planes' hessian normal form.
a, b, and c are provided by the normal cloud.
| [in] | plane_coeff_d | a pointer to the plane coefficients. |
Definition at line 135 of file plane_coefficient_comparator.h.
1.8.3.1