Prototype
ImgDespeckle(intImageHandle, intMaxWidth, intMaxHeight)
Description
It despeckles the image, removing black elements with a maximum predefined size.
Parameters
intImageHandle: integer value corresponding to the image handle.
intMaxWidth: max width of elements that must be deleted (in pixel);
intMaxHeight: max height of elements that must be deleted (in pixel);
Returned value
None.
Notes
None.
Example
// Image despeckling
ImgDespeckle(_CurrentImage,3,3);