dear forum,
I am trying to write some settings to the Summary table of the analyse particles function. This works, but when I save the table, this extra information is gone. Is this expected behaviour? The macro below illustrates the issue. Compare the Summary table with the saved file summary.xls to see what I mean.
Thanks, Martin
homedir = getDirectory("home");
minsize = 10;
maxsize = 250;
settings = "minsize= " + minsize + "\n"
+ "maxsize= " + maxsize + "\n";
run("Blobs (25K)");
setOption("BlackBackground", true);
run("Make Binary");
run("Analyze Particles...", "size=&minsize-&maxsize summarize add");
// settings are written to the summary table, but
// are not saved in the summary.xls file ???
print("[Summary]", settings);
selectWindow("Summary");
saveAs("Results", homedir + File.separator + "summary.xls");