How to correctly combine PNG and FITS data into one Matplotlib figure in Python?

522 Views Asked by At

I have a FITS file of 4545x4545 pixels with a header containing its coordinate system. Since DS9 (another software to view and handle FITS images) handles the color map scaling better, I had the idea of:

  1. open the FITS file using DS9 to tweak the color map of the image,
  2. save this image in a PNG file,
  3. load this PNG file in matplotlib and add the header from the original FITS file, so I can add the coordinate system to the PNG file.

But the coordinates are not showing correctly, because the pixelization changes to different values in every step. How can I do this correctly?

This the relevant part of my code:

from astropy.io import fits
import matplotlib.pyplot as plt
import aplpy
from wcsaxes import WCSAxes
from astropy import wcs
import sys
import matplotlib.image as mpimg

image_fits = 'image_in.fits'
image_png = 'image_in.png' # this came from the one before, has different pixelization

image_data_png = mpimg.imread(image_png)
image_head_fits = fits.getheader(image_fits)
hdu_list = fits.open(image_fits)

F = aplpy.FITSFigure(hdu_list, figure=plt.figure(1))

fig = plt.figure()
mywcs = wcs.WCS(image_head_fits)
ax = WCSAxes(fig,[0.1, 0.1, 0.8, 0.8],wcs=mywcs)

fig.add_axes(ax)

ax.imshow(image_data_png)

plt.savefig('image_out.png')
0

There are 0 best solutions below