opencv on mbed

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

DescriptorMatcher Class Reference

Abstract base class for matching keypoint descriptors. More...

#include <features2d.hpp>

Inherits cv::Algorithm.

Inherited by BFMatcher, and FlannBasedMatcher.

Data Structures

class  DescriptorCollection
 Class to work with descriptors from several images as with one merged matrix. More...

Public Member Functions

virtual CV_WRAP void add (InputArrayOfArrays descriptors)
 Adds descriptors to train a CPU(trainDescCollectionis) or GPU(utrainDescCollectionis) descriptor collection.
CV_WRAP const std::vector< Mat > & getTrainDescriptors () const
 Returns a constant link to the train descriptor collection trainDescCollection .
virtual CV_WRAP void clear ()
 Clears the train descriptor collections.
virtual CV_WRAP bool empty () const
 Returns true if there are no train descriptors in the both collections.
virtual CV_WRAP bool isMaskSupported () const =0
 Returns true if the descriptor matcher supports masking permissible matches.
virtual CV_WRAP void train ()
 Trains a descriptor matcher.
CV_WRAP void match (InputArray queryDescriptors, InputArray trainDescriptors, CV_OUT std::vector< DMatch > &matches, InputArray mask=noArray()) const
 Finds the best match for each descriptor from a query set.
CV_WRAP void knnMatch (InputArray queryDescriptors, InputArray trainDescriptors, CV_OUT std::vector< std::vector< DMatch > > &matches, int k, InputArray mask=noArray(), bool compactResult=false) const
 Finds the k best matches for each descriptor from a query set.
void radiusMatch (InputArray queryDescriptors, InputArray trainDescriptors, std::vector< std::vector< DMatch > > &matches, float maxDistance, InputArray mask=noArray(), bool compactResult=false) const
 For each query descriptor, finds the training descriptors not farther than the specified distance.
CV_WRAP void match (InputArray queryDescriptors, CV_OUT std::vector< DMatch > &matches, InputArrayOfArrays masks=noArray())
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
CV_WRAP void knnMatch (InputArray queryDescriptors, CV_OUT std::vector< std::vector< DMatch > > &matches, int k, InputArrayOfArrays masks=noArray(), bool compactResult=false)
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
void radiusMatch (InputArray queryDescriptors, std::vector< std::vector< DMatch > > &matches, float maxDistance, InputArrayOfArrays masks=noArray(), bool compactResult=false)
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
virtual void read (const FileNode &)
 Reads algorithm parameters from a file storage.
virtual void write (FileStorage &) const
 Stores algorithm parameters in a file storage.
virtual Ptr< DescriptorMatcherclone (bool emptyTrainData=false) const =0
 Clones the matcher.
virtual CV_WRAP void save (const String &filename) const
 Saves the algorithm to a file.
virtual CV_WRAP String getDefaultName () const
 Returns the algorithm string identifier.

Static Public Member Functions

static CV_WRAP Ptr
< DescriptorMatcher
create (const String &descriptorMatcherType)
 Creates a descriptor matcher of a given type with the default parameters (using default constructor).
template<typename _Tp >
static Ptr< _Tp > load (const String &filename, const String &objname=String())
 Loads algorithm from the file.
template<typename _Tp >
static Ptr< _Tp > loadFromString (const String &strModel, const String &objname=String())
 Loads algorithm from a String.

Protected Member Functions

virtual void knnMatchImpl (InputArray queryDescriptors, std::vector< std::vector< DMatch > > &matches, int k, InputArrayOfArrays masks=noArray(), bool compactResult=false)=0
 In fact the matching is implemented only by the following two methods.

Protected Attributes

std::vector< MattrainDescCollection
 Collection of descriptors from train images.

Detailed Description

Abstract base class for matching keypoint descriptors.

It has two groups of match methods: for matching descriptors of an image with another image or with an image set.

Definition at line 771 of file features2d.hpp.


Member Function Documentation

virtual CV_WRAP void add ( InputArrayOfArrays  descriptors ) [virtual]

Adds descriptors to train a CPU(trainDescCollectionis) or GPU(utrainDescCollectionis) descriptor collection.

If the collection is not empty, the new descriptors are added to existing train descriptors.

Parameters:
descriptorsDescriptors to add. Each descriptors[i] is a set of descriptors from the same train image.

Reimplemented in FlannBasedMatcher.

virtual CV_WRAP void clear (  ) [virtual]

Clears the train descriptor collections.

Reimplemented from Algorithm.

Reimplemented in FlannBasedMatcher.

virtual Ptr<DescriptorMatcher> clone ( bool  emptyTrainData = false ) const [pure virtual]

