C# Class Ocronet.Dynamic.Interfaces.IBinarize

Perform binarization of grayscale images.
Inheritance: IComponent
Exibir arquivo Open project: nickun/OCRonet

Public Methods

Method Description
Binarize ( Bytearray outarray, Bytearray inarray ) : void

Binarize an image stored in a floatarray. Override this.

Binarize ( Bytearray outarray, Bytearray gray, Bytearray inarray ) : void

Binarize an image stored in a bytearray. Override this if you want to provide a more efficient implementation.

Method Details

Binarize() public abstract method

Binarize an image stored in a floatarray. Override this.
public abstract Binarize ( Bytearray outarray, Bytearray inarray ) : void
outarray Bytearray
inarray Bytearray
return void

Binarize() public method

Binarize an image stored in a bytearray. Override this if you want to provide a more efficient implementation.
public Binarize ( Bytearray outarray, Bytearray gray, Bytearray inarray ) : void
outarray Bytearray
gray Bytearray
inarray Bytearray
return void