ImgRemoveSmallBlobs |
Top Previous Next |
Prototype
ImgRemoveSmallBlobs(HandleImage,intMinWidth,intMinHeight)
Description
This function remove the elements of size smaller than those indicated in parameters.
Parameters
HandleImage: integer value corresponding to image handle.
IntMaxWidth: integer value corresponding to maximum width of element to remove
IntMaxHeight: integer value corresponding to maximum height of element to remove
Returned value
None
Notes
None.
Example
// Remove all elements smaller than 10 x 10 pixel ImgRemoveSmallBlobs(_CurrentImage,10,10); |