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