2
我沒有發佈整個代碼,因爲它大部分是不相關的。我只需要幫助中心形象。如何居中繪製的圖像?
ra_new2=cat['ra'][z&lmass&ra&dec][i]
dec_new2=cat['dec'][z&lmass&ra&dec][i]
target_pixel_x = ((ra_new2-ra_ref)/(pixel_size_x))+reference_pixel_x
target_pixel_y = ((dec_new2-dec_ref)/(pixel_size_y))+reference_pixel_y
fig = plt.figure(figsize=(5.,5.))
galaxy=plt.imshow(img[target_pixel_x-200:target_pixel_x+200, target_pixel_y-
200:target_pixel_y+200], vmin=-0.01, vmax=0.1, cmap='Greys')
plt.show()
plt.imshow是我想要的中心。它正確繪製了所有的圖,但情節在左下角。我如何把它放在圖形窗口的中間?我需要這個,以便我可以調整縮放的參數。