Click or drag to resize

CvInvokeCamShift Method

http://www.emgu.com
Implements CAMSHIFT object tracking algorithm ([Bradski98]). First, it finds an object center using cvMeanShift and, after that, calculates the object size and orientation.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static RotatedRect CamShift(
	IInputArray probImage,
	ref Rectangle window,
	MCvTermCriteria criteria
)

Parameters

probImage
Type: Emgu.CVIInputArray
Back projection of object histogram
window
Type: System.DrawingRectangle
Initial search window
criteria
Type: Emgu.CV.StructureMCvTermCriteria
Criteria applied to determine when the window search should be finished

Return Value

Type: RotatedRect
Circumscribed box for the object, contains object size and orientation
See Also