You are here: Start » FIL.NET » Function Reference » Computer Vision » Shape Fitting 3D » FIL.CreateSurfaceMeasurementMap

FIL.CreateSurfaceMeasurementMap

(Pre)computes surface sampling locations used by MeasureObjectWidth3D function.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void CreateSurfaceMeasurementMap
(
	FilNet.SurfaceFormat inSurfaceFormat,
	FilNet.SegmentScanField inScanField,
	FilNet.CoordinateSystem2D? inScanFieldAlignment,
	int inScanCount,
	float? inSamplingStep,
	int inScanWidth,
	FilNet.InterpolationMethod inSurfaceInterpolation,
	IList<FilNet.ScanMap> outMeasurementMap,
	NullableValue<FilNet.SegmentScanField> outAlignedScanField
)

Parameters

Name Type Range Default Description
inSurfaceFormatFilNet.SurfaceFormatInformation about dimensions, depth and pixel type of the surface.
inScanFieldFilNet.SegmentScanFieldField in which scans will be performed.
inScanFieldAlignmentFilNet.CoordinateSystem2D?Adjusts the scan field to the position of the inspected object. Default value: ftl::NIL.
inScanCountint<2, INF>5Number of scans to be performed. Default value: 5.
inSamplingStepfloat?Desired distance between consecutive sampling points on the scan segments; if Nil, the bigger of surface X and Y scales is chosen. Default value: ftl::NIL.
inScanWidthint<1, INF>5Width of the scan area. Default value: 5.
inSurfaceInterpolationFilNet.InterpolationMethodBilinearInterpolation method used in extraction of image pixel values. Default value: Bilinear.
outMeasurementMapSystem.Collections.Generic.IList<FilNet.ScanMap>
outAlignedScanFieldFilNet.NullableValue<FilNet.SegmentScanField>Field in which the scans will be performed. Can be null to skip this parameter calculation.

Function Overrides

See also