a question about counting pixels in an image

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

a question about counting pixels in an image

Aldo Ramos
Hello !!

My name is Aldo Ramos and my question is simple:

How can I count the pixels in an image with a color or
B&W scale criteria?

Thank you all very much !!!

__________________________________________________
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis!
Regístrate ya - http://correo.yahoo.com.mx/ 
Reply | Threaded
Open this post in threaded view
|

AW: a question about counting pixels in an image

Barthel, Kai Uwe
You can use the 3D color inspector.

Kai
 

>
> Hello !!
>
> My name is Aldo Ramos and my question is simple:
>
> How can I count the pixels in an image with a color or
> B&W scale criteria?
>
> Thank you all very much !!!
>
> __________________________________________________
> Correo Yahoo!
> Espacio para todos tus mensajes, antivirus y antispam ¡gratis!
> Regístrate ya - http://correo.yahoo.com.mx/
Reply | Threaded
Open this post in threaded view
|

Re: a question about counting pixels in an image

Wayne Rasband
In reply to this post by Aldo Ramos
> My name is Aldo Ramos and my question is simple:
>
> How can I count the pixels in an image with a
> color or B&W scale criteria?

Use Analyze>Histogram or a simple macro like this:

       getRawStatistics(pixelCount);
       print("Pixel count: ", pixelCount);

-wayne