Skip to content

will-henney/fits2image

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Convert a FITS file to an image file

import sys
import numpy as np
try:
    from astropy.io import fits
except ImportError:
    import pyfits as fits
from PIL import Image

# Read command line arguments
try:
    fitsfilename = sys.argv[1]
    vmin, vmax = float(sys.argv[2]), float(sys.argv[3])
except IndexError:
    sys.exit('Usage: ' + sys.argv[0] + ' FITSFILENAME VMIN VMAX')

# Try to read data from first HDU in fits file
data = fits.open(fitsfilename)[0].data
# If nothing is there try the second one
if data is None:
    data = fits.open(fitsfilename)[1].data

# Clip data to brightness limits
data[data > vmax] = vmax
data[data < vmin] = vmin
# Scale data to range [0, 1] 
data = (data - vmin)/(vmax - vmin)
# Convert to 8-bit integer  
data = (255*data).astype(np.uint8)
# Invert y axis
data = data[::-1, :]

# Create image from data array and save as jpg
image = Image.fromarray(data, 'L')
imagename = fitsfilename.replace('.fits', '.jpg')
image.save(imagename)

Test it out with Python 2.7

source activate py27
D=~/Dropbox/OrionMuse/LineMaps
python fits2image.py $D/linesum-O_II-7318-bin001.fits 0 1.5e6

About

Convert a FITS file to a grayscale jpeg image

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages