我想知道是否有人遇到过这个问题。
我可以从类似于原始图像的 matlab 重建图像,但是,实际值总是不同的。
例如,原始图像在矩阵中的值范围为 0 到 1,而我的重建图像的范围为 -0.2 到 0.4。
重建的图像看起来与原始图像相似,只是图像中的数据具有不同的比例。
这是我的意思的示例代码。
p=phantom(64);
theta=0:1:179;
r=radon(p,theta);
ir=iradon(r,theta);
figure
subplot(1,2,1);imagesc(p)
subplot(1,2,2);imagesc(ir)