#include <features2d.hpp>
|
| virtual void | add (const vector< Mat > &descriptors) |
| |
| virtual void | clear () |
| |
| virtual Ptr< DescriptorMatcher > | clone (bool emptyTrainData=false) const =0 |
| |
| bool | empty () const |
| |
| const vector< Mat > & | getTrainDescriptors () const |
| |
| virtual bool | isMaskSupported () const =0 |
| |
| void | knnMatch (const Mat &queryDescriptors, const Mat &trainDescriptors, vector< vector< DMatch > > &matches, int k, const Mat &mask=Mat(), bool compactResult=false) const |
| |
| void | knnMatch (const Mat &queryDescriptors, vector< vector< DMatch > > &matches, int k, const vector< Mat > &masks=vector< Mat >(), bool compactResult=false) |
| |
| void | match (const Mat &queryDescriptors, const Mat &trainDescriptors, vector< DMatch > &matches, const Mat &mask=Mat()) const |
| |
| void | match (const Mat &queryDescriptors, vector< DMatch > &matches, const vector< Mat > &masks=vector< Mat >()) |
| |
| void | radiusMatch (const Mat &queryDescriptors, const Mat &trainDescriptors, vector< vector< DMatch > > &matches, float maxDistance, const Mat &mask=Mat(), bool compactResult=false) const |
| |
| void | radiusMatch (const Mat &queryDescriptors, vector< vector< DMatch > > &matches, float maxDistance, const vector< Mat > &masks=vector< Mat >(), bool compactResult=false) |
| |
| virtual void | read (const FileNode &) |
| |
| virtual void | train () |
| |
| virtual void | write (FileStorage &) const |
| |
| virtual | ~DescriptorMatcher () |
| |
|
| void | checkMasks (const vector< Mat > &masks, int queryDescriptorsCount) const |
| |
| virtual void | knnMatchImpl (const Mat &queryDescriptors, vector< vector< DMatch > > &matches, int k, const vector< Mat > &masks=vector< Mat >(), bool compactResult=false)=0 |
| |
| virtual void | radiusMatchImpl (const Mat &queryDescriptors, vector< vector< DMatch > > &matches, float maxDistance, const vector< Mat > &masks=vector< Mat >(), bool compactResult=false)=0 |
| |
| virtual cv::DescriptorMatcher::~DescriptorMatcher |
( |
| ) |
|
|
virtual |
| virtual void cv::DescriptorMatcher::add |
( |
const vector< Mat > & |
descriptors | ) |
|
|
virtual |
| void cv::DescriptorMatcher::checkMasks |
( |
const vector< Mat > & |
masks, |
|
|
int |
queryDescriptorsCount |
|
) |
| const |
|
protected |
| virtual void cv::DescriptorMatcher::clear |
( |
| ) |
|
|
virtual |
| static Mat cv::DescriptorMatcher::clone_op |
( |
Mat |
m | ) |
|
|
inlinestaticprotected |
| bool cv::DescriptorMatcher::empty |
( |
| ) |
const |
| const vector<Mat>& cv::DescriptorMatcher::getTrainDescriptors |
( |
| ) |
const |
| static bool cv::DescriptorMatcher::isMaskedOut |
( |
const vector< Mat > & |
masks, |
|
|
int |
queryIdx |
|
) |
| |
|
staticprotected |
| virtual bool cv::DescriptorMatcher::isMaskSupported |
( |
| ) |
const |
|
pure virtual |
| static bool cv::DescriptorMatcher::isPossibleMatch |
( |
const Mat & |
mask, |
|
|
int |
queryIdx, |
|
|
int |
trainIdx |
|
) |
| |
|
staticprotected |
| void cv::DescriptorMatcher::knnMatch |
( |
const Mat & |
queryDescriptors, |
|
|
const Mat & |
trainDescriptors, |
|
|
vector< vector< DMatch > > & |
matches, |
|
|
int |
k, |
|
|
const Mat & |
mask = Mat(), |
|
|
bool |
compactResult = false |
|
) |
| const |
| void cv::DescriptorMatcher::knnMatch |
( |
const Mat & |
queryDescriptors, |
|
|
vector< vector< DMatch > > & |
matches, |
|
|
int |
k, |
|
|
const vector< Mat > & |
masks = vector< Mat >(), |
|
|
bool |
compactResult = false |
|
) |
| |
| virtual void cv::DescriptorMatcher::knnMatchImpl |
( |
const Mat & |
queryDescriptors, |
|
|
vector< vector< DMatch > > & |
matches, |
|
|
int |
k, |
|
|
const vector< Mat > & |
masks = vector< Mat >(), |
|
|
bool |
compactResult = false |
|
) |
| |
|
protectedpure virtual |
| void cv::DescriptorMatcher::match |
( |
const Mat & |
queryDescriptors, |
|
|
const Mat & |
trainDescriptors, |
|
|
vector< DMatch > & |
matches, |
|
|
const Mat & |
mask = Mat() |
|
) |
| const |
| void cv::DescriptorMatcher::match |
( |
const Mat & |
queryDescriptors, |
|
|
vector< DMatch > & |
matches, |
|
|
const vector< Mat > & |
masks = vector< Mat >() |
|
) |
| |
| void cv::DescriptorMatcher::radiusMatch |
( |
const Mat & |
queryDescriptors, |
|
|
const Mat & |
trainDescriptors, |
|
|
vector< vector< DMatch > > & |
matches, |
|
|
float |
maxDistance, |
|
|
const Mat & |
mask = Mat(), |
|
|
bool |
compactResult = false |
|
) |
| const |
| void cv::DescriptorMatcher::radiusMatch |
( |
const Mat & |
queryDescriptors, |
|
|
vector< vector< DMatch > > & |
matches, |
|
|
float |
maxDistance, |
|
|
const vector< Mat > & |
masks = vector< Mat >(), |
|
|
bool |
compactResult = false |
|
) |
| |
| virtual void cv::DescriptorMatcher::radiusMatchImpl |
( |
const Mat & |
queryDescriptors, |
|
|
vector< vector< DMatch > > & |
matches, |
|
|
float |
maxDistance, |
|
|
const vector< Mat > & |
masks = vector< Mat >(), |
|
|
bool |
compactResult = false |
|
) |
| |
|
protectedpure virtual |
| virtual void cv::DescriptorMatcher::read |
( |
const FileNode & |
| ) |
|
|
virtual |
| virtual void cv::DescriptorMatcher::train |
( |
| ) |
|
|
virtual |
| vector<Mat> cv::DescriptorMatcher::trainDescCollection |
|
protected |
The documentation for this class was generated from the following file:
- /usr/obj/ports/OpenCV-2.2.0/OpenCV-2.2.0/modules/features2d/include/opencv2/features2d/features2d.hpp