[ImageJ-bugs] [Bug 990] Mac OS out of memory
bugzilla at fiji.sc
bugzilla at fiji.sc
Wed Jan 21 20:54:40 CST 2015
http://fiji.sc/bugzilla/show_bug.cgi?id=990
Wayne Rasband <wsr at nih.gov> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wsr at nih.gov
--- Comment #1 from Wayne Rasband <wsr at nih.gov> ---
Could you provide a small test macro that we can use to reproduce this problem?
The following macro works as expected. The memory used by the four 512x512x100
temporary stacks it opens (25MB each) is reclaimed.
newImage("Montage", "8-bit ramp", 1024, 1024, 100);
x=0; y=0
for (i=0; i<4; i++) {
newImage("Stack", "8-bit ramp", 512, 512, 100);
run("Insert...", "source=Stack destination=Montage x=&x y=&y");
close();
x += 512;
if (x==1024) {
x = 0;
y += 512;
}
}
setBatchMode(false);
--
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/20150122/8d2d60af/attachment.html>
More information about the Imagej-bugs
mailing list