1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
%--------------------------------------------------------------------------
% Clears and frees memory of all objects (data, projectors, algorithms)
% currently in the astra-library.
%--------------------------------------------------------------------------
%--------------------------------------------------------------------------
% This file is part of the ASTRA Toolbox
%
% Copyright: 2010-2017, iMinds-Vision Lab, University of Antwerp
% 2014-2017, CWI, Amsterdam
% License: Open Source under GPLv3
% Contact: astra@uantwerpen.be
% Website: http://www.astra-toolbox.com/
%--------------------------------------------------------------------------
fprintf('Testing basic CPU 2D functionality...')
vg = astra_create_vol_geom(2, 32);
pg = astra_create_proj_geom('parallel', 1, 32, [0]);
proj_id = astra_create_projector('line', pg, vg);
vol = rand(2, 32);
[sino_id, sino] = astra_create_sino(vol, proj_id);
astra_mex_data2d('delete', sino_id);
astra_mex_projector('delete', proj_id);
err = max(abs(sino - sum(vol)));
if err < 1e-6
disp('Ok')
else
disp('Error')
end
|