You are here: Start » FIL.NET » Function Reference » Surface » Surface Basics » FIL.CreateSurfaceFromImage

FIL.CreateSurfaceFromImage

Creates a Surface structure from coordinates encoded in pixels of an image.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void CreateSurfaceFromImage
(
	FilNet.Image inImage,
	NullableRef<FilNet.Region> inRoi,
	FilNet.PointCloudCoordinateTransform inXCoordinateTransform,
	FilNet.PointCloudCoordinateTransform inYCoordinateTransform,
	FilNet.PointCloudCoordinateTransform inZCoordinateTransform,
	FilNet.OutputSurfaceFormat inCreatedSurfaceFormat,
	FilNet.Surface outSurface
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageSource image with per pixel encoded XYZ coordinates.
inRoiFilNet.NullableRef<FilNet.Region>Region determining valid points in resulting point grid. Default value: ftl::NIL.
inXCoordinateTransformFilNet.PointCloudCoordinateTransformPointCloudCoordinateTransform ( Offset: 0.000000D ValueCoordinateTransform: ImageValueCoordinateTransform( ChannelIndex: 0 Scale: 1.0D InvalidValues: Nil ) LocationCoordinateTransform: Nil Limits: ValueLimits_f64( MinValue: Nil, MaxValue: Nil ) )Description of the creation of the X coordinate. Default value: PointCloudCoordinateTransform ( Offset: 0.000000D ValueCoordinateTransform: ImageValueCoordinateTransform( ChannelIndex: 0 Scale: 1.0D InvalidValues: Nil ) LocationCoordinateTransform: Nil Limits: ValueLimits_f64( MinValue: Nil, MaxValue: Nil ) ).
inYCoordinateTransformFilNet.PointCloudCoordinateTransformPointCloudCoordinateTransform ( Offset: 0.000000D ValueCoordinateTransform: ImageValueCoordinateTransform( ChannelIndex: 1 Scale: 1.0D InvalidValues: Nil ) LocationCoordinateTransform: Nil Limits: ValueLimits_f64( MinValue: Nil, MaxValue: Nil ) )Description of the creation of the Y coordinate. Default value: PointCloudCoordinateTransform ( Offset: 0.000000D ValueCoordinateTransform: ImageValueCoordinateTransform( ChannelIndex: 1 Scale: 1.0D InvalidValues: Nil ) LocationCoordinateTransform: Nil Limits: ValueLimits_f64( MinValue: Nil, MaxValue: Nil ) ).
inZCoordinateTransformFilNet.PointCloudCoordinateTransformPointCloudCoordinateTransform ( Offset: 0.000000D ValueCoordinateTransform: ImageValueCoordinateTransform( ChannelIndex: 2 Scale: 1.0D InvalidValues: Nil ) LocationCoordinateTransform: Nil Limits: ValueLimits_f64( MinValue: Nil, MaxValue: Nil ) )Description of the creation of the Z coordinate. Default value: PointCloudCoordinateTransform ( Offset: 0.000000D ValueCoordinateTransform: ImageValueCoordinateTransform( ChannelIndex: 2 Scale: 1.0D InvalidValues: Nil ) LocationCoordinateTransform: Nil Limits: ValueLimits_f64( MinValue: Nil, MaxValue: Nil ) ).
inCreatedSurfaceFormatFilNet.OutputSurfaceFormatOutputSurfaceFormat ( XScale: 1.000000D YScale: 1.000000D ZScale: 1.000000D ZOffset: 0.000000D PointType: UInt16 MultipointHeight: Mean )Parameters for arranging points into Surface. Default value: OutputSurfaceFormat ( XScale: 1.000000D YScale: 1.000000D ZScale: 1.000000D ZOffset: 0.000000D PointType: UInt16 MultipointHeight: Mean ).
outSurfaceFilNet.Surface

Description

The operation creates a point cloud object based on the input point image. It can be thought of as a combination of two operations: CreatePoint3DGridFromImage and ArrangePoint3DArray.

Function Overrides

See also