You are here: Start » AVL.NET » AVL.SelectChannel Method

AVL.SelectChannel Method

Creates an image from a single channel of the input image.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void SelectChannel(
	AvlNet.Image inImage,
	int inChannelIndex,
	out AvlNet.Image outImage
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
inChannelIndexint<0, 3>
outImageAvlNet.ImageOutput image.

Description

The operation extracts the selected color channel of inImage.

Examples

An example image used as inImage.

The resulting outImage when inChannelIndex = 0.

The resulting outImage when inChannelIndex = 1.

The resulting outImage when inChannelIndex = 2.

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.

Hardware acceleration settings may be manipulated with Settings class.

Errors

Error type Description
DomainError Channel index out of range in SelectChannel.

See also