http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Interpolation type
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public enum SMOOTH_TYPE |
Visual Basic |
---|
Public Enumeration SMOOTH_TYPE |
Visual C++ |
---|
public enum class SMOOTH_TYPE |
Members
Member name | Value | Description | |
---|---|---|---|
CV_BLUR_NO_SCALE | 0 | (simple blur with no scaling) - summation over a pixel param1xparam2 neighborhood. If the neighborhood size may vary, one may precompute integral image with cvIntegral function | |
CV_BLUR | 1 | (simple blur) - summation over a pixel param1xparam2 neighborhood with subsequent scaling by 1/(param1xparam2). | |
CV_GAUSSIAN | 2 | (gaussian blur) - convolving image with param1xparam2 Gaussian kernel. | |
CV_MEDIAN | 3 | (median blur) - finding median of param1xparam1 neighborhood (i.e. the neighborhood is square). | |
CV_BILATERAL | 4 | (bilateral filter) - applying bilateral 3x3 filtering with color sigma=param1 and space sigma=param2. Information about bilateral filtering can be found |