CGAL 5.2 - Classification
CGAL::Classification::Feature::Cluster_variance_of_feature Class Reference

#include <CGAL/Classification/Feature/Cluster_variance_of_feature.h>

Inherits from

CGAL::Classification::Feature_base.

Definition

Feature that computes the variance values of an itemwise feature over the respective items of clusters.

Its default name is "variance_" + the name of the itemwise feature.

Public Member Functions

template<typename ClusterRange >
 Cluster_variance_of_feature (ClusterRange &clusters, Feature_handle itemwise_feature, Feature_handle mean_feature)
 constructs the feature. More...
 
- Public Member Functions inherited from CGAL::Classification::Feature_base
const std::string & name () const
 returns the name of the feature (initialized to abstract_feature for Feature_base).
 
void set_name (const std::string &name)
 changes the name of the feature.
 
virtual float value (std::size_t index)=0
 returns the value taken by the feature for at the item for the item at position index. More...
 

Constructor & Destructor Documentation

◆ Cluster_variance_of_feature()

template<typename ClusterRange >
CGAL::Classification::Feature::Cluster_variance_of_feature::Cluster_variance_of_feature ( ClusterRange &  clusters,
Feature_handle  itemwise_feature,
Feature_handle  mean_feature 
)

constructs the feature.

Template Parameters
ClusterRangemodel of ConstRange. Its iterator type is RandomAccessIterator and its value type is the key type of Cluster.
Parameters
clustersinput range.
itemwise_featurefeature that takes values on the range of items from which clusters is a subset.
mean_featureCluster_mean_of_feature computed on itemwise_feature.