ImageTColor, TDepthSmoothBlur Method (Int32, Int32, Boolean) |
http://www.emgu.com
Summation over a pixel param1 x param2 neighborhood. If scale is true, the result is subsequent scaled 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,
bool scale
)
Public Function SmoothBlur (
width As Integer,
height As Integer,
scale As Boolean
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ SmoothBlur(
int width,
int height,
bool scale
)
member SmoothBlur :
width : int *
height : int *
scale : bool -> Image<'TColor, 'TDepth>
Parameters
- width
- Type: SystemInt32
The width of the window - height
- Type: SystemInt32
The height of the window - scale
- Type: SystemBoolean
If true, the result is subsequent scaled by 1/(param1 x param2)
Return Value
Type:
ImageTColor,
TDepthThe result of blur
See Also