Clones the matcher.

Parameters:
emptyTrainDataIf emptyTrainData is false, the method creates a deep copy of the object, that is, copies both parameters and train data. If emptyTrainData is true, the method creates an object copy with the current parameters but with empty train data.

Implemented in BFMatcher, and FlannBasedMatcher.

static CV_WRAP Ptr<DescriptorMatcher> create ( const String &  descriptorMatcherType ) [static]

Creates a descriptor matcher of a given type with the default parameters (using default constructor).

Parameters:
descriptorMatcherTypeDescriptor matcher type. Now the following matcher types are supported:

  • `BruteForce` (it uses L2 )
  • `BruteForce-L1`
  • `BruteForce-Hamming`
  • `BruteForce-Hamming(2)`
  • `FlannBased`
virtual CV_WRAP bool empty (  ) const [virtual]

Returns true if there are no train descriptors in the both collections.

Reimplemented from Algorithm.

virtual CV_WRAP String getDefaultName (  ) const [virtual, inherited]

Returns the algorithm string identifier.

This string is used as top level xml/yml node tag when the object is saved to a file or string.

CV_WRAP const std::vector<Mat>& getTrainDescriptors (  ) const

Returns a constant link to the train descriptor collection trainDescCollection .

virtual CV_WRAP bool isMaskSupported (  ) const [pure virtual]

Returns true if the descriptor matcher supports masking permissible matches.

Implemented in BFMatcher, and FlannBasedMatcher.

CV_WRAP void knnMatch ( InputArray  queryDescriptors,
InputArray  trainDescriptors,
CV_OUT std::vector< std::vector< DMatch > > &  matches,
int  k,
InputArray  mask = noArray(),
bool  compactResult = false 
) const

Finds the k best matches for each descriptor from a query set.

Parameters:
queryDescriptorsQuery set of descriptors.
trainDescriptorsTrain set of descriptors. This set is not added to the train descriptors collection stored in the class object.
maskMask specifying permissible matches between an input query and train matrices of descriptors.
matchesMatches. Each matches[i] is k or less matches for the same query descriptor.
kCount of best matches found per each query descriptor or less if a query descriptor has less than k possible matches in total.
compactResultParameter used when the mask (or masks) is not empty. If compactResult is false, the matches vector has the same size as queryDescriptors rows. If compactResult is true, the matches vector does not contain matches for fully masked-out query descriptors.

These extended variants of DescriptorMatcher::match methods find several best matches for each query descriptor. The matches are returned in the distance increasing order. See DescriptorMatcher::match for the details about query and train descriptors.

CV_WRAP void knnMatch ( InputArray  queryDescriptors,
CV_OUT std::vector< std::vector< DMatch > > &  matches,
int  k,
InputArrayOfArrays  masks = noArray(),
bool  compactResult = false 
)

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Parameters:
queryDescriptorsQuery set of descriptors.
matchesMatches. Each matches[i] is k or less matches for the same query descriptor.
kCount of best matches found per each query descriptor or less if a query descriptor has less than k possible matches in total.
masksSet of masks. Each masks[i] specifies permissible matches between the input query descriptors and stored train descriptors from the i-th image trainDescCollection[i].
compactResultParameter used when the mask (or masks) is not empty. If compactResult is false, the matches vector has the same size as queryDescriptors rows. If compactResult is true, the matches vector does not contain matches for fully masked-out query descriptors.
virtual void knnMatchImpl ( InputArray  queryDescriptors,
std::vector< std::vector< DMatch > > &  matches,
int  k,
InputArrayOfArrays  masks = noArray(),
bool  compactResult = false 
) [protected, pure virtual]

In fact the matching is implemented only by the following two methods.

These methods suppose that the class object has been trained already. Public match methods call these methods after calling train().

Implemented in BFMatcher, and FlannBasedMatcher.

static Ptr<_Tp> load ( const String &  filename,
const String &  objname = String() 
) [static, inherited]

Loads algorithm from the file.

Parameters:
filenameName of the file to read.
objnameThe optional name of the node to read (if empty, the first top-level node will be used)

This is static template method of Algorithm. It's usage is following (in the case of SVM):

     Ptr<SVM> svm = Algorithm::load<SVM>("my_svm_model.xml");

In order to make this method work, the derived class must overwrite Algorithm::read(const FileNode& fn).

Definition at line 3027 of file core.hpp.

static Ptr<_Tp> loadFromString ( const String &  strModel,
const String &  objname = String() 
) [static, inherited]

Loads algorithm from a String.

Parameters:
strModelThe string variable containing the model you want to load.
objnameThe optional name of the node to read (if empty, the first top-level node will be used)

