statistical_outlier_removal
Cleans a point cloud by removing statistical outliers: for each point, computes mean distance to k nearest neighbors, then removes points with distance above mean + nSigma standard deviations.
Instructions
Remove statistical outliers by analysing the distance distribution to k nearest neighbours. Points farther than (mean + nSigma × std) from their neighbours are removed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input_path | Yes | Absolute path to the input point cloud. | |
| output_path | Yes | Absolute path for the cleaned cloud. | |
| knn | No | Number of nearest neighbours to consider. Default 6. | |
| n_sigma | No | Sigma multiplier for outlier threshold. Default 1.0. |