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

Invoke.RemoveOutliersFromPoint3DGrid

Removes noise from a given Point3DGrid. All points that are too far from their neighbors are removed.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void RemoveOutliersFromPoint3DGrid
(
	Avl.Point3DGrid inPointGrid,
	Optional<Avl.Region> inRoi,
	float inStdDevMultiple,
	int inNeighborCount,
	Avl.Point3DGrid outGrid,
	Diagnostic<float> diagThreshold,
	Diagnostic<float> diagAverageDistance
)

Parameters

Name Type Range Default Description
inPointGridAvl.Point3DGridInput Point3DGrid.
inRoiAtl.Optional<Avl.Region>Region of interest. Default value: atl::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.
outGridAvl.Point3DGridCleaned input.
diagThresholdAvl.Diagnostic<float>Threshold used by the algorithm.
diagAverageDistanceAvl.Diagnostic<float>Average distance between input points and their neighborhood.

See also