如何在Radon变换上进行自相关?

时间:2013-10-10 08:36:25

标签: matlab image-processing

我有以下代码

I = imread('img.jpg');
I = rgb2gray(I);
theta = 1:180;
[R,xp] = radon(I,theta);

如何在图像的氡转换上应用自相关?

我有以下数学公式描述我需要的过程:

where g(s,0) is the radon transformation 其中g(s,0)是氡转换

哪个函数在Matlab中是等价的?

提前谢谢!

1 个答案:

答案 0 :(得分:1)

您可以使用matlab函数进行自动关联:xcorr(R)