OpenCV453
公開メンバ関数 | 全メンバ一覧
cv::detail::tracking::TrackerFeatureSet クラス

Class that manages the extraction and selection of features [詳解]

#include <tracking.detail.hpp>

公開メンバ関数

void extraction (const std::vector< Mat > &images)
 Extract features from the images collection [詳解]
 
bool addTrackerFeature (const Ptr< TrackerFeature > &feature)
 Add TrackerFeature in the collection. Return true if TrackerFeature is added, false otherwise [詳解]
 
const std::vector< Ptr< TrackerFeature > > & getTrackerFeatures () const
 Get the TrackerFeature collection (TrackerFeature name, TrackerFeature pointer)
 
const std::vector< Mat > & getResponses () const
 Get the responses [詳解]
 

詳解

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

参照
TrackerFeature

関数詳解

◆ addTrackerFeature()

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

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

引数
featureThe TrackerFeature class

◆ extraction()

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

Extract features from the images collection

引数
imagesThe input images

◆ getResponses()

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

Get the responses

覚え書き
Be sure to call extraction before getResponses Example TrackerFeatureSet::getResponses

このクラス詳解は次のファイルから抽出されました: