C# Класс Accord.Vision.Tracking.MatchingTracker

Template matching object tracker.
The matching tracker will track the object presented in the search window of the first frame given to the tracker. To reset the tracker and start tracking another object, one can call the Reset method, then set the search window around a new object of interest present the image containing the new object to the tracker.
Наследование: IObjectTracker
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
MatchingTracker ( ) : System.Drawing

Constructs a new MatchingTracker object tracker.

ProcessFrame ( UnmanagedImage frame ) : void

Process a new video frame.

Reset ( ) : void

Resets this instance.

Приватные методы

Метод Описание
checkSteadiness ( TemplateMatch match ) : bool
match ( UnmanagedImage frame ) : TemplateMatch
registerTemplate ( UnmanagedImage frame, Rectangle window ) : void
track ( UnmanagedImage frame ) : void
updateObject ( Rectangle window ) : void

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

MatchingTracker() публичный метод

Constructs a new MatchingTracker object tracker.
public MatchingTracker ( ) : System.Drawing
Результат System.Drawing

ProcessFrame() публичный метод

Process a new video frame.
public ProcessFrame ( UnmanagedImage frame ) : void
frame Accord.Imaging.UnmanagedImage
Результат void

Reset() публичный метод

Resets this instance.
public Reset ( ) : void
Результат void