MATLAB: Anyone can tell me about radon transform

compressed sensingcompressive sensingimage processingradon transform

I = imread('peppers.bmp');
A = im2double (I);
R = radon (A,0:180);
P = iradon (R,0:180);
this is the coding i use for radon transform and its inverse. the resulting image for theta 180 degree much clear rather than 90 degree. i don't understand the situation. why it is happen? thank you for your help.

Best Answer

The more angles you have, the more data is sampled, the higher quality an image you recover.
What are you trying to accomplish?
Related Question