cvGaussianBlur¶
-
MLModule
¶ author MeVis Medical Solutions AG
package MeVisLab/Standard
dll MLOpenCVModules
definition MLOpenCVModules.def
Purpose¶
The module cvGaussianBlur
blurs an image using a 2D Gaussian filter.
Note: This module only works on images with the data type uint8, uint16, float, and double.
Parameter Fields¶
Visible Fields¶
Kernel Size X¶
Kernel Size Y¶
Sigma X¶
-
name:
sigmaX
, type:
Double
, default:
0
, minimum:
0
¶ Sets the Gaussian kernel standard deviation in the x-direction.
Sigma Y¶
-
name:
sigmaY
, type:
Double
, default:
0
, minimum:
0
¶ Sets the Gaussian kernel standard deviation in the y-direction.
If sigmaY is zero, it is set to be equal to sigmaX; if both sigmas are zero, they are computed from kernelSizeX and kernelSizeY, respectively.
To maintain full control over the result, regardless of potential future modifications to these semantics, it is recommended to specify all of kernelSizeX, kernelSizeY, sigmaX, and sigmaY.