Click or drag to resize

SmoothType Fields

http://www.emgu.com

The SmoothType type exposes the following members.

Fields
  NameDescription
Public fieldStatic memberBilateral
(bilateral filter) - applying bilateral 3x3 filtering with color sigma=param1 and space sigma=param2. Information about bilateral filtering can be found
Public fieldStatic memberBlur
(simple blur) - summation over a pixel param1 x param2 neighborhood with subsequent scaling by 1/(param1 x param2).
Public fieldStatic memberBlurNoScale
(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
Public fieldStatic memberGaussian
(Gaussian blur) - convolving image with param1 x param2 Gaussian kernel.
Public fieldStatic memberMedian
(median blur) - finding median of param1 x param1 neighborhood (i.e. the neighborhood is square).
Public fieldvalue__
Top
See Also