Prototype
ImgErode(intImageHandle)
Description
It erode the monochrome image. If a pixel is part of an edge, it is removed, decreasing the size of connected components.
Parameters
intImageHandle: integer value corresponding to the image handle.
Returned value
None.
Notes
See also opposite function ImgDilate.
Example
//It inverts the image colour
ImgErode(_CurrentImage);
//It shows a message
ApplicationLog(_CurrentAgent,'image erosed!');