Class cv::detail::tracking::TrackerFeatureSet#

Class that manages the extraction and selection of features. View details

Collaboration diagram for cv::detail::tracking::TrackerFeatureSet:

Detailed Description#

Class that manages the extraction and selection of features.

AAM Feature Extraction and Feature Set Refinement (Feature Processing and Feature Selection). See table I and section III C AMVOT Appearance modelling -> Visual representation (Table II, section 3.1 - 3.2)

TrackerFeatureSet is an aggregation of TrackerFeature

See also

TrackerFeature

Constructor & Destructor Documentation#

TrackerFeatureSet()#

cv::detail::tracking::TrackerFeatureSet::TrackerFeatureSet()

~TrackerFeatureSet()#

cv::detail::tracking::TrackerFeatureSet::~TrackerFeatureSet()

Member Function Documentation#

addTrackerFeature()#

bool cv::detail::tracking::TrackerFeatureSet::addTrackerFeature(const Ptr< TrackerFeature > & feature)

Add TrackerFeature in the collection. Return true if TrackerFeature is added, false otherwise.

Parameters

extraction()#

void cv::detail::tracking::TrackerFeatureSet::extraction(const std::vector< Mat > & images)

Extract features from the images collection.

Parameters

  • images — The input images

getResponses()#

const std::vector< Mat > & cv::detail::tracking::TrackerFeatureSet::getResponses()

Get the responses.

Note

Be sure to call extraction before getResponses Example TrackerFeatureSet::getResponses

getTrackerFeatures()#

const std::vector< Ptr< TrackerFeature > > & cv::detail::tracking::TrackerFeatureSet::getTrackerFeatures()

Get the TrackerFeature collection (TrackerFeature name, TrackerFeature pointer)

clearResponses()#

void cv::detail::tracking::TrackerFeatureSet::clearResponses()

Member Data Documentation#

blockAddTrackerFeature#

bool cv::detail::tracking::TrackerFeatureSet::blockAddTrackerFeature

features#

std::vector< Ptr< TrackerFeature > > cv::detail::tracking::TrackerFeatureSet::features

responses#

std::vector< Mat > cv::detail::tracking::TrackerFeatureSet::responses

Source file#

The documentation for this class was generated from the following file: