OpenCV
4.10.0-dev
Open Source Computer Vision
|
TrackerContribFeature based on Feature2D. More...
#include <opencv2/tracking/tracking_internals.hpp>
Public Member Functions | |
TrackerFeatureFeature2d (String detectorType, String descriptorType) | |
Constructor. | |
~TrackerFeatureFeature2d () CV_OVERRIDE | |
void | selection (Mat &response, int npoints) CV_OVERRIDE |
Identify most effective features. | |
Public Member Functions inherited from cv::detail::tracking::TrackerContribFeature | |
virtual | ~TrackerContribFeature () |
String | getClassName () const |
Get the name of the specific TrackerContribFeature. | |
Public Member Functions inherited from cv::detail::tracking::TrackerFeature | |
virtual | ~TrackerFeature () |
void | compute (const std::vector< Mat > &images, Mat &response) |
Compute the features in the images collection. | |
Protected Member Functions | |
bool | computeImpl (const std::vector< Mat > &images, Mat &response) CV_OVERRIDE |
Additional Inherited Members | |
Static Public Member Functions inherited from cv::detail::tracking::TrackerContribFeature | |
static Ptr< TrackerContribFeature > | create (const String &trackerFeatureType) |
Create TrackerContribFeature by tracker feature type. | |
Protected Attributes inherited from cv::detail::tracking::TrackerContribFeature | |
String | className |
TrackerContribFeature based on Feature2D.
cv::detail::tracking::TrackerFeatureFeature2d::TrackerFeatureFeature2d | ( | String | detectorType, |
String | descriptorType | ||
) |
Constructor.
detectorType | string of FeatureDetector |
descriptorType | string of DescriptorExtractor |
cv::detail::tracking::TrackerFeatureFeature2d::~TrackerFeatureFeature2d | ( | ) |
|
protectedvirtual |
Implements cv::detail::tracking::TrackerFeature.
|
virtual |
Identify most effective features.
response | Collection of response for the specific TrackerContribFeature |
npoints | Max number of features |
Implements cv::detail::tracking::TrackerContribFeature.