1

I have the following code

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

how can I apply auto-correlation on this radon transformation of an image?

I have the following mathematical formula which describes the process I need:

where g(s,0) is the radon transformation where g(s,0) is the radon transformation

which function is the equivalent in Matlab?

Thank you in advance!

4

1 回答 1

1

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

于 2013-10-10T08:49:10.870 回答