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
which function is the equivalent in Matlab?
Thank you in advance!