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.2.1.1150 (2.2.1.1150)

Syntax

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

Parameters

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

Return Value

Pointer to new added blob

See Also