PreprocessingFilter.Median

Median()

中值滤波器遍历图像的每个元素,并用其相邻像素的中值替换每个像素。

public static PreprocessingFilter Median()

返回值

中值过滤器对象。

也可以看看


Median(Rectangle)

中值滤波器遍历图像部分的每个元素,并用其相邻像素的中值替换每个像素。

public static PreprocessingFilter Median(Rectangle area)
范围类型描述
areaRectangle要校正的图像部分的坐标。

返回值

中值过滤器对象。

也可以看看