Open the python console and enter this:
Where you replace "5" by the image ID, which is the number you find in the title bar:
Then to get your pixel count:
If you want to redo this for another selection, just repeat that last line after changing the selection, since the image will be the same.
To be a bot more complete, in the histogram call, the args are:
It is of course also easy to format this output differently, and writing a script to write the values to file wouldn't be difficult.
Here is how the API and the GUI relate:
Code:
image=image=[x for x in gimp.image_list() if image.ID==5][0]
Then to get your pixel count:
Code:
pdb.gimp_drawable_histogram(image.active_layer,0,0.,1.)[3]
If you want to redo this for another selection, just repeat that last line after changing the selection, since the image will be the same.
To be a bot more complete, in the histogram call, the args are:
- The layer/drawable for which you want statistics
- A channel identifier (Value (maxOf(R,G,B), Red, Green, Blue, Alpha, Luminance)
- The minimum value you want inlcuded
- The maximum value you want inlcuded (so you define a range between these two), like with the handles in the
- histogram display
- Average value
- Standard deviation
- Median value
- Pixel count for the whole selection (range not taken in account)
- Pixels count for the pixels within range
- Ratio of the two previous values
It is of course also easy to format this output differently, and writing a script to write the values to file wouldn't be difficult.
Here is how the API and the GUI relate: