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 | |
|---|---|---|---|---|---|
![]() |
inPoint3DGrid | Point3DGrid | |||
![]() |
inMissingPointValue | float | 0 | Value assigned to pixels where point is undefined | |
![]() |
inPixelOffset | float | 0.0 | Value added to every pixel | |
![]() |
inPixelScale | float | - - ![]() |
1.0 | Value every pixel is multiplied by |
![]() |
outImage | Image | Output image |


- 