h a l f b a k e r yactual product may differ from illustration
add, search, annotate, link, view, overview, recent, by name, random
news, help, about, links, report a problem
browse anonymously,
or get an account
and write.
register,
|
|
|
A freely downloadable program that analyses a digital image and reports the number of pixels of a certain colour, for example how many black pixels in a simple monochrome Rorschach image.
WIKI Image processing
http://en.wikipedia...ogram-Based_Methods Histogram-Based Methods [Dub, Sep 12 2007]
ImageMagick image processing software
http://www.imagemag...nd-line-options.php The -identify -verbose options do, among other things, print a histogram. A little bit of programming should take it from there. And, yes, it's free. [jutta, Sep 13 2007]
Please log in.
If you're not logged in,
you can see what this page
looks like, but you will
not be able to add anything.
Annotation:
|
|
What is the benefit of this? |
|
|
I'd be surprised if Photoshop doesn't already have a feature that determines area of a selected picture region. You might need to first perform a filter on the picture to isolate pixels of a particular colour. |
|
|
Very baked - Most serious image processing packages include a histogramming feature - Can be very handy for all sorts of things -
Perhaps [Texticle]'s thinking of it as a form of compression? - Save the histogram data, as it contains a highly compressed version of the image data... |
|
|
Even if Photoshop does have a feature like this, Photoshop isn't really freely downloadable. |
|
|
Unless you're after a histogram, not seeing the point of this either. |
|
|
I bet The Gimp has this same feature. But I can't be bothered to look. |
|
|
Also, what is "black"? Is it only pixels with #000000? What about #010101? |
|
|
I could see this as being useful if you counted pixels of a particular range. Like if you want to count everything from #000000 to #330000 you could essentially capture everything that was black or close to being black. But as the author of this invention stated, this would be for MONOCHROME pictures so black pixels are the only thing you are going to have on the screen anyhow. |
|
|
But you are making a judgment call there. #330000 looks like really dark red to me.
But if this is monocrome it could work. |
|
|
Of course I still don't really see the point. |
|
|
Texticle, why do you want to know the number of pixels of a specific color in an image? |
|
|
One of the many applications would be area computation. Take a monochrome image of an island (sea is white and land is black) where the scale is known, get the Pixel Counter to tell you how many black pixels, equate that to area and viola! |
|
|
Simple. Just count black pixels. In monochrome white is RGB(255,255,255) and black is RGB(0,0,0). At least they were the last time I checked. |
|
|
Photoshop, histograms etc. You guys crack me up. |
|
|
I would try doing this with ImageMagick, your basic command line do-everything free software thing in that space. |
|
|
I still don't get it. I guess I've never needed that information, and probably never will. |
|
|
counter=0
image = open(imagefile)
for pixel in image:
->if pixel=black:
--->counter=counter+1
print counter
|
|
|
That's pseudocode, but it's darn near valid Python. The actual program wouldn't be much different from that in size or appearance. |
|
|
<edit... much later>
import Image
pic = Image.open( "filename.jpg" )
imgdata = pic.load()
xsize, ysize = pic.size
searchcolor = (0,0,0)
counter = 0
for x in xrange(xsize):
...for y in xrange(ysize):
......if imgdata[x,y] == searchcolor:
.........counter+=1
|
|
|
I had to write it last night for comparing hot pixels in a couple of digital cameras. That now *is* valid Python. (Jul 19 2008)
</e.ml> |
|
|
ImageJ. provided free by the NIH. this program can do this and much more
http://rsb.info.nih.gov/ij/ |
|
|
i need to find out how many % of a wall is shaded at different times of the day.
i capture images of the wall and make the image black and white. process it through pixel counter which will quickly tell me the % of wall that is shaded. |
|
|
i will download and see if ImageJ does this for now. |
|
|
Why would anyone need to know that? |
|
|
GIMP has it, is freely downloadable. |
|
|
Hi, guys
I need a pixel counter right now!!! :-)
I searched it at PSP, Photoshop, LView, GIMP... None has it.
I need a pixel counter because I love tapestry. So I drawed a rug to embroid and give for my 5 y.o. grandson. I did it on Windows Paint, and you can see it at my Flickr (Please, see the link to image at my profile.). |
|
|
So,
The rug size is 159 x 299 pixels, and it will be 0,80 x 1,50 m when embroided.
Each pixel = each stitch.
There are 24 colors.
As I know, 1m² = 40000 stitches (or pixels) = 1,5 kg of wool.
So, if 1,2 m² = 47541 stitches (or pixels) = 1,8 kg of wool,
I ask you:
- How many black (#000000) wool do I need to buy?
- How many dark grey (#808080) wool do I need to buy?
- How many light grey (#C0C0C0) wool do I need to buy?
(Other colors I don't need to buy).
Thank you a lot. |
|
|
If I'm using Photoshop's histogram tool correctly, there are 26015 mid grey pixels in your drawing, 4035 light grey ones, and 2634 black ones. |
|
|
(Step 1: Select > Color range for the range you want to count. Step 2: in the "Window" menu, select the "Histogram" tool. Step 3: Find the "Histogram" tab; among other things, it shows the number of currently selected pixels.) |
|
|
Great, Jutta!!! :-)
I hope you did it correctly.
You also taught me to fish!
So, answering my questions, I will need to buy 100gr of black wool, 1 kg of dark grey and 155gr of light grey this afternoon. :-) |
|
|
Area calculation based on pixels:
I ould like to mention that you can use lurch his code to calculate areas of stuff in a bitmap image by counting the pixels. |
|
|
Many thanks to lurch for the python code. |
|
| |