C# 클래스 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.
상속: DescriptorMatcher
파일 보기 프로젝트 열기: shimat/opencvsharp 1 사용 예제들

Private Properties

프로퍼티 타입 설명
BFMatcher System
BFMatcher System
FromPtr BFMatcher

공개 메소드들

메소드 설명
BFMatcher ( NormTypes normType = NormTypes.L2, bool crossCheck = false ) : System

IsMaskSupported ( ) : bool

Return true if the matcher supports mask in match methods.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

Releases the resources

비공개 메소드들

메소드 설명
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.

메소드 상세

BFMatcher() 공개 메소드

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

Dispose() 보호된 메소드

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. ///
리턴 void

IsMaskSupported() 공개 메소드

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