ImgMedianFilter |
Top Previous Next |
Prototype
ImgMedianFilter(intImageHandle, intWidth, intHeight, intBias)
Description
Apply a median filter on grayscale or color images.
Parameters
intImageHandle: integer value corresponding to the image handle.
intWidth: the width 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
// Apply a 3x3 median filter on the image ImgMedianFilter(_CurrentImage, 3, 3, 0); |