C# Class OpenCvSharp.BFMatcher

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: DescriptorMatcher
ファイルを表示 Open project: shimat/opencvsharp Class Usage Examples

Private Properties

Property Type Description
BFMatcher System
BFMatcher System
FromPtr BFMatcher

Public Methods

Method Description
BFMatcher ( NormTypes normType = NormTypes.L2, bool crossCheck = false ) : System

IsMaskSupported ( ) : bool

Return true if the matcher supports mask in match methods.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Releases the resources

Private Methods

Method Description
BFMatcher ( IntPtr rawPtr ) : System

Creates instance by raw pointer T*

BFMatcher ( Ptr detectorPtr ) : System

Creates instance by cv::Ptr<T>

FromPtr ( IntPtr ptr ) : BFMatcher

Creates instance from cv::Ptr<T> . ptr is disposed when the wrapper disposes.

Method Details

BFMatcher() public method

public BFMatcher ( NormTypes normType = NormTypes.L2, bool crossCheck = false ) : System
normType NormTypes
crossCheck bool
return System

Dispose() protected method

Releases the resources
protected Dispose ( bool disposing ) : void
disposing bool /// If disposing equals true, the method has been called directly or indirectly by a user's code. Managed and unmanaged resources can be disposed. /// If false, the method has been called by the runtime from inside the finalizer and you should not reference other objects. Only unmanaged resources can be disposed. ///
return void

IsMaskSupported() public method

Return true if the matcher supports mask in match methods.
public IsMaskSupported ( ) : bool
return bool