|
Bugzilla – Bug 906 |
java################### left in /tmp (Suse Linux 13.1) |
Last modified: 2015-02-12 06:37:50 CST |
| ⚠ |
NOTICE! This is a static HTML version of a legacy Fiji BugZilla bug. The Fiji project now uses GitHub Issues for issue tracking. Please file all new issues there. |
| java################### left in /tmp (Suse Linux 13.1) | |
|
|
|
||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||
Created attachment 201 full text of exceptionCreated attachment 202 macro which I was runningMore information: This error occurs when I do: run("Close All"); this also happen when I run it from the menu.Hi everyone, I encounter the exact same problem as Aryeh. I just got the latest stable release of Fiji 2 days ago, and also updated again when the problem started. I am running Fiji on a Windows 7 64-bit system. SCIFIO is by default turned off (I checked). My macro is extremely simple, I just use the Color Deconvolution Plugin repeatedly for some 600 microscopy images (quite large, about 3000x4000). // some directories are retrieved before for(i = 0; i < list.length; i++) { input = dir1+list[i]; print(input); run("Open [Image IO]", "image=["+input+"]"); run("Colour Deconvolution", "vectors=[Embryo Anatomie II] hide"); if(isOpen(4)) { selectImage(4); run("RGB Color"); saveAs("Tiff", dir2 + list[i]); } run("Close All"); } What happens is the following: for every image a directory named java########## (##### being some large number, as it was with Aryeh) is created in my temp directory, contents are further directories src, target, and a file (the culprit) pom.xml. pom.xml starts with about 66kB, but DOUBLES for each image, reaching about 68 MB after 12 images. The execution time increases significantly, so that I have to process the images in chunks of about 10 images. So apparently pom.xml is somehow internally reset after the macro finished (that's how I imagine it). So it seems to me the problem was not yet solved. Or do you have any ideas? Thanks in advance.mone7979 - I was unable to reproduce this on my windows machine with the latest Fiji. I tried running macros and the individual commands, with and without SCIFIO, and the only temporary file I saw pop up was a mapdb file (which SCIFIO does use) that was deleted appropriately when Fiji quit. >I just got the latest stable release Can you clarify which download you used? Was it the "Fiji continuous release"? If not I would recommend trying that, or running Help > Update Fiji. If you're still seeing this problem with the latest Fiji, would you mind creating a minimal script (i.e. one that can be run anywhere without requiring modification - by using the sample images, for example) that causes this problem on your system? Thank you! - Mark P.S. In addition to an up-to-date Fiji, let us know if you have any extra update sites or plugins installed. This info is reported in the Help > Report a Bug dialog from Fiji.Created attachment 229 Minimal example for error reproduction. Contains deconv.ijm macro and an image directory.Created attachment 234 Minimal example for error reproduction. Contains deconv.ijm macro and an image directory.Thanks for the quick follow-up. > did you try to reproduce the error with the colour-deconvolution .jar > that comes when fiji is downloaded? Maybe it's something that only > happens with the download-version of the project webpage, which I had > to use since I had to adapt something in the source code. That theory makes sense. I did not test with the downloaded version. And I could not reproduce the issue with your example macro + files on my OS X system. It would be very helpful if you could verify whether the problem still occurs on your system with the stock Colour Deconvolution JAR, rather than the modified version. Alternately, you can use the File > Make Fiji Package command to zip up your installation, and then upload that somewhere (e.g., Dropbox), which will increase our chances of being able to reproduce.