You are here: Start » FIL.NET » Invoke.AnnotateGridPoints

Invoke.AnnotateGridPoints

Select a subset of the given points that forms a grid and assign 2D indices to them.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void AnnotateGridPoints
(
	List<Fil.Point2D> inPoints,
	Optional<float> inMinDistance,
	Optional<float> inMaxDistance,
	float inAngleTolerance,
	List<Fil.AnnotatedPoint2D> outImageGrid,
	Diagnostic<List<Fil.Segment2D>> diagValidSubgraph
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.List<Fil.Point2D>Points to calculate a grid.
inMinDistanceFtl.Optional<float><0.0f, INF>Minimum distance between two rows or two columns in pixels. Default value: ftl::NIL.
inMaxDistanceFtl.Optional<float><0.0f, INF>Maximum distance between two rows or two columns in pixels. Default value: ftl::NIL.
inAngleTolerancefloat<0.0f, 90.0f>10.0fMaximum deviation from right angles in the grid. Default value: 10.0f.
outImageGridSystem.Collections.Generic.List<Fil.AnnotatedPoint2D>Detected grid.
diagValidSubgraphFil.Diagnostic<System.Collections.Generic.List<Fil.Segment2D>>Graph forming a valid grid.

See also