Size: 1124
Comment:
|
Size: 1508
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
<<TableOfContents>> = Table of supported image formats in EMAN2 = |
|
Line 24: | Line 28: |
= Saving EMData from Python = If you want to be prompted to supply a image name using a standard dialog use this approach {{{#!python # save a single image a = test_image() from emsave import save_data save_data(a) # save a list of images as a stack b = test_image(2) save_data([a,b]) }}} |
Table of supported image formats in EMAN2
Type |
Extension |
Read |
Write |
3D |
stack |
Comments |
MRC |
mrc |
Y |
Y |
Y |
N |
|
Spider |
spi |
Y |
Y |
|
Y |
|
Imagic |
img/hed |
Y |
Y |
|
Y |
|
HDF |
hdf |
Y |
Y |
Y |
Y |
|
DM3 |
dm3 |
|
Y |
|
|
|
TIFF |
tiff/tif |
|
|
|
|
|
PGM |
pgm |
|
|
|
|
|
LST |
lst |
|
|
|
|
|
PIF |
pif |
|
|
|
|
|
VTK |
|
|
|
|
|
|
PNG |
png |
|
|
|
|
|
SAL |
|
|
|
|
|
|
ICOS |
|
|
|
|
|
|
EMIM |
|
|
|
|
|
|
Gatan2 |
|
|
|
|
|
|
Amira |
|
|
|
|
|
|
XPLOR |
|
|
|
|
|
|
EM |
em |
|
|
|
|
|
V4L |
|
|
|
|
|
|
JPEG |
jpg/jpeg |
|
|
|
|
|
FITS |
|
|
|
|
|
|
LSTFAST |
|
|
|
|
|
|
Saving EMData from Python
If you want to be prompted to supply a image name using a standard dialog use this approach