[This is preliminary documentation and is subject to change.]

Get the blob with the specific id

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

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