Why isn't FANBEAM linear?
Show older comments
From the test below (R2013a), it appears that the FANBEAM tomographic projection function doesn't satisfy linearity/superposition with high accuracy
errfunc=@(a,b) norm(a(:)-b(:))/norm(b(:));
I1=rand(100);
I2=rand(100);
F=@(z) fanbeam(z,100);
>> errfunc(F(I1)+F(I2) , F(I1+I2)) %relative error calculation
ans =
0.0015
Conversley, the RADON tomographic projector shows a lot more linearity,
R=@(z) radon(z);
>> errfunc(R(I1)+R(I2) , R(I1+I2))
ans =
9.4304e-16
Why is this?
Answers (0)
Categories
Find more on Morphological Operations in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!