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

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
inReferenceFil.Point3DGridReference grid.
inCompareFil.Point3DGridData points for which the distances will be computed.
inRoiFtl.Optional<Fil.Region>Range of points for which the distance will be computed. Default value: ftl::NIL.
inThresholdfloat<0.0f, INF>Defines for each data point a maximum allowed distance to the reference grid.
outCorrectPointsSystem.Collections.Generic.List<Fil.Point3D>All data points with distance to the reference grid smaller that the given threshold.
outIncorrectPointsSystem.Collections.Generic.List<Fil.Point3D>All data points with distance to reference grid greater that the given threshold.
outMaxDistancefloatMaximum computed distance.
outMinDistancefloatMinimum computed distance.
outDistancesSystem.Collections.Generic.List<float>All computed distances.

See also