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

AVL.SplitChannels Method

Creates several monochromatic images from individual channels of the input image.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void SplitChannels(
	AvlNet.Image inImage,
	out AvlNet.Image outMonoImage1,
	out AvlNet.Image outMonoImage2,
	out AvlNet.Image outMonoImage3,
	out AvlNet.Image outMonoImage4
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
outMonoImage1AvlNet.ImageImage of the first channel.
outMonoImage2AvlNet.ImageImage of the second channel.
outMonoImage3AvlNet.ImageImage of the third channel (if exists)
outMonoImage4AvlNet.ImageImage of the fourth channel (if exists)

Description

The operation extracts the color channels of inImage as separate monochromatic images. Outputs corresponding to non-existing channels of an image are set to Nil.

Examples

An example image used as inImage.

The resulting outMonoImage1.

The resulting outMonoImage2.

The resulting outMonoImage3.

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.

Hardware acceleration settings may be manipulated with Settings class.

See also