ImgMeanFilter |
Top Previous Next |
Prototype
ImgMeanFilter(intImageHandle, intWidth, intHeight)
Description
Apply a mean 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.
Returned value
None.
Notes
None.
Example
// Apply a 3x3 mean filter on the image ImgMeanFilter(_CurrentImage, 3, 3); |