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.0.1.0 (2.0.1.0)

Syntax

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

Parameters

tracker
Type: System..::.IntPtr
The tracker
blob
Type: Emgu.CV.Structure..::.MCvBlob %
pointer to structure with blob parameters (ID is ignored)
currentImage
Type: System..::.IntPtr
current image
currentForgroundMask
Type: System..::.IntPtr
current foreground mask

Return Value

Pointer to new added blob

See Also