|
Point Cloud Library (PCL) 1.15.0
|
The field-based specialization of the comparison object. More...
#include <pcl/filters/conditional_removal.h>
Public Types | |
| using | Ptr = shared_ptr<FieldComparison<PointT> > |
| using | ConstPtr = shared_ptr<const FieldComparison<PointT> > |
| Public Types inherited from pcl::ComparisonBase< PointT > | |
| using | Ptr = shared_ptr<ComparisonBase<PointT> > |
| using | ConstPtr = shared_ptr<const ComparisonBase<PointT> > |
Public Member Functions | |
| FieldComparison (const std::string &field_name, ComparisonOps::CompareOp op, double compare_val) | |
| Construct a FieldComparison. | |
| FieldComparison (const FieldComparison &src) | |
| Copy constructor. | |
| FieldComparison & | operator= (const FieldComparison &src) |
| Copy operator. | |
| ~FieldComparison () override | |
| Destructor. | |
| bool | evaluate (const PointT &point) const override |
| Determine the result of this comparison. | |
| Public Member Functions inherited from pcl::ComparisonBase< PointT > | |
| ComparisonBase ()=default | |
| Constructor. | |
| virtual | ~ComparisonBase ()=default |
| Destructor. | |
| bool | isCapable () const |
| Return if the comparison is capable. | |
Protected Attributes | |
| double | compare_val_ |
| All types (that we care about) can be represented as a double. | |
| PointDataAtOffset< PointT > * | point_data_ |
| The point data to compare. | |
| Protected Attributes inherited from pcl::ComparisonBase< PointT > | |
| bool | capable_ {false} |
| True if capable. | |
| std::string | field_name_ |
| Field name to compare data on. | |
| std::uint32_t | offset_ {0} |
| The data offset. | |
| ComparisonOps::CompareOp | op_ {ComparisonOps::GT} |
| The comparison operator type. | |
The field-based specialization of the comparison object.
Definition at line 129 of file conditional_removal.h.
| using pcl::FieldComparison< PointT >::ConstPtr = shared_ptr<const FieldComparison<PointT> > |
Definition at line 137 of file conditional_removal.h.
| using pcl::FieldComparison< PointT >::Ptr = shared_ptr<FieldComparison<PointT> > |
Definition at line 136 of file conditional_removal.h.
| pcl::FieldComparison< PointT >::FieldComparison | ( | const std::string & | field_name, |
| ComparisonOps::CompareOp | op, | ||
| double | compare_val ) |
Construct a FieldComparison.
| field_name | the name of the field that contains the data we want to compare |
| op | the operator to use when making the comparison |
| compare_val | the constant value to compare the field value too |
Definition at line 49 of file conditional_removal.hpp.
References pcl::ComparisonBase< PointT >::capable_, compare_val_, pcl::ComparisonBase< PointT >::ComparisonBase(), pcl::ComparisonBase< PointT >::field_name_, pcl::getFields(), pcl::ComparisonBase< PointT >::op_, and point_data_.
Referenced by FieldComparison(), and operator=().
|
inline |
Copy constructor.
| [in] | src | the field comparison object to copy into this |
Definition at line 150 of file conditional_removal.h.
References compare_val_, pcl::ComparisonBase< PointT >::ComparisonBase(), FieldComparison(), and point_data_.
|
override |
|
overridevirtual |
Determine the result of this comparison.
| point | the point to evaluate |
Implements pcl::ComparisonBase< PointT >.
Definition at line 98 of file conditional_removal.hpp.
References pcl::ComparisonBase< PointT >::capable_, compare_val_, pcl::ComparisonOps::EQ, pcl::ComparisonOps::GE, pcl::ComparisonOps::GT, pcl::ComparisonOps::LE, pcl::ComparisonOps::LT, pcl::ComparisonBase< PointT >::op_, and point_data_.
|
inline |
Copy operator.
| [in] | src | the field comparison object to copy into this |
Definition at line 160 of file conditional_removal.h.
References compare_val_, FieldComparison(), and point_data_.
|
protected |
All types (that we care about) can be represented as a double.
Definition at line 179 of file conditional_removal.h.
Referenced by evaluate(), FieldComparison(), FieldComparison(), and operator=().
|
protected |
The point data to compare.
Definition at line 182 of file conditional_removal.h.
Referenced by evaluate(), FieldComparison(), FieldComparison(), operator=(), and ~FieldComparison().