This is static template method of Algorithm. It's usage is following (in the case of SVM):

     Ptr<SVM> svm = Algorithm::loadFromString<SVM>(myStringModel);

Definition at line 3046 of file core.hpp.

CV_WRAP void match ( InputArray  queryDescriptors,
CV_OUT std::vector< DMatch > &  matches,
InputArrayOfArrays  masks = noArray() 
)

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Parameters:
queryDescriptorsQuery set of descriptors.
matchesMatches. If a query descriptor is masked out in mask , no match is added for this descriptor. So, matches size may be smaller than the query descriptors count.
masksSet of masks. Each masks[i] specifies permissible matches between the input query descriptors and stored train descriptors from the i-th image trainDescCollection[i].
CV_WRAP void match ( InputArray  queryDescriptors,
InputArray  trainDescriptors,
CV_OUT std::vector< DMatch > &  matches,
InputArray  mask = noArray() 
) const

Finds the best match for each descriptor from a query set.

Parameters:
queryDescriptorsQuery set of descriptors.
trainDescriptorsTrain set of descriptors. This set is not added to the train descriptors collection stored in the class object.
matchesMatches. If a query descriptor is masked out in mask , no match is added for this descriptor. So, matches size may be smaller than the query descriptors count.
maskMask specifying permissible matches between an input query and train matrices of descriptors.

In the first variant of this method, the train descriptors are passed as an input argument. In the second variant of the method, train descriptors collection that was set by DescriptorMatcher::add is used. Optional mask (or masks) can be passed to specify which query and training descriptors can be matched. Namely, queryDescriptors[i] can be matched with trainDescriptors[j] only if mask.at<uchar>(i,j) is non-zero.

void radiusMatch ( InputArray  queryDescriptors,
std::vector< std::vector< DMatch > > &  matches,
float  maxDistance,
InputArrayOfArrays  masks = noArray(),
bool  compactResult = false 
)

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Parameters:
queryDescriptorsQuery set of descriptors.
matchesFound matches.
maxDistanceThreshold for the distance between matched descriptors. Distance means here metric distance (e.g. Hamming distance), not the distance between coordinates (which is measured in Pixels)!
masksSet of masks. Each masks[i] specifies permissible matches between the input query descriptors and stored train descriptors from the i-th image trainDescCollection[i].
compactResultParameter used when the mask (or masks) is not empty. If compactResult is false, the matches vector has the same size as queryDescriptors rows. If compactResult is true, the matches vector does not contain matches for fully masked-out query descriptors.
void radiusMatch ( InputArray  queryDescriptors,
InputArray  trainDescriptors,
std::vector< std::vector< DMatch > > &  matches,
float  maxDistance,
InputArray  mask = noArray(),
bool  compactResult = false 
) const

For each query descriptor, finds the training descriptors not farther than the specified distance.

Parameters:
queryDescriptorsQuery set of descriptors.
trainDescriptorsTrain set of descriptors. This set is not added to the train descriptors collection stored in the class object.
matchesFound matches.
compactResultParameter used when the mask (or masks) is not empty. If compactResult is false, the matches vector has the same size as queryDescriptors rows. If compactResult is true, the matches vector does not contain matches for fully masked-out query descriptors.
maxDistanceThreshold for the distance between matched descriptors. Distance means here metric distance (e.g. Hamming distance), not the distance between coordinates (which is measured in Pixels)!
maskMask specifying permissible matches between an input query and train matrices of descriptors.

For each query descriptor, the methods find such training descriptors that the distance between the query descriptor and the training descriptor is equal or smaller than maxDistance. Found matches are returned in the distance increasing order.

virtual void read ( const FileNode fn ) [virtual]

Reads algorithm parameters from a file storage.

Reimplemented from Algorithm.

Reimplemented in FlannBasedMatcher.

virtual CV_WRAP void save ( const String &  filename ) const [virtual, inherited]

Saves the algorithm to a file.

In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).

virtual CV_WRAP void train (  ) [virtual]

Trains a descriptor matcher.

Trains a descriptor matcher (for example, the flann index). In all methods to match, the method train() is run every time before matching. Some descriptor matchers (for example, BruteForceMatcher) have an empty implementation of this method. Other matchers really train their inner structures (for example, FlannBasedMatcher trains flann::Index ).

Reimplemented in FlannBasedMatcher.

virtual void write ( FileStorage fs ) const [virtual]

Stores algorithm parameters in a file storage.

Reimplemented from Algorithm.

Reimplemented in FlannBasedMatcher.


Field Documentation

std::vector<Mat> trainDescCollection [protected]

Collection of descriptors from train images.

Definition at line 980 of file features2d.hpp.