[ImageJ-bugs] [Bug 1156] Merge channels with variables does not work any more
bugzilla at fiji.sc
bugzilla at fiji.sc
Fri Sep 11 12:08:33 CDT 2015
http://fiji.sc/bugzilla/show_bug.cgi?id=1156
Wayne Rasband <wsr at nih.gov> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |WORKSFORME
--- Comment #3 from Wayne Rasband <wsr at nih.gov> ---
The Split Channels command, with RGB images, produces files with names like
title+" (red)", etc. You can get it to produce images with names like
"C1-"+title, etc. by converting RGB images to composite color, as in the
following example.
run("Clown (14K)");
if (!is("composite"))
run("Make Composite");
title = getTitle();
run("Split Channels");
t1 = "C1-"+title;
t2 = "C2-"+title;
t3 = "C3-"+title;
run("Merge Channels...", "c1=&t1 c2=&t2 c3=&t3 create keep ignore");
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://imagej.net/pipermail/imagej-bugs/attachments/20150911/7080dbc3/attachment.html>
More information about the Imagej-bugs
mailing list