pub struct CUDA_DescriptorMatcher { /* private fields */ }
Expand 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.
Brute-force descriptor matcher.
For each descriptor in the first set, this matcher finds the closest descriptor in the second set
by trying each one. This descriptor matcher supports masking permissible matches of descriptor
sets.
- normType: One of NORM_L1, NORM_L2, NORM_HAMMING. L1 and L2 norms are
preferable choices for SIFT and SURF descriptors, NORM_HAMMING should be used with ORB, BRISK and
BRIEF).
Brute-force descriptor matcher.
For each descriptor in the first set, this matcher finds the closest descriptor in the second set
by trying each one. This descriptor matcher supports masking permissible matches of descriptor
sets.
- normType: One of NORM_L1, NORM_L2, NORM_HAMMING. L1 and L2 norms are
preferable choices for SIFT and SURF descriptors, NORM_HAMMING should be used with ORB, BRISK and
BRIEF).
This alternative version of CUDA_DescriptorMatcher::create_bf_matcher function uses the following default values for its arguments:
Clears the algorithm state
Reads algorithm parameters from a file storage
Stores algorithm parameters in a file storage
Stores algorithm parameters in a file storage
Read more
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read
Saves the algorithm to a file.
In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).
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.
Return an the underlying raw pointer while consuming this wrapper.
Read more
Return the underlying mutable raw pointer
Read more
Adds descriptors to train a descriptor collection.
Read more
Clears the train descriptor collection.
Finds the best match for each descriptor from a query set (blocking version).
Read more
Finds the best match for each descriptor from a query set (blocking version).
Read more
Finds the best match for each descriptor from a query set (blocking version).
Read more
Finds the best match for each descriptor from a query set (asynchronous version).
Read more
Finds the best match for each descriptor from a query set (asynchronous version).
Read more
Finds the best match for each descriptor from a query set (asynchronous version).
Read more
Converts matches array from internal representation to standard matches vector.
Read more
Finds the k best matches for each descriptor from a query set (blocking version).
Read more
Finds the k best matches for each descriptor from a query set (blocking version).
Read more
Finds the k best matches for each descriptor from a query set (blocking version).
Read more
Finds the k best matches for each descriptor from a query set (asynchronous version).
Read more
Finds the k best matches for each descriptor from a query set (asynchronous version).
Read more
Finds the k best matches for each descriptor from a query set (asynchronous version).
Read more
Converts matches array from internal representation to standard matches vector.
Read more
Converts matches array from internal representation to standard matches vector.
Read more
For each query descriptor, finds the training descriptors not farther than the specified distance (blocking version).
Read more
For each query descriptor, finds the training descriptors not farther than the specified distance (blocking version).
Read more
For each query descriptor, finds the training descriptors not farther than the specified distance (blocking version).
Read more
For each query descriptor, finds the training descriptors not farther than the specified distance (asynchronous version).
Read more
For each query descriptor, finds the training descriptors not farther than the specified distance (asynchronous version).
Read more
For each query descriptor, finds the training descriptors not farther than the specified distance (asynchronous version).
Read more
Converts matches array from internal representation to standard matches vector.
Read more
Converts matches array from internal representation to standard matches vector.
Read more
Returns true if the descriptor matcher supports masking permissible matches.
Returns a constant link to the train descriptor collection.
Returns true if there are no train descriptors in the collection.
Formats the value using the given formatter.
Read more
Executes the destructor for this type.
Read more
Converts to this type from the input type.
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self)
.
That is, this conversion is whatever the implementation of
From<T> for U
chooses to do.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.