|
Dear ImageJ experts,
i'd like to code a macro for ImageJ but i'm very low skileld in programmin...
What i'd like to do is to auto-perform some analysis on multiple images inside a folder, and print the result in a .txt file for each image
the analysis i have to run looks like this:
run("Analyze Particles...", "size=0-Infinity circularity=0.00-1.00 show=Nothing summarize");
run("Gray Morphology", "radius=0.5 type=square operator=open");
run("Analyze Particles...", "size=0-Infinity circularity=0.00-1.00 show=Nothing summarize");
run("Gray Morphology", "radius=1.0 type=square operator=open");
run("Analyze Particles...", "size=0-Infinity circularity=0.00-1.00 show=Nothing summarize");
run("Gray Morphology", "radius=1.5 type=square operator=open");
run("Analyze Particles...", "size=0-Infinity circularity=0.00-1.00 show=Nothing summarize");
i don't know how to code the macro for the batch process, and how to auto-save the Analyze Particles Summary for each image
could you help me?
thank you
Nik
|