Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我cpselect在查找适合格式的图像的控制点选择时遇到问题,此命令无法显示适合格式的图像。通常,我想以合适的格式共同注册两个图像,到目前为止我不知道该怎么做,但是我知道如何使用imtransform和“cp2tform”。
cpselect
imtransform
您需要先读取图像,然后给出cpselect存储图像的变量的名称,而不仅仅是图像的文件名。
先尝试fitsinfo(filename)然后再尝试fitsread- 它可能像这样简单:
fitsinfo(filename)
fitsread
image1 = fitsread('first.fits','image'); image2 = fitsread('second.fits','image'); cpselect(image1,image2);
但是您需要先检查fitsinfo以确定如何处理您的具体情况。
fitsinfo