Get the blob with the specific id

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 abstract Nullable<MCvBlob> GetBlobByID(
	int blobID
)
Public MustOverride Function GetBlobByID ( _
	blobID As Integer _
) As Nullable(Of MCvBlob)
public:
virtual Nullable<MCvBlob> GetBlobByID(
	int blobID
) abstract

Parameters

blobID
Int32
The id of the blob

Return Value

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

See Also