bug in "Merge Channels" with batch mode ?
Posted by lechristophe on Mar 19, 2009; 11:41am
URL: http://imagej.273.s1.nabble.com/bug-in-Merge-Channels-with-batch-mode-tp3693257.html
I don't understand why the following macro closes the source image and just
displays the "RGB" merged image (use any RGB image as the source) :
macro "test" {
setBatchMode(true);
run("Duplicate...", "title=temp");
run("Split Channels");
run("Merge Channels...", "red=[temp (red)] green=[temp (green)] blue=[temp
(blue)]");
setBatchMode("exit and display");
}
tested with IJ 1.42k and the latest daily build.
Is it a bug or is there something I don"t get in the way the batch mode
works ?