C# Class Emgu.CV.VideoSurveillance.BlobSeq

A Blob Seq
Inheritance: BlobSeqBase
Exibir arquivo Open project: fajoy/RTSPExample Class Usage Examples

Public Methods

Method Description
Add ( Emgu.CV.Structure.MCvBlob blob ) : void

Add a new blob to the seq

BlobSeq ( ) : System

Create a empty BlobSeq

BlobSeq ( IntPtr ptr ) : System

Create a BlobSeq from the given pointer

Clear ( ) : void

Clear the BlobSeq

GetBlobByID ( int blobID ) : Emgu.CV.Structure.MCvBlob

Get the blob with the specific id

this ( int i ) : Emgu.CV.Structure.MCvBlob

Return the specific blob

Protected Methods

Method Description
DisposeObject ( ) : void

Release the BlobSeq

Method Details

Add() public method

Add a new blob to the seq
public Add ( Emgu.CV.Structure.MCvBlob blob ) : void
blob Emgu.CV.Structure.MCvBlob The blob sequence to be added
return void

BlobSeq() public method

Create a empty BlobSeq
public BlobSeq ( ) : System
return System

BlobSeq() public method

Create a BlobSeq from the given pointer
public BlobSeq ( IntPtr ptr ) : System
ptr System.IntPtr The pointer to the unmanaged BlobSeq
return System

Clear() public method

Clear the BlobSeq
public Clear ( ) : void
return void

DisposeObject() protected method

Release the BlobSeq
protected DisposeObject ( ) : void
return void

GetBlobByID() public method

Get the blob with the specific id
public GetBlobByID ( int blobID ) : Emgu.CV.Structure.MCvBlob
blobID int The id of the blob
return Emgu.CV.Structure.MCvBlob

this() public method

Return the specific blob
public this ( int i ) : Emgu.CV.Structure.MCvBlob
i int the index of the blob
return Emgu.CV.Structure.MCvBlob