RGB 图像组件未对齐

RGB image components misaligned

我正在使用 aplypy 从三个 FITS 文件创建鹰星云的 RGB 图像,代表图像的红色、绿色和蓝色分量。 FITS 文件可用 here,673nm 为红色,656nm 为绿色,502nm 为蓝色。

import aplpy
aplpy.make_rgb_cube(['673nmos.fits','656nmos.fits','502nmos.fits'], 'nmod_cube.fits')
aplpy.make_rgb_image('nmod_cube.fits','nmod.png')

f = aplpy.FITSFigure('../data/nmod_cube_2d.fits')
f.show_rgb('../data/output/nmod.png')

图像应该看起来像 this,但结果看起来像下图。蓝色分量与红色和绿色明显错位。

根据 docs

make_rgb_cube 应该根据每个 FITS header 中的 WCS 信息将三个图像重新对齐到同一投影中,但事实并非如此在这种情况下似乎有效。

是否需要使用星标匹配库来获得对齐精度?

Blue FITS 文件 header 中的 WCS 坐标有误。我已经联系 spacetelescope.org 提醒他们。

M17 the site 的另一个示例是使用问题中显示的 aplpy 脚本正确创建的。按照评论中的建议,使用 DS9 闪烁通过每个过滤器,确认正确对齐。

使用STScI软件TweakReg to align the images and get a good alignment before combining. More information and worked examples can be found on the DrizzlePac website

TweakReg:

Combining images using astrodrizzle requires that the WCS information in the headers of each input image align to within sub-pixel accuracy. The tweakreg task allows the user to align sets of images to each other and/or to and external astrometric reference frame or image.

它针对与 HST 仪器的使用进行了优化,但也可以适用于其他 observatories/instruments。