Enum SmoothMethod
Specifies the type of smoothing used by Smooth(Arr, Arr, SmoothMethod, Int32, Int32, Double, Double).
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum SmoothMethod : int
Fields
| Name | Description |
|---|---|
| Bilateral | Specifies a bilateral filter with a size1 x size2 square aperture, color sigma = sigma1 and spatial sigma = sigma2. |
| Blur | Specifies a linear convolution with size1 x size2 box kernel (all 1’s) with subsequent scaling by 1 / (size1 x size2). |
| BlurNoScale | Specifies a linear convolution with size1 x size2 box kernel (all 1’s). If you want to smooth different pixels with different-size box kernels, you can use the integral image that is computed using Integral(Arr, Arr, Arr, Arr). |
| Gaussian | Specifies a linear convolution with a size1 x size2 Gaussian kernel. |
| Median | Specifies a median filter with a size1 x size2 square aperture. |