Gaussian Smoothing

The Gaussian filter performs Gaussian smoothing on pixels within a small local region. This can be used to suppress sparse noise and align pixels to a grid. By increasing the sigma of the Gaussian filter, more pixels, and thus a larger region, will be included in the calculation. This will result in more aggressive smoothing. The Gaussian filter can in many cases correct outliers, but it will also smoothen out edges.

Note

Gaussian smoothing adds up to 15 ms of 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 some 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 pessimistic.