You are here: Start » AVL.NET » Invoke.CalibrateWorldPlane_Manual
Finds the image to world plane transformation parameters. Image and their corresponding world points are directly specified (no grid needed).
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void CalibrateWorldPlane_Manual ( List<Avl.Point2D> inImagePoints, List<Avl.Point2D> inWorldPlanePoints, Optional<Avl.AnyCameraModel> inCameraModel, float inGridThickness, Avl.RectificationTransform outTransform, Optional<float> outRmsError, Optional<float> outMaxReprojectionError, Optional<List<Avl.Segment2D>> outReprojectionErrorSegments )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImagePoints | System.Collections.Generic.List<Avl.Point2D> | Array of 2D points of the calibration pattern, in the picture. | ||
![]() | inWorldPlanePoints | System.Collections.Generic.List<Avl.Point2D> | Array of 2D points of the calibration pattern, in a given world coordinate plane. | ||
![]() | inCameraModel | Atl.Optional<Avl.AnyCameraModel> | For undistortion of inImageGrid. If not supplied, the filter will assume that grid came from undistorted image. Default value: atl::NIL. | ||
![]() | inGridThickness | float | 0.0f | The world plane will be shifted by given amount in direction perpendicular to the grid to compensate for grid thickness. Default value: 0.0f. | |
![]() | outTransform | Avl.RectificationTransform | |||
![]() | outRmsError | Atl.Optional<float> | RMS reprojection error, in pixels. | ||
![]() | outMaxReprojectionError | Atl.Optional<float> | Maximum reprojection error, in pixels. | ||
![]() | outReprojectionErrorSegments | Atl.Optional<System.Collections.Generic.List<Avl.Segment2D>> | Array of segments connecting input image points to reprojected world points. |