Detect new blobs.

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

Syntax

C#
public static int CvBlobDetectorDetectNewBlob(
	IntPtr detector,
	IntPtr img,
	IntPtr imgFG,
	IntPtr newBlobList,
	IntPtr oldBlobList
)
Visual Basic (Declaration)
Public Shared Function CvBlobDetectorDetectNewBlob ( _
	detector As IntPtr, _
	img As IntPtr, _
	imgFG As IntPtr, _
	newBlobList As IntPtr, _
	oldBlobList As IntPtr _
) As Integer
Visual C++
public:
static int CvBlobDetectorDetectNewBlob(
	IntPtr detector, 
	IntPtr img, 
	IntPtr imgFG, 
	IntPtr newBlobList, 
	IntPtr oldBlobList
)

Parameters

detector
Type: System..::.IntPtr
The blob detector
img
Type: System..::.IntPtr
The image
imgFG
Type: System..::.IntPtr
The forground mask
newBlobList
Type: System..::.IntPtr
The new blob list
oldBlobList
Type: System..::.IntPtr
The old blob list

Return Value

[Missing <returns> documentation for "M:Emgu.CV.CvInvoke.CvBlobDetectorDetectNewBlob(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"]

See Also