You are here: Start » FIL.NET » Invoke.RemoveOutliersFromPoint3DGrid
Removes noise from a given Point3DGrid. All points that are too far from their neighbors are removed.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void RemoveOutliersFromPoint3DGrid ( Fil.Point3DGrid inPointGrid, Optional<Fil.Region> inRoi, float inStdDevMultiple, int inNeighborCount, Fil.Point3DGrid outGrid, Diagnostic<float> diagThreshold, Diagnostic<float> diagAverageDistance )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPointGrid | Fil.Point3DGrid | Input Point3DGrid. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Region of interest. Default value: ftl::NIL. | ||
![]() | inStdDevMultiple | float | <0.0f, INF> | 1.5f | Allows to set a threshold based on standard deviation of average distances between points on input. Default value: 1.5f. |
![]() | inNeighborCount | int | <1, INF> | 10 | Defines number of neighbors used to compute average distances between vertices. Default value: 10. |
![]() | outGrid | Fil.Point3DGrid | Cleaned input. | ||
![]() | diagThreshold | Fil.Diagnostic<float> | Threshold used by the algorithm. | ||
![]() | diagAverageDistance | Fil.Diagnostic<float> | Average distance between input points and their neighborhood. |