AForge.Imaging.Blob.Blob C# (CSharp) 메소드

Blob() 개인적인 메소드

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.
리턴 System
        internal Blob( int id, Rectangle rect )
        {
            this.id   = id;
            this.rect = rect;
        }

Same methods

Blob::Blob ( Blob source ) : System
Blob