cvBilateralFilter¶
-
MLModule
¶ author MeVis Medical Solutions AG
package MeVisLab/Standard
dll MLOpenCVModules
definition MLOpenCVModules.def
Purpose¶
The cvBilateralFilter
wraps the OpenCV 2D bilateralFilter. For details, search on the web for OpenCV bilateralFilter.
It support MLuint8 and MLfloat as input datatypes.
Parameter Fields¶
Visible Fields¶
Diameter¶
-
name:
diameter
, type:
Integer
, default:
5
, minimum:
-1
¶ The pixel diameter of the filter size. If it is negative, it is computed from
Sigma Space
.
Sigma Color¶
-
name:
sigmaColor
, type:
Double
, default:
10
, minimum:
0
¶ Filter sigma in the color space. A larger value of the parameter means that farther colors within the pixel neighborhood (see
Sigma Space
) will be mixed together, resulting in larger areas of semi-equal color.
Sigma Space¶
-
name:
sigmaSpace
, type:
Double
, default:
10
, minimum:
0
¶ Filter sigma in the coordinate space. A larger value of the parameter means that farther pixels will influence each other as long as their colors are close enough (see
Sigma Color
). WhenDiameter
> 0 , it specifies the neighborhood size regardless of sigmaSpace . Otherwise, diameter is proportional to sigmaSpace.