ImgMeanFilter
Previous  Top  Next

Prototype

ImgMeanFilter(intImageHandle, intWidth, intHeight)

Description

It apply a mean 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

Returned value

None.

Notes

None. 

Example

//It apply a 3x3 mean filter on the image
ImgMeanFilter(_CurrentImage, 3, 3);