[ImageJ-bugs] [Bug 1032] I'm trying to merge two images (1 gb each, tiff files) and Image J processess the top half of the image while the bottom is black.

bugzilla at fiji.sc bugzilla at fiji.sc
Thu Mar 26 15:49:28 CDT 2015


http://fiji.sc/bugzilla/show_bug.cgi?id=1032

--- Comment #14 from Wayne Rasband <wsr at nih.gov> ---
You can use the open() function to open images and you can run commands in the
Image>Lookup Tables menu to assign colors to the channels. Here is an example:

    open("");
    rename("c1");
    open("");
    rename("c2");
    run("Merge Channels...", "c1=c1 c2=c2 create");
    run("Blue");
    setSlice(2);
    run("Yellow");

The command recorder (Plugins>Macros>Record) is helpful for creating macro
code.

-- 
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/20150326/6c07eda9/attachment.html>


More information about the Imagej-bugs mailing list