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

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
inPointGridFil.Point3DGridInput Point3DGrid.
inRoiFtl.Optional<Fil.Region>Region of interest. Default value: ftl::NIL.
inStdDevMultiplefloat<0.0f, INF>1.5fAllows to set a threshold based on standard deviation of average distances between points on input. Default value: 1.5f.
inNeighborCountint<1, INF>10Defines number of neighbors used to compute average distances between vertices. Default value: 10.
outGridFil.Point3DGridCleaned input.
diagThresholdFil.Diagnostic<float>Threshold used by the algorithm.
diagAverageDistanceFil.Diagnostic<float>Average distance between input points and their neighborhood.

See also