SplitChannels_OrNil


Creates several monochromatic images from individual channels of the input image and sets Nil for channels that are not present.

Syntax

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

Parameters

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

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.