Created
November 9, 2012 17:47
-
-
Save ctrueden/4047102 to your computer and use it in GitHub Desktop.
Fiji bug #528 (http://fiji.sc/bugzilla/show_bug.cgi?id=528)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| IJ=/Applications/Science/Fiji.app/Contents/MacOS/ImageJ-macosx | |
| PATH=/Users/curtis/Desktop | |
| $IJ -macro $PATH/macro1.ijm | |
| read -n1 -r -p "Press any key to continue..." key | |
| $IJ -macro $PATH/macro2.ijm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| out = "/Users/curtis/Desktop/image1.tif"; | |
| saveAs("Tiff", out); | |
| //args = "save=[&out] compression=Uncompressed"; | |
| //run("Bio-Formats Exporter", args); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| out = "/Users/curtis/Desktop/image2.tif"; | |
| saveAs("Tiff", out); | |
| //args = "save=[&out] compression=Uncompressed"; | |
| //run("Bio-Formats Exporter", args); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment