AForge.Imaging.Blob.Blob C# (CSharp) Method

Blob() private method

Initializes a new instance of the Blob class.

This constructor leaves Image property not initialized. The blob's image may be extracted later using BlobCounterBase.ExtractBlobsImage( Bitmap, Blob, bool ) or BlobCounterBase.ExtractBlobsImage( UnmanagedImage, Blob, bool ) method.

private Blob ( int id, Rectangle rect ) : System
id int Blob's ID in the original image.
rect System.Drawing.Rectangle Blob's rectangle in the original image.
return System
        internal Blob( int id, Rectangle rect )
        {
            this.id   = id;
            this.rect = rect;
        }

Same methods

Blob::Blob ( Blob source ) : System
Blob