Threshold

Threshold(int)

Create a binary image based on setting a threshold value on the pixel intensity of the original image.

public static PreprocessingFilter Threshold(int value)
ParameterTypeDescription
valueInt32The max value.

Return Value

BinarizeFilter object.

See Also


Threshold(int, Rectangle)

Create a binary part of the image based on setting a threshold value on the pixel intensity of the original image part.

public static PreprocessingFilter Threshold(int value, Rectangle area)
ParameterTypeDescription
valueInt32The max value.
areaRectangleCoordinates of the part of the image to be corrected.

Return Value

BinarizeFilter object.

See Also