C# Class Accord.Imaging.Blob

ファイルを表示 Open project: accord-net/framework Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
Blob ( Blob source ) : System

Initializes a new instance of the Blob class.

This copy 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.

Blob ( int id, Rectangle rect ) : System

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.

Method Details

Blob() public method

Initializes a new instance of the Blob class.

This copy 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.

public Blob ( Blob source ) : System
source Blob Source blob to copy.
return System

Blob() public 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.

public 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