You are here: Start » FIL.NET » FIS.CalibrateWorldPlane_Default Method

FIS.CalibrateWorldPlane_Default Method

Finds the image to world plane transformation matrix. World plane origin and axes are unspecified. Useful for image rectification or distance measurements.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void CalibrateWorldPlane_Default
(
	IList<FilNet.AnnotatedPoint2D> inImageGrid,
	float inGridSpacing,
	float inGridThickness,
	FilNet.RectificationTransform outTransform,
	NullableValue<float> outRmsError,
	NullableValue<float> outMaxReprojectionError,
	NullableRef<List<FilNet.Segment2D>> outReprojectionErrorSegments
)

Parameters

Name Type Range Default Description
inImageGridSystem.Collections.Generic.IList<FilNet.AnnotatedPoint2D>Annotated calibration grid.
inGridSpacingfloat<0.000001f, INF>1.0fReal-world distance between adjacent grid points. Default value: 1.0f.
inGridThicknessfloat0.0fThe world plane will be shifted by given amount in direction perpendicular to the grid to compensate for grid thickness. Default value: 0.0f.
outTransformFilNet.RectificationTransform
outRmsErrorFilNet.NullableValue<float>RMS reprojection error, in pixels. Can be null to skip this parameter calculation.
outMaxReprojectionErrorFilNet.NullableValue<float>Maximum reprojection error, in pixels. Can be null to skip this parameter calculation.
outReprojectionErrorSegmentsFilNet.NullableRef<System.Collections.Generic.List<FilNet.Segment2D>>Array of segments connecting input image points to grid reprojections. Can be null to skip this parameter calculation.

Function Overrides

See also