http://www.emgu.com
Detect new blobs.

Namespace: Emgu.CV.VideoSurveillance
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)

Syntax

C#
public static bool CvBlobDetectorDetectNewBlob(
	IntPtr detector,
	IntPtr img,
	IntPtr imgFG,
	IntPtr newBlobList,
	IntPtr oldBlobList
)
Visual Basic
Public Shared Function CvBlobDetectorDetectNewBlob ( _
	detector As IntPtr, _
	img As IntPtr, _
	imgFG As IntPtr, _
	newBlobList As IntPtr, _
	oldBlobList As IntPtr _
) As Boolean
Visual C++
public:
static bool 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 foreground 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.VideoSurveillance.BlobDetector.CvBlobDetectorDetectNewBlob(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"]

See Also