1. 程式人生 > >Python--顯示fits檔案

Python--顯示fits檔案

讀取fits檔案後想要顯示fits檔案中的內容,主要的連結:http://www.astropy.org/astropy-tutorials/FITS-images.html

讀取的fits中的資料:image_data

import matplotlib.pyplot as plt

plt.imshow(image_data, cmap='gray')
plt.colorbar()
plt.show()

結果: