| pixselect | ctio | pixselect |
pixselect -- List pixel values within a certain range
pixselect images lower upper
For each image in the input list, the pixel coordinates and values are printed on the standard output, if the pixel values are within the range specified by lower and upper .
1.- List all pixels below 100:
ct> pixselect dev$pix 100 INDEF
2.- List all pixels above 1000 in an image subraster:
ct> pixselect dev$pix[51:55,155:151] INDEF 1000
3.- List all pixels between 100 and 1000:
ct> pixselect dev$pix 100 1000
Pixel coordinates of image subsections refer to the coordinate system of the subsection not the coordinate system of the original image.
images.listpixels