ImgDilate |
Top Previous Next |
Prototype
ImgDilate(intImageHandle)
Description
Dilates a monochrome image. For each edge pixel found, surrounding pixels are added thereby increasing the size of connected components.
Parameters
intImageHandle: integer value corresponding to the image handle.
Returned value
None.
Notes
See also opposite function ImgErode.
Example
// Dilate the image ImgDilate(_CurrentImage); |