MultiTrackerUpdate Method |
http://www.emgu.com
Update the current tracking status. The result will be saved in the internal storage.
Namespace:
Emgu.CV.Tracking
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic bool Update(
Mat image,
VectorOfRect boundingBox
)
Public Function Update (
image As Mat,
boundingBox As VectorOfRect
) As Boolean
public:
bool Update(
Mat^ image,
VectorOfRect^ boundingBox
)
member Update :
image : Mat *
boundingBox : VectorOfRect -> bool
Parameters
- image
- Type: Emgu.CVMat
Input image - boundingBox
- Type: Emgu.CV.UtilVectorOfRect
the tracking result, represent a list of ROIs of the tracked objects.
Return Value
Type:
BooleanTrue id update success
See Also