Add new blob to track it and assign to this blob personal ID

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static IntPtr CvBlobTrackerAddBlob(
	IntPtr tracker,
	ref MCvBlob blob,
	IntPtr currentImage,
	IntPtr currentForgroundMask
)
Public Shared Function CvBlobTrackerAddBlob ( _
	tracker As IntPtr, _
	ByRef blob As MCvBlob, _
	currentImage As IntPtr, _
	currentForgroundMask As IntPtr _
) As IntPtr
public:
static IntPtr CvBlobTrackerAddBlob(
	IntPtr tracker, 
	MCvBlob% blob, 
	IntPtr currentImage, 
	IntPtr currentForgroundMask
)

Parameters

tracker
IntPtr
The tracker
blob
MCvBlob %
pointer to structure with blob parameters (ID is ignored)
currentImage
IntPtr
current image
currentForgroundMask
IntPtr
current foreground mask

Return Value

Pointer to new added blob

See Also