You are here: Start » FIL.NET » Invoke.CreateSurfaceFromImage

Invoke.CreateSurfaceFromImage

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void CreateSurfaceFromImage
(
	Fil.Image inImage,
	Optional<Fil.Region> inRoi,
	Fil.PointCloudCoordinateTransform inXCoordinateTransform,
	Fil.PointCloudCoordinateTransform inYCoordinateTransform,
	Fil.PointCloudCoordinateTransform inZCoordinateTransform,
	Fil.OutputSurfaceFormat inCreatedSurfaceFormat,
	Fil.Surface outSurface,
	Diagnostic<Fil.Region> diagSurfaceValidPointsRegion,
	Diagnostic<Fil.Point3DGrid> diagPoint3DGrid
)

Parameters

Name Type Range Default Description
inImageFil.ImageSource image with per pixel encoded XYZ coordinates.
inRoiFtl.Optional<Fil.Region>Region determining valid points in resulting point grid. Default value: ftl::NIL.
inXCoordinateTransformFil.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 ) ).
inYCoordinateTransformFil.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 ) ).
inZCoordinateTransformFil.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 ) ).
inCreatedSurfaceFormatFil.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 ).
outSurfaceFil.Surface
diagSurfaceValidPointsRegionFil.Diagnostic<Fil.Region>Region of locations where the surface points are valid.
diagPoint3DGridFil.Diagnostic<Fil.Point3DGrid>Points decoded before arranging them into Surface.

See also