Mercurial > repos > iuc > imagej2_create_image
view jython_script.py @ 3:bb65623b90a8 draft
planemo upload commit 8f8692e83217a072a3ed928469621f1f606ab28a-dirty
| author | iuc |
|---|---|
| date | Tue, 04 Aug 2015 11:15:10 -0400 |
| parents | dfe318d97378 |
| children |
line wrap: on
line source
import sys from ij import IJ # Fiji Jython interpreter implements Python 2.5 which does not # provide support for argparse. title = sys.argv[ -6 ] width = int( sys.argv[ -5 ] ) height = int( sys.argv[ -4 ] ) depth = int( sys.argv[ -3 ] ) type = sys.argv[ -2 ].replace( '_', ' ' ) tmp_image_path = sys.argv[ -1 ] imp = IJ.newImage( title, type, width, height, depth ) IJ.save( imp, "%s" % tmp_image_path )
