CImage:CreatePixelMaskHigh
The CreatePixelMaskHigh method creates a pixel mask file containing the coordinates of pixels having values above a threshold value.
bSuccess = CImage:CreatePixelMaskHigh( sMask, vHigh, CRect=nil ) |
This method produces a text file consisting of pixel coordinate pairs, one per line, in the form column, row. This format is described in the topic Pixel Mask File.
The following script fragment makes a pixel mask containing the coordinates of pixel values above 2000. The entire image is sampled because the CRect R is not specified:
|
-- Create a CImage |
|
-- Open the image from sPath. |
|
-- create the pixel mask |
|
-- delete the CImage from memory |