SplitChannels


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

Syntax

C++
Python
 
def SplitChannels(
	inImage: Image,
	/,
	*,
	outMonoImage1: Image | None = None,
	outMonoImage2: Image | None = None,
	outMonoImage3: Image | None = None,
	outMonoImage4: Image | None = None
)
-> None

Parameters

Name Type Default Description
Input value inImage Image Input image
Output value outMonoImage1 Image | None None Image of the first channel
Output value outMonoImage2 Image | None None Image of the second channel (if exists)
Output value outMonoImage3 Image | None None Image of the third channel (if exists)
Output value outMonoImage4 Image | None None Image of the fourth channel (if exists)

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.