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

AVL.ThresholdToRegion_RGB(AvlNet.Image, int?, int?, int?, AvlNet.Region)

Creates a region containing image pixels which belongs to the specified range for each individual pixel component.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax


public static void ThresholdToRegion_RGB(
	AvlNet.Image inRgbImage,
	int? inMinRed,
	int? inMinGreen,
	int? inMinBlue,
	out AvlNet.Region outRegion
)

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.
outRegion
Type: AvlNet.Region
Output region

See also