Differences between revisions 4 and 5
Revision 4 as of 2009-04-20 17:59:56
Size: 1436
Comment:
Revision 5 as of 2009-04-20 18:17:04
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 =

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

   1 # save a single image
   2 a = test_image()
   3 from emsave import save_data
   4 save_data(a)
   5 
   6 # save a list of images as a stack
   7 b = test_image(2)
   8 save_data([a,b])

EMAN2/ImageFormats (last edited 2024-02-01 04:08:01 by SteveLudtke)