diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2015-05-15 14:00:46 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <wjp@usecode.org> | 2015-05-15 14:00:46 +0200 |
commit | 23298309722d3608770f2f34956881b37f4319e6 (patch) | |
tree | cfd2a3453b893e2b5da99f1b14f4126c0a4642bd /samples | |
parent | 86ad56f005d9d3871f654390739459d5634dd5d5 (diff) | |
parent | a6bdde8d391566972642090cb71cf752da92f69a (diff) | |
download | astra-23298309722d3608770f2f34956881b37f4319e6.tar.gz astra-23298309722d3608770f2f34956881b37f4319e6.tar.bz2 astra-23298309722d3608770f2f34956881b37f4319e6.tar.xz astra-23298309722d3608770f2f34956881b37f4319e6.zip |
Merge pull request #49 from 3cHeLoN/astra-spot
Astra spot
Diffstat (limited to 'samples')
-rw-r--r-- | samples/matlab/s017_opTomo.m | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/samples/matlab/s017_opTomo.m b/samples/matlab/s017_opTomo.m new file mode 100644 index 0000000..891a93d --- /dev/null +++ b/samples/matlab/s017_opTomo.m @@ -0,0 +1,62 @@ +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2015, iMinds-Vision Lab, University of Antwerp +% 2014-2015, CWI, Amsterdam +% License: Open Source under GPLv3 +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- + +% This sample illustrates the use of opTomo. +% +% opTomo is a wrapper around the FP and BP operations of the ASTRA Toolbox, +% to allow you to use them as you would a matrix. +% +% This class requires the Spot Linear-Operator Toolbox to be installed. +% You can download this at http://www.cs.ubc.ca/labs/scl/spot/ + +% load a phantom image +im = phantom(256); +% and flatten it to a vector +x = im(:); + +%% Setting up the geometry +% projection geometry +proj_geom = astra_create_proj_geom('parallel', 1, 256, linspace2(0,pi,180)); +% object dimensions +vol_geom = astra_create_vol_geom(256,256); + +%% Generate projection data +% Create the Spot operator for ASTRA using the GPU. +W = opTomo('cuda', proj_geom, vol_geom); + +p = W*x; + +% reshape the vector into a sinogram +sinogram = reshape(p, W.proj_size); +imshow(sinogram, []); + + +%% Reconstruction +% We use a least squares solver lsqr from Matlab to solve the +% equation W*x = p. +% Max number of iterations is 100, convergence tolerance of 1e-6. +y = lsqr(W, p, 1e-6, 100); + +% the output is a vector, so we reshape it into an image +reconstruction = reshape(y, W.vol_size); + +subplot(1,3,1); +imshow(reconstruction, []); +title('Reconstruction'); + +subplot(1,3,2); +imshow(im, []); +title('Ground truth'); + +% The transpose of the operator corresponds to the backprojection. +backProjection = W'*p; +subplot(1,3,3); +imshow(reshape(backProjection, W.vol_size), []); +title('Backprojection'); |