You are here: Start » AVL.NET » AVS.CalibrateWorldPlane_Manual Method

AVS.CalibrateWorldPlane_Manual Method

Finds the image to world plane transformation parameters. Image and their corresponding world points are directly specified (no grid needed).

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void CalibrateWorldPlane_Manual
(
	IList<AvlNet.Point2D> inImagePoints,
	IList<AvlNet.Point2D> inWorldPlanePoints,
	NullableRef<AvlNet.AnyCameraModel> inCameraModel,
	float inGridThickness,
	AvlNet.RectificationTransform outTransform,
	NullableValue<float> outRmsError,
	NullableValue<float> outMaxReprojectionError,
	NullableRef<List<AvlNet.Segment2D>> outReprojectionErrorSegments
)

Parameters

Name Type Range Default Description
inImagePointsSystem.Collections.Generic.IList<AvlNet.Point2D>Array of 2D points of the calibration pattern, in the picture.
inWorldPlanePointsSystem.Collections.Generic.IList<AvlNet.Point2D>Array of 2D points of the calibration pattern, in a given world coordinate plane.
inCameraModelAvlNet.NullableRef<AvlNet.AnyCameraModel>For undistortion of inImageGrid. If not supplied, the filter will assume that grid came from undistorted image. Default value: atl::NIL.
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.
outTransformAvlNet.RectificationTransform
outRmsErrorAvlNet.NullableValue<float>RMS reprojection error, in pixels. Can be null to skip this parameter calculation.
outMaxReprojectionErrorAvlNet.NullableValue<float>Maximum reprojection error, in pixels. Can be null to skip this parameter calculation.
outReprojectionErrorSegmentsAvlNet.NullableRef<System.Collections.Generic.List<AvlNet.Segment2D>>Array of segments connecting input image points to reprojected world points. Can be null to skip this parameter calculation.

Function Overrides

See also