Prototype
ImgMedianFilter(intImageHandle, intWidth, intHeight, intBias)
Description
It apply a median filter on grayscale or color images.
Parameters
intImageHandle: integer value corresponding to the image handle.
intWidth: the widht of the filter
intHeight: the height of the filter
intBias: the bias value to be added to each pixel
Returned value
None.
Notes
None.
Example
//It apply a 3x3 median filter on the image
ImgMedianFilter(_CurrentImage, 3, 3, 0);