<< quaternion_multiply SIP - Scilab Image Processing Toolbox rgb2hsv >>

SIP - Scilab Image Processing Toolbox >> SIP - Scilab Image Processing Toolbox > radon

radon

Radon transform

Calling Sequence

R = radon(im,theta)

Parameters

im
2D image array
theta
vector representing the angles, in degrees. Defaults to 0:179. If it is a scalar, then a column vector with the corresponding projection is returned.

Parameters

R
matrix in which each column contains the Radon transform for an angle.

Description

The Radon transform is the projection of the image intensity along a radial line oriented at a specific angle

Examples

im = zeros(100,100);
im(25:75,25:75) = 1;
r=radon(im);
imshow(r,[])

im2 = iradon(r);
clf
imshow(im2,[])

Authors

Bibliography

"The Radon Transform: Theory and Implementation", Peter Toft, PhD Thesis, Technical University of Denmark, 1996: http://pto.linux.dk/PhD/

Availability

The latest version of the Scilab Image Processing toolbox can be found at

http://siptoolbox.sourceforge.net

See Also


<< quaternion_multiply SIP - Scilab Image Processing Toolbox rgb2hsv >>