Get the blob with the specific id

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

Syntax

C#
public abstract Nullable<MCvBlob> GetBlobByID(
	int blobID
)
Visual Basic (Declaration)
Public MustOverride Function GetBlobByID ( _
	blobID As Integer _
) As Nullable(Of MCvBlob)
Visual C++
public:
virtual Nullable<MCvBlob> GetBlobByID(
	int blobID
) abstract

Parameters

blobID
Type: System..::.Int32
The id of the blob

Return Value

The blob of the specific id, if do not exist, null is returned

See Also