|
Point Cloud Library (PCL)
1.15.1-dev
|
Node for a regression trees which optimizes variance. More...
#include <pcl/ml/regression_variance_stats_estimator.h>
Public Member Functions | |
| RegressionVarianceNode () | |
| Constructor. More... | |
| void | serialize (std::ostream &stream) const |
| Serializes the node to the specified stream. More... | |
| void | deserialize (std::istream &stream) |
| Deserializes a node from the specified stream. More... | |
Public Attributes | |
| FeatureType | feature |
| The feature associated with the node. More... | |
| float | threshold |
| The threshold applied on the feature response. More... | |
| LabelType | value |
| The label value of this node. More... | |
| LabelType | variance |
| The variance of the labels that ended up at this node during training. More... | |
| std::vector< RegressionVarianceNode > | sub_nodes |
| The child nodes. More... | |
Node for a regression trees which optimizes variance.
Definition at line 51 of file regression_variance_stats_estimator.h.
|
inline |
Constructor.
Definition at line 54 of file regression_variance_stats_estimator.h.
|
inline |
Deserializes a node from the specified stream.
| [in] | stream | the source for the deserialization |
Definition at line 83 of file regression_variance_stats_estimator.h.
|
inline |
Serializes the node to the specified stream.
| [out] | stream | the destination for the serialization |
Definition at line 61 of file regression_variance_stats_estimator.h.
| FeatureType pcl::RegressionVarianceNode< FeatureType, LabelType >::feature |
The feature associated with the node.
Definition at line 106 of file regression_variance_stats_estimator.h.
| std::vector<RegressionVarianceNode> pcl::RegressionVarianceNode< FeatureType, LabelType >::sub_nodes |
The child nodes.
Definition at line 118 of file regression_variance_stats_estimator.h.
| float pcl::RegressionVarianceNode< FeatureType, LabelType >::threshold |
The threshold applied on the feature response.
Definition at line 109 of file regression_variance_stats_estimator.h.
| LabelType pcl::RegressionVarianceNode< FeatureType, LabelType >::value |
The label value of this node.
Definition at line 112 of file regression_variance_stats_estimator.h.
| LabelType pcl::RegressionVarianceNode< FeatureType, LabelType >::variance |
The variance of the labels that ended up at this node during training.
Definition at line 115 of file regression_variance_stats_estimator.h.