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
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

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