|
Point Cloud Library (PCL) 1.15.0
|
Branch estimator for ternary trees where one branch is used for missing data (indicated by flag != 0). More...
#include <pcl/ml/branch_estimator.h>
Public Member Functions | |
| TernaryTreeMissingDataBranchEstimator ()=default | |
| Constructor. | |
| ~TernaryTreeMissingDataBranchEstimator () override=default | |
| Destructor. | |
| std::size_t | getNumOfBranches () const override |
| Returns the number of branches the corresponding tree has. | |
| void | computeBranchIndex (const float result, const unsigned char flag, const float threshold, unsigned char &branch_index) const override |
| Computes the branch index for the specified result. | |
| Public Member Functions inherited from pcl::BranchEstimator | |
| virtual | ~BranchEstimator ()=default |
| Destructor. | |
Branch estimator for ternary trees where one branch is used for missing data (indicated by flag != 0).
Definition at line 106 of file branch_estimator.h.
|
inlinedefault |
Constructor.
|
inlineoverridedefault |
Destructor.
|
inlineoverridevirtual |
Computes the branch index for the specified result.
| [in] | result | the result the branch index will be computed for |
| [in] | flag | the flag corresponding to the specified result |
| [in] | threshold | the threshold used to compute the branch index |
| [out] | branch_index | the destination for the computed branch index |
Implements pcl::BranchEstimator.
Definition at line 128 of file branch_estimator.h.
|
inlineoverridevirtual |
Returns the number of branches the corresponding tree has.
Implements pcl::BranchEstimator.
Definition at line 115 of file branch_estimator.h.