Detect new blobs.

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 int CvBlobDetectorDetectNewBlob(
	IntPtr detector,
	IntPtr img,
	IntPtr imgFG,
	IntPtr newBlobList,
	IntPtr oldBlobList
)
Public Shared Function CvBlobDetectorDetectNewBlob ( _
	detector As IntPtr, _
	img As IntPtr, _
	imgFG As IntPtr, _
	newBlobList As IntPtr, _
	oldBlobList As IntPtr _
) As Integer
public:
static int CvBlobDetectorDetectNewBlob(
	IntPtr detector, 
	IntPtr img, 
	IntPtr imgFG, 
	IntPtr newBlobList, 
	IntPtr oldBlobList
)

Parameters

detector
IntPtr
The blob detector
img
IntPtr
The image
imgFG
IntPtr
The foreground mask
newBlobList
IntPtr
The new blob list
oldBlobList
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