Point Cloud Library (PCL)
1.14.1-dev
|
EuclideanPlaneCoefficientComparator is a Comparator that operates on plane coefficients, for use in planar segmentation. More...
#include <pcl/segmentation/euclidean_plane_coefficient_comparator.h>
Public Member Functions | |
EuclideanPlaneCoefficientComparator ()=default | |
Empty constructor for PlaneCoefficientComparator. More... | |
~EuclideanPlaneCoefficientComparator ()=default | |
Destructor for PlaneCoefficientComparator. More... | |
bool | compare (int idx1, int idx2) const override |
Compare two neighboring points, by using normal information, and euclidean distance information. More... | |
Public Member Functions inherited from pcl::PlaneCoefficientComparator< PointT, PointNT > | |
PlaneCoefficientComparator () | |
Empty constructor for PlaneCoefficientComparator. More... | |
PlaneCoefficientComparator (shared_ptr< std::vector< float > > &plane_coeff_d) | |
Constructor for PlaneCoefficientComparator. More... | |
~PlaneCoefficientComparator () override=default | |
Destructor for PlaneCoefficientComparator. More... | |
void | setInputCloud (const PointCloudConstPtr &cloud) override |
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 (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... | |
bool | compare (int idx1, int idx2) const override |
Compare points at two indices by their plane equations. More... | |
Public Member Functions inherited from pcl::Comparator< PointT > | |
Comparator () | |
Empty constructor for comparator. More... | |
virtual | ~Comparator ()=default |
Empty destructor for comparator. More... | |
virtual PointCloudConstPtr | getInputCloud () const |
Get the input cloud this comparator operates on. More... | |
Additional Inherited Members | |
Protected Attributes inherited from pcl::PlaneCoefficientComparator< PointT, PointNT > | |
PointCloudNConstPtr | normals_ |
shared_ptr< std::vector< float > > | plane_coeff_d_ |
float | angular_threshold_ |
float | distance_threshold_ |
bool | depth_dependent_ |
Eigen::Vector3f | z_axis_ |
Protected Attributes inherited from pcl::Comparator< PointT > | |
PointCloudConstPtr | input_ |
EuclideanPlaneCoefficientComparator 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 53 of file euclidean_plane_coefficient_comparator.h.
using pcl::EuclideanPlaneCoefficientComparator< PointT, PointNT >::ConstPtr = shared_ptr<const EuclideanPlaneCoefficientComparator<PointT, PointNT> > |
Definition at line 63 of file euclidean_plane_coefficient_comparator.h.
using pcl::EuclideanPlaneCoefficientComparator< PointT, PointNT >::PointCloud = typename Comparator<PointT>::PointCloud |
Definition at line 56 of file euclidean_plane_coefficient_comparator.h.
using pcl::EuclideanPlaneCoefficientComparator< PointT, PointNT >::PointCloudConstPtr = typename Comparator<PointT>::PointCloudConstPtr |
Definition at line 57 of file euclidean_plane_coefficient_comparator.h.
using pcl::EuclideanPlaneCoefficientComparator< PointT, PointNT >::PointCloudN = pcl::PointCloud<PointNT> |
Definition at line 58 of file euclidean_plane_coefficient_comparator.h.
using pcl::EuclideanPlaneCoefficientComparator< PointT, PointNT >::PointCloudNConstPtr = typename PointCloudN::ConstPtr |
Definition at line 60 of file euclidean_plane_coefficient_comparator.h.
using pcl::EuclideanPlaneCoefficientComparator< PointT, PointNT >::PointCloudNPtr = typename PointCloudN::Ptr |
Definition at line 59 of file euclidean_plane_coefficient_comparator.h.
using pcl::EuclideanPlaneCoefficientComparator< PointT, PointNT >::Ptr = shared_ptr<EuclideanPlaneCoefficientComparator<PointT, PointNT> > |
Definition at line 62 of file euclidean_plane_coefficient_comparator.h.
|
default |
Empty constructor for PlaneCoefficientComparator.
|
default |
Destructor for PlaneCoefficientComparator.
|
inlineoverridevirtual |
Compare two neighboring points, by using normal information, and euclidean distance information.
[in] | idx1 | The index of the first point. |
[in] | idx2 | The index of the second point. |
Implements pcl::Comparator< PointT >.
Definition at line 82 of file euclidean_plane_coefficient_comparator.h.
References pcl::PlaneCoefficientComparator< PointT, PointNT >::angular_threshold_, pcl::PlaneCoefficientComparator< PointT, PointNT >::distance_threshold_, and pcl::PlaneCoefficientComparator< PointT, PointNT >::normals_.