Gaussian Smoothing

The Gaussian filter performs smoothing of points within a small local region based on 3D distances. This can be used to suppress sparse noise, correct outliers, and align points to a grid. Sigma parameter defines the aggressiveness of the filter. The higher the sigma, the more aggressive smoothing. Note that the Gaussian filter can, in many cases, correct outliers, but high sigma will also smooth out edges.

Gaussian filter adds the following processing time per 3D capture:

When do you use the Gaussian smoothing?

Because the Gaussian filter performs smoothing, it can greatly improve the absolute noise in a point cloud. This can improve the performance of many vision algorithms, such as detection and matching algorithms. Even though the relative noise from one part to another is the same, the absolute noise may be reduced, making the parts more similar as a whole.

The Gaussian filter can also be good to use when assessing large-scale effects, such as the flatness of a plane. This is because it suppresses the impact of outliers that may cause the applied algorithm to perform too pessimistically.

Version History

SDK

Changes

2.9.0

Reduce filter processing time and improve edge preservation capabilities.

1.3.0

Gaussian filter API is added.