#include <features2d.hpp>
Inherits cv::GenericDescriptorMatcher.
Public Member Functions | |
VectorDescriptorMatcher (const Ptr< DescriptorExtractor > &extractor, const Ptr< DescriptorMatcher > &matcher) | |
virtual | ~VectorDescriptorMatcher () |
virtual void | add (const vector< Mat > &imgCollection, vector< vector< KeyPoint > > &pointCollection) |
virtual void | clear () |
virtual void | train () |
virtual bool | isMaskSupported () |
virtual void | read (const FileNode &fn) |
virtual void | write (FileStorage &fs) const |
virtual bool | empty () const |
virtual Ptr < GenericDescriptorMatcher > | clone (bool emptyTrainData=false) const |
const vector< Mat > & | getTrainImages () const |
const vector< vector< KeyPoint > > & | getTrainKeypoints () const |
void | classify (const Mat &queryImage, vector< KeyPoint > &queryKeypoints, const Mat &trainImage, vector< KeyPoint > &trainKeypoints) const |
void | classify (const Mat &queryImage, vector< KeyPoint > &queryKeypoints) |
void | match (const Mat &queryImage, vector< KeyPoint > &queryKeypoints, const Mat &trainImage, vector< KeyPoint > &trainKeypoints, vector< DMatch > &matches, const Mat &mask=Mat()) const |
void | match (const Mat &queryImage, vector< KeyPoint > &queryKeypoints, vector< DMatch > &matches, const vector< Mat > &masks=vector< Mat >()) |
void | knnMatch (const Mat &queryImage, vector< KeyPoint > &queryKeypoints, const Mat &trainImage, vector< KeyPoint > &trainKeypoints, vector< vector< DMatch > > &matches, int k, const Mat &mask=Mat(), bool compactResult=false) const |
void | knnMatch (const Mat &queryImage, vector< KeyPoint > &queryKeypoints, vector< vector< DMatch > > &matches, int k, const vector< Mat > &masks=vector< Mat >(), bool compactResult=false) |
void | radiusMatch (const Mat &queryImage, vector< KeyPoint > &queryKeypoints, const Mat &trainImage, vector< KeyPoint > &trainKeypoints, vector< vector< DMatch > > &matches, float maxDistance, const Mat &mask=Mat(), bool compactResult=false) const |
void | radiusMatch (const Mat &queryImage, vector< KeyPoint > &queryKeypoints, vector< vector< DMatch > > &matches, float maxDistance, const vector< Mat > &masks=vector< Mat >(), bool compactResult=false) |
Static Public Member Functions | |
static Ptr < GenericDescriptorMatcher > | create (const string &genericDescritptorMatcherType, const string ¶msFilename=string()) |
Protected Member Functions | |
virtual void | knnMatchImpl (const Mat &queryImage, vector< KeyPoint > &queryKeypoints, vector< vector< DMatch > > &matches, int k, const vector< Mat > &masks, bool compactResult) |
virtual void | radiusMatchImpl (const Mat &queryImage, vector< KeyPoint > &queryKeypoints, vector< vector< DMatch > > &matches, float maxDistance, const vector< Mat > &masks, bool compactResult) |
Protected Attributes | |
Ptr< DescriptorExtractor > | extractor |
Ptr< DescriptorMatcher > | matcher |
KeyPointCollection | trainPointCollection |
cv::VectorDescriptorMatcher::VectorDescriptorMatcher | ( | const Ptr< DescriptorExtractor > & | extractor, |
const Ptr< DescriptorMatcher > & | matcher | ||
) |
virtual cv::VectorDescriptorMatcher::~VectorDescriptorMatcher | ( | ) | [virtual] |
virtual void cv::VectorDescriptorMatcher::add | ( | const vector< Mat > & | imgCollection, |
vector< vector< KeyPoint > > & | pointCollection | ||
) | [virtual] |
Reimplemented from cv::GenericDescriptorMatcher.
virtual void cv::VectorDescriptorMatcher::clear | ( | ) | [virtual] |
Reimplemented from cv::GenericDescriptorMatcher.
virtual void cv::VectorDescriptorMatcher::train | ( | ) | [virtual] |
Reimplemented from cv::GenericDescriptorMatcher.
virtual bool cv::VectorDescriptorMatcher::isMaskSupported | ( | ) | [virtual] |
Implements cv::GenericDescriptorMatcher.
virtual void cv::VectorDescriptorMatcher::read | ( | const FileNode & | fn | ) | [virtual] |
Reimplemented from cv::GenericDescriptorMatcher.
virtual void cv::VectorDescriptorMatcher::write | ( | FileStorage & | fs | ) | const [virtual] |
Reimplemented from cv::GenericDescriptorMatcher.
virtual bool cv::VectorDescriptorMatcher::empty | ( | ) | const [virtual] |
Reimplemented from cv::GenericDescriptorMatcher.
virtual Ptr<GenericDescriptorMatcher> cv::VectorDescriptorMatcher::clone | ( | bool | emptyTrainData = false | ) | const [virtual] |
Implements cv::GenericDescriptorMatcher.
virtual void cv::VectorDescriptorMatcher::knnMatchImpl | ( | const Mat & | queryImage, |
vector< KeyPoint > & | queryKeypoints, | ||
vector< vector< DMatch > > & | matches, | ||
int | k, | ||
const vector< Mat > & | masks, | ||
bool | compactResult | ||
) | [protected, virtual] |
Implements cv::GenericDescriptorMatcher.
virtual void cv::VectorDescriptorMatcher::radiusMatchImpl | ( | const Mat & | queryImage, |
vector< KeyPoint > & | queryKeypoints, | ||
vector< vector< DMatch > > & | matches, | ||
float | maxDistance, | ||
const vector< Mat > & | masks, | ||
bool | compactResult | ||
) | [protected, virtual] |
Implements cv::GenericDescriptorMatcher.
const vector<Mat>& cv::GenericDescriptorMatcher::getTrainImages | ( | ) | const [inherited] |
const vector<vector<KeyPoint> >& cv::GenericDescriptorMatcher::getTrainKeypoints | ( | ) | const [inherited] |
void cv::GenericDescriptorMatcher::classify | ( | const Mat & | queryImage, |
vector< KeyPoint > & | queryKeypoints, | ||
const Mat & | trainImage, | ||
vector< KeyPoint > & | trainKeypoints | ||
) | const [inherited] |
void cv::GenericDescriptorMatcher::classify | ( | const Mat & | queryImage, |
vector< KeyPoint > & | queryKeypoints | ||
) | [inherited] |
void cv::GenericDescriptorMatcher::match | ( | const Mat & | queryImage, |
vector< KeyPoint > & | queryKeypoints, | ||
const Mat & | trainImage, | ||
vector< KeyPoint > & | trainKeypoints, | ||
vector< DMatch > & | matches, | ||
const Mat & | mask = Mat() |
||
) | const [inherited] |
void cv::GenericDescriptorMatcher::match | ( | const Mat & | queryImage, |
vector< KeyPoint > & | queryKeypoints, | ||
vector< DMatch > & | matches, | ||
const vector< Mat > & | masks = vector< Mat >() |
||
) | [inherited] |
void cv::GenericDescriptorMatcher::knnMatch | ( | const Mat & | queryImage, |
vector< KeyPoint > & | queryKeypoints, | ||
const Mat & | trainImage, | ||
vector< KeyPoint > & | trainKeypoints, | ||
vector< vector< DMatch > > & | matches, | ||
int | k, | ||
const Mat & | mask = Mat() , |
||
bool | compactResult = false |
||
) | const [inherited] |
void cv::GenericDescriptorMatcher::knnMatch | ( | const Mat & | queryImage, |
vector< KeyPoint > & | queryKeypoints, | ||
vector< vector< DMatch > > & | matches, | ||
int | k, | ||
const vector< Mat > & | masks = vector< Mat >() , |
||
bool | compactResult = false |
||
) | [inherited] |
void cv::GenericDescriptorMatcher::radiusMatch | ( | const Mat & | queryImage, |
vector< KeyPoint > & | queryKeypoints, | ||
const Mat & | trainImage, | ||
vector< KeyPoint > & | trainKeypoints, | ||
vector< vector< DMatch > > & | matches, | ||
float | maxDistance, | ||
const Mat & | mask = Mat() , |
||
bool | compactResult = false |
||
) | const [inherited] |
void cv::GenericDescriptorMatcher::radiusMatch | ( | const Mat & | queryImage, |
vector< KeyPoint > & | queryKeypoints, | ||
vector< vector< DMatch > > & | matches, | ||
float | maxDistance, | ||
const vector< Mat > & | masks = vector< Mat >() , |
||
bool | compactResult = false |
||
) | [inherited] |
static Ptr<GenericDescriptorMatcher> cv::GenericDescriptorMatcher::create | ( | const string & | genericDescritptorMatcherType, |
const string & | paramsFilename = string() |
||
) | [static, inherited] |
Ptr<DescriptorExtractor> cv::VectorDescriptorMatcher::extractor [protected] |
Ptr<DescriptorMatcher> cv::VectorDescriptorMatcher::matcher [protected] |
KeyPointCollection cv::GenericDescriptorMatcher::trainPointCollection [protected, inherited] |