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
Показать файл Открыть проект Примеры использования класса

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