Click or drag to resize

BFMatcher Class

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.
Inheritance Hierarchy

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public class BFMatcher : DescriptorMatcher

The BFMatcher type exposes the following members.

Constructors
  NameDescription
Public methodBFMatcher
Initializes a new instance of the BFMatcher class
Top
Properties
  NameDescription
Protected propertyAllocatedMemory
Gets or sets a memory address allocated by AllocMemory.
(Inherited from DisposableObject.)
Protected propertyAllocatedMemorySize
Gets or sets the byte length of the allocated memory
(Inherited from DisposableObject.)
Public propertyCvPtr
Native pointer of OpenCV structure
(Inherited from DisposableCvObject.)
Protected propertyDataHandle
Gets or sets a handle which allocates using cvSetData.
(Inherited from DisposableObject.)
Public propertyEmpty
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read
(Inherited from Algorithm.)
Public propertyIsDisposed
Gets a value indicating whether this instance has been disposed.
(Inherited from DisposableObject.)
Public propertyIsEnabledDispose
Gets or sets a value indicating whether you permit disposing this instance.
(Inherited from DisposableObject.)
Top
Methods
  NameDescription
Public methodAdd
Add descriptors to train descriptor collection.
(Inherited from DescriptorMatcher.)
Protected methodAllocGCHandle
Pins the object to be allocated by cvSetData.
(Inherited from DisposableObject.)
Protected methodAllocMemory
Allocates the specified size of memory.
(Inherited from DisposableObject.)
Public methodClear
Clear train descriptors collection.
(Inherited from DescriptorMatcher.)
Public methodDispose
Releases the resources
(Inherited from DisposableObject.)
Protected methodDispose(Boolean)
Releases the resources
(Inherited from DisposableObject.)
Protected methodDisposeManaged
Releases managed resources
(Overrides DescriptorMatcherDisposeManaged.)
Protected methodDisposeUnmanaged
Releases managed resources
(Overrides DisposableCvObjectDisposeUnmanaged.)
Public methodEmpty
Return true if there are not train descriptors in collection.
(Inherited from DescriptorMatcher.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Destructor
(Inherited from DisposableObject.)
Public methodGetDefaultName
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.
(Inherited from Algorithm.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetTrainDescriptors
Get train descriptors collection.
(Inherited from DescriptorMatcher.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsMaskSupported
Return true if the matcher supports mask in match methods.
(Overrides DescriptorMatcherIsMaskSupported.)
Public methodKnnMatch(Mat, Int32, Mat, Boolean)
Find k best matches for each query descriptor (in increasing order of distances). compactResult is used when mask is not empty. If compactResult is false matches vector will have the same size as queryDescriptors rows. If compactResult is true matches vector will not contain matches for fully masked out query descriptors.
(Inherited from DescriptorMatcher.)
Public methodKnnMatch(Mat, Mat, Int32, Mat, Boolean)
Find k best matches for each query descriptor (in increasing order of distances). compactResult is used when mask is not empty. If compactResult is false matches vector will have the same size as queryDescriptors rows. If compactResult is true matches vector will not contain matches for fully masked out query descriptors.
(Inherited from DescriptorMatcher.)
Public methodMatch(Mat, Mat)
Find one best match for each query descriptor (if mask is empty).
(Inherited from DescriptorMatcher.)
Public methodMatch(Mat, Mat, Mat)
Find one best match for each query descriptor (if mask is empty).
(Inherited from DescriptorMatcher.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodNotifyMemoryPressure
Notifies the allocated size of memory.
(Inherited from DisposableObject.)
Public methodRadiusMatch(Mat, Single, Mat, Boolean)
Find best matches for each query descriptor which have distance less than maxDistance (in increasing order of distances).
(Inherited from DescriptorMatcher.)
Public methodRadiusMatch(Mat, Mat, Single, Mat, Boolean)
Find best matches for each query descriptor which have distance less than maxDistance (in increasing order of distances).
(Inherited from DescriptorMatcher.)
Public methodRead
Reads algorithm parameters from a file storage
(Inherited from Algorithm.)
Public methodSave
Saves the algorithm to a file. In order to make this method work, the derived class must implement Algorithm::write(FileStorage fs).
(Inherited from Algorithm.)
Public methodThrowIfDisposed
If this object is disposed, then ObjectDisposedException is thrown.
(Inherited from DisposableObject.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTrain
Train matcher (e.g. train flann index). In all methods to match the method train() is run every time before matching. Some descriptor matchers (e.g. BruteForceMatcher) have empty implementation of this method, other matchers really train their inner structures (e.g. FlannBasedMatcher trains flann::Index). So nonempty implementation of train() should check the class object state and do traing/retraining only if the state requires that (e.g. FlannBasedMatcher trains flann::Index if it has not trained yet or if new descriptors have been added to the train collection).
(Inherited from DescriptorMatcher.)
Public methodWrite
Stores algorithm parameters in a file storage
(Inherited from Algorithm.)
Top
Fields
  NameDescription
Protected fieldptr
Data pointer
(Inherited from DisposableCvObject.)
Top
See Also