CreateImageFromPoint3DGrid


Creates a depth image from the Z-values of the input point grid.

Applications:Allows for performing 2D operations on 3D data.

Syntax

C++
C#
Python
 
def CreateImageFromPoint3DGrid(
	inPoint3DGrid: Point3DGrid,
	outImage: Image,
	/,
	*,
	inMissingPointValue: float = 0,
	inPixelOffset: float = 0.0,
	inPixelScale: float = 1.0
)
-> None

Parameters

Name Type Range Default Description
Input value inPoint3DGrid Point3DGrid
Input value inMissingPointValue float 0 Value assigned to pixels where point is undefined
Input value inPixelOffset float 0.0 Value added to every pixel
Input value inPixelScale float - - 1.0 Value every pixel is multiplied by
Output value outImage Image Output image