TransformImage


Transforms an image by the provided transformation matrix.

Syntax

C++
Python
 
def TransformImage(
	inImage: Image,
	inTransformMatrix: Matrix,
	outImage: Image,
	/,
	*,
	inInverse: bool = False,
	inInterpolation: InterpolationMethod = InterpolationMethod.NearestNeighbour
)
-> None

Parameters

Name Type Default Description
Input value inImage Image Input image
Input value inTransformMatrix Matrix Transform matrix
Input value inInverse bool False
Input value inInterpolation InterpolationMethod InterpolationMethod.NearestNeighbour Image quality
Output value outImage Image Output image