You are here: Start » AVL.NET » AVL.ThresholdImage_RGB(AvlNet.Image, int?, int?, int?, float, AvlNet.Image)

AVL.ThresholdImage_RGB(AvlNet.Image, int?, int?, int?, float, AvlNet.Image)

Transforms each pixel value to minimum or maximum depending on whether it belongs to the specified range for each individual pixel component.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax


public static void ThresholdImage_RGB(
	AvlNet.Image inRgbImage,
	int? inMinRed,
	int? inMinGreen,
	int? inMinBlue,
	float inFuzziness,
	out AvlNet.Image outMonoImage
)

Parameters

inRgbImage
Type: AvlNet.Image
Input image, usually in the RGB color space
inMinRed
Type: System.Nullable<System.Int32>
Minimum for the first pixel component, usually Red (Auto = -INF), or null.
inMinGreen
Type: System.Nullable<System.Int32>
Minimum for the second pixel component, usually Green (Auto = -INF), or null.
inMinBlue
Type: System.Nullable<System.Int32>
Minimum for the third pixel component, usually Blue (Auto = -INF), or null.
inFuzziness
Type: System.Single
Tolerance for the ranges that results in intermediate output values
outMonoImage
Type: AvlNet.Image

Remarks

See full override for more details.

See also