Binarize

Binarize()

Converts an image to black-and-white image. Binary images are images whose pixels have only two possible intensity values. They are normally displayed as black and white. Numerically, the two values are often 0 for black, and 255 for white. Binary images are produced by auto thresholding an image.

public static PreprocessingFilter Binarize()

Return Value

BinarizeFilter object.

See Also


Binarize(Rectangle)

Converts a part of the image to black-and-white image. Binary images are images whose pixels have only two possible intensity values. They are normally displayed as black and white. Numerically, the two values are often 0 for black, and 255 for white. Binary images are produced by auto thresholding an image.

public static PreprocessingFilter Binarize(Rectangle area)
ParameterTypeDescription
areaRectangleCoordinates of the part of the image to be corrected.

Return Value

BinarizeFilter object.

See Also