ImageTColor, TDepthSmoothBlur Method (Int32, Int32) |
http://www.emgu.com
Summation over a pixel param1 x param2 neighborhood with subsequent scaling by 1/(param1 x param2)
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<TColor, TDepth> SmoothBlur(
int width,
int height
)
Public Function SmoothBlur (
width As Integer,
height As Integer
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ SmoothBlur(
int width,
int height
)
member SmoothBlur :
width : int *
height : int -> Image<'TColor, 'TDepth>
Parameters
- width
- Type: SystemInt32
The width of the window - height
- Type: SystemInt32
The height of the window
Return Value
Type:
ImageTColor,
TDepthThe result of blur
See Also