C# Класс Emgu.CV.Features2D.SURFTracker.SURFMatcher

A simple class that use flann to match SURF features.
Наследование: DisposableObject
Показать файл Открыть проект

Открытые методы

Метод Описание
MatchFeature ( SURFFeature observedFeatures, int k, int emax ) : MatchedSURFFeature[]

Match the SURF feature from the observed image to the features from the model image

SURFMatcher ( SURFFeature modelFeatures ) : System

Create k-d feature trees using the SURF feature extracted from the model image.

Защищенные методы

Метод Описание
DisposeObject ( ) : void

Release the unmanaged memory associate with this matcher

ReleaseManagedResources ( ) : void

Описание методов

DisposeObject() защищенный Метод

Release the unmanaged memory associate with this matcher
protected DisposeObject ( ) : void
Результат void

MatchFeature() публичный Метод

Match the SURF feature from the observed image to the features from the model image
public MatchFeature ( SURFFeature observedFeatures, int k, int emax ) : MatchedSURFFeature[]
observedFeatures SURFFeature The SURF feature from the observed image
k int The number of neighbors to find
emax int For k-d tree only: the maximum number of leaves to visit.
Результат MatchedSURFFeature[]

ReleaseManagedResources() защищенный Метод

protected ReleaseManagedResources ( ) : void
Результат void

SURFMatcher() публичный Метод

Create k-d feature trees using the SURF feature extracted from the model image.
public SURFMatcher ( SURFFeature modelFeatures ) : System
modelFeatures SURFFeature The SURF feature extracted from the model image
Результат System