Detect new blobs

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

Syntax

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

Parameters

image
IImage
The image
imageForground
Image<(Of <(Gray, Byte>)>)
The forground 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