[ImageJ-bugs] [Bug 949] Non-functional color annotation merge
bugzilla at fiji.sc
bugzilla at fiji.sc
Wed Oct 29 05:43:14 CDT 2014
http://fiji.sc/bugzilla/show_bug.cgi?id=949
Jan Eglinger <jan.eglinger at uni-duesseldorf.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jan.eglinger at uni-duesseldor
| |f.de
--- Comment #2 from Jan Eglinger <jan.eglinger at uni-duesseldorf.de> ---
I believe this is intended behaviour. The following macro shows what I think
Claudia is describing:
run("Fluorescent Cells (400K)");
run("Split Channels");
run("Merge Channels...", "c1=C3-FluorescentCells.tif
c2=C2-FluorescentCells.tif c3=C1-FluorescentCells.tif create");
Note that in the resulting image, the channel order has changed to
[blue-green-red] from [red-green-blue] in the original image ("Fluorescent
Cells").
The ImageJ User Guide states this [*1*]:
> When creating composite images, original LUTs and display ranges are preserved unless Ignore source LUTs is checked.
If you want to change the colors in addition to the channel order, you need to
activate the "Ignore source LUTs" option. The following macro should produce
the result you expect (i.e. swapping the red and blue channels):
run("Fluorescent Cells (400K)");
run("Split Channels");
run("Merge Channels...", "c1=C3-FluorescentCells.tif
c2=C2-FluorescentCells.tif c3=C1-FluorescentCells.tif create ignore");
Hope that helps.
Jan
[*1*]: http://imagej.net/docs/guide/146-28.html#sub:Merge-Channels...
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://imagej.net/pipermail/imagej-bugs/attachments/20141029/40969019/attachment.html>
More information about the Imagej-bugs
mailing list