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)
Syntaxpublic static RotatedRect CamShift(
IInputArray probImage,
ref Rectangle window,
MCvTermCriteria criteria
)
Public Shared Function CamShift (
probImage As IInputArray,
ByRef window As Rectangle,
criteria As MCvTermCriteria
) As RotatedRect
public:
static RotatedRect CamShift(
IInputArray^ probImage,
Rectangle% window,
MCvTermCriteria criteria
)
static member CamShift :
probImage : IInputArray *
window : Rectangle byref *
criteria : MCvTermCriteria -> RotatedRect
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:
RotatedRectCircumscribed box for the object, contains object size and orientation
See Also