Detect new blobs

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public int DetectNewBlob(
	IImage image,
	Image<Gray, byte> imageForeground,
	BlobSeq newBlob,
	BlobSeq oldBlob
)
Public Function DetectNewBlob ( _
	image As IImage, _
	imageForeground As Image(Of Gray, Byte), _
	newBlob As BlobSeq, _
	oldBlob As BlobSeq _
) As Integer
public:
int DetectNewBlob(
	IImage^ image, 
	Image<Gray, unsigned char>^ imageForeground, 
	BlobSeq^ newBlob, 
	BlobSeq^ oldBlob
)

Parameters

image
IImage
The image
imageForeground
Image<(Of <(<'Gray, Byte>)>)>
The foreground mask
newBlob
BlobSeq
The new blob list
oldBlob
BlobSeq
The old blob list

Return Value

[Missing <returns> documentation for "M:Emgu.CV.VideoSurveillance.BlobDetector.DetectNewBlob(Emgu.CV.IImage,Emgu.CV.Image{Emgu.CV.Structure.Gray,System.Byte},Emgu.CV.VideoSurveillance.BlobSeq,Emgu.CV.VideoSurveillance.BlobSeq)"]

See Also