How to measure area of a color in a stack?
Posted by brian on Jul 14, 2011; 4:05pm
URL: http://imagej.273.s1.nabble.com/How-to-measure-area-of-a-color-in-a-stack-tp3683923.html
Hi, I need to measure the number of pixels that are a certain shade of green in each image of a batch of 100+ color images and have the results listed along with the file labels.
I have tried the following macro:
run("Color Threshold...");
run("Set Measurements...", "area limit display redirect=None decimal=3");
run("Results...");
run("Measure");
run("Open Next");
This will measure just the open image. Tried stacks, but it was too much memory to open all at once...can it open one, measure, record the measurement, then close image and open the next?
Thanks.