|
SMIL 1.1.2
|
A 2D Kuwahara filter implementation. More...
A 2D Kuwahara filter implementation.
Performs the Kuwahara Filter, a noise-reduction filter that preserves edges. In the case of a 5x5 sampling window, the mean brightness and the variance of each of the four 3x3 regions, are calculated and the value of the center pixel is set to the mean value of the region that with the smallest variance.
Collaboration diagram for Kuwahara Filter (2D):Functions | |
| template<class T > | |
| RES_T | kuwaharaFilter (const Image< T > &imIn, const int radius, Image< T > &imOut) |
| kuwaharaFilter Kuwahara Filter | |
| template<class T > | |
| RES_T | kuwaharaFilterRGB (const Image< T > &imIn, const int radius, Image< T > &imOut) |
| kuwaharaFilterRGB Kuwahara Filter (color images) | |