TransposeImage


Flips and rotates an image so that columns are exchanged with rows.

Applications:Useful when operations on image columns should be replaced with operations on image rows, which are much faster due to the cache memory.

Syntax

C++
Python
 
def TransposeImage(
	inImage: Image,
	outImage: Image,
	/
)
-> None

Parameters

Name Type Default Description
Input value inImage Image Input image
Output value outImage Image Output image

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.