You are here: Start » FIL.NET » Function Reference » Computer Vision » Camera Calibration » FIL.AnnotateGridPoints
Select a subset of the given points that forms a grid and assign 2D indices to them.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void AnnotateGridPoints ( IList<FilNet.Point2D> inPoints, float? inMinDistance, float? inMaxDistance, float inAngleTolerance, IList<FilNet.AnnotatedPoint2D> outImageGrid )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoints | System.Collections.Generic.IList<FilNet.Point2D> | Points to calculate a grid. | ||
![]() | inMinDistance | float? | <0.0f, INF> | Minimum distance between two rows or two columns in pixels. Default value: ftl::NIL. | |
![]() | inMaxDistance | float? | <0.0f, INF> | Maximum distance between two rows or two columns in pixels. Default value: ftl::NIL. | |
![]() | inAngleTolerance | float | <0.0f, 90.0f> | 10.0f | Maximum deviation from right angles in the grid. Default value: 10.0f. |
![]() | outImageGrid | System.Collections.Generic.IList<FilNet.AnnotatedPoint2D> | Detected grid. |