You are here: Start » FIL.NET » Invoke.Point3DGridDistance
Computes distances between two input grids.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void Point3DGridDistance ( Fil.Point3DGrid inReference, Fil.Point3DGrid inCompare, Optional<Fil.Region> inRoi, float inThreshold, List<Fil.Point3D> outCorrectPoints, List<Fil.Point3D> outIncorrectPoints, out float outMaxDistance, out float outMinDistance, List<float> outDistances )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inReference | Fil.Point3DGrid | Reference grid. | ||
![]() | inCompare | Fil.Point3DGrid | Data points for which the distances will be computed. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Range of points for which the distance will be computed. Default value: ftl::NIL. | ||
![]() | inThreshold | float | <0.0f, INF> | Defines for each data point a maximum allowed distance to the reference grid. | |
![]() | outCorrectPoints | System.Collections.Generic.List<Fil.Point3D> | All data points with distance to the reference grid smaller that the given threshold. | ||
![]() | outIncorrectPoints | System.Collections.Generic.List<Fil.Point3D> | All data points with distance to reference grid greater that the given threshold. | ||
![]() | outMaxDistance | float | Maximum computed distance. | ||
![]() | outMinDistance | float | Minimum computed distance. | ||
![]() | outDistances | System.Collections.Generic.List<float> | All computed distances. |