Median

Median()

The median filter run through each element of the image and replace each pixel with the median of its neighboring pixels.

public static PreprocessingFilter Median()

Return Value

MedianFilter object.

See Also


Median(Rectangle)

The median filter run through each element of the image part and replace each pixel with the median of its neighboring pixels.

public static PreprocessingFilter Median(Rectangle area)
ParameterTypeDescription
areaRectangleCoordinates of the part of the image to be corrected.

Return Value

MedianFilter object.

See Also