Click or drag to resize

SmoothType Enumeration

http://www.emgu.com
Interpolation type

Namespace:  Emgu.CV.CvEnum
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public enum SmoothType
Members
  Member nameValueDescription
BlurNoScale0 (simple blur with no scaling) - summation over a pixel param1 x param2 neighborhood. If the neighborhood size may vary, one may precompute integral image with cvIntegral function
Blur1 (simple blur) - summation over a pixel param1 x param2 neighborhood with subsequent scaling by 1/(param1 x param2).
Gaussian2 (Gaussian blur) - convolving image with param1 x param2 Gaussian kernel.
Median3 (median blur) - finding median of param1 x param1 neighborhood (i.e. the neighborhood is square).
Bilateral4 (bilateral filter) - applying bilateral 3x3 filtering with color sigma=param1 and space sigma=param2. Information about bilateral filtering can be found
See Also