I'm a new Octave user, I tried to use the function iradon in the image
package.

There was an error when you choose the Hann filter for the filtered back
projection.
I solved the problem changing the 127 th line code in the rho_filter.m file.

before
-------------
elseif (strcmpi (type, 'hann'))
filt = fftshift (*hann *(length (rho)));


after
-------------
elseif (strcmpi (type, 'hann'))
filt = fftshift (*hanning *(length (rho)));


the hann function doesn't exists in the image package.


I hope this is an useful information.
Regards
Ale

-- 

This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately and delete the
original. Any other use of the email by you is prohibited.
------------------------------------------------------------------------------
RSA(R) Conference 2012
Mar 27 - Feb 2
Save $400 by Jan. 27
Register now!
http://p.sf.net/sfu/rsa-sfdev2dev2
_______________________________________________
Octave-dev mailing list
Octave-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/octave-dev

Reply via email to