|
Point Cloud Library (PCL)
1.6.0
|
Base condition class. More...
#include <pcl/filters/conditional_removal.h>

Public Types | |
| typedef pcl::ComparisonBase < PointT > | ComparisonBase |
| typedef ComparisonBase::Ptr | ComparisonBasePtr |
| typedef ComparisonBase::ConstPtr | ComparisonBaseConstPtr |
| typedef boost::shared_ptr < ConditionBase< PointT > > | Ptr |
| typedef boost::shared_ptr < const ConditionBase< PointT > > | ConstPtr |
Public Member Functions | |
| ConditionBase () | |
| Constructor. More... | |
| virtual | ~ConditionBase () |
| Destructor. More... | |
| void | addComparison (ComparisonBaseConstPtr comparison) |
| Add a new comparison. More... | |
| void | addCondition (Ptr condition) |
| Add a nested condition to this condition. More... | |
| bool | isCapable () const |
| Check if evaluation requirements are met. More... | |
| virtual bool | evaluate (const PointT &point) const =0 |
| Determine if a point meets this condition. More... | |
Base condition class.
Definition at line 426 of file conditional_removal.h.
| typedef pcl::ComparisonBase<PointT> pcl::ConditionBase< PointT >::ComparisonBase |
Definition at line 429 of file conditional_removal.h.
| typedef ComparisonBase::ConstPtr pcl::ConditionBase< PointT >::ComparisonBaseConstPtr |
Definition at line 431 of file conditional_removal.h.
| typedef ComparisonBase::Ptr pcl::ConditionBase< PointT >::ComparisonBasePtr |
Definition at line 430 of file conditional_removal.h.
| typedef boost::shared_ptr<const ConditionBase<PointT> > pcl::ConditionBase< PointT >::ConstPtr |
Definition at line 434 of file conditional_removal.h.
| typedef boost::shared_ptr<ConditionBase<PointT> > pcl::ConditionBase< PointT >::Ptr |
Definition at line 433 of file conditional_removal.h.
|
inline |
Constructor.
Definition at line 437 of file conditional_removal.h.
|
inlinevirtual |
Destructor.
Definition at line 442 of file conditional_removal.h.
| void pcl::ConditionBase< PointT >::addComparison | ( | ComparisonBaseConstPtr | comparison | ) |
Add a new comparison.
| comparison | the comparison operator to add |
Definition at line 607 of file conditional_removal.hpp.
| void pcl::ConditionBase< PointT >::addCondition | ( | Ptr | condition | ) |
Add a nested condition to this condition.
| condition | the nested condition to be added |
Definition at line 616 of file conditional_removal.hpp.
|
pure virtual |
Determine if a point meets this condition.
Implemented in pcl::ConditionOr< PointT >, and pcl::ConditionAnd< PointT >.
|
inline |
Check if evaluation requirements are met.
Definition at line 465 of file conditional_removal.h.
1.8.3.1