Prototype
ImgGrayDespeckle(intImageHandle, intIterations)
Description
It despeckles the grayscale image.
Parameters
intImageHandle: integer value corresponding to the image handle.
intItarations: number of Iterations of the internal algorithm; increasing the number of iterations, the procedure is more precise, but it is also slower.
Returned value
None.
Notes
None.
Example
//Despeckling only gray image
if ImgGetBitsPixel(_CurrentImage)=8
then ImgGrayDespeckle(_CurrentImage,1);