diff options
author | Daniil Kazantsev <dkazanc@hotmail.com> | 2017-08-03 00:10:53 +0100 |
---|---|---|
committer | Daniil Kazantsev <dkazanc@hotmail.com> | 2017-08-03 00:10:53 +0100 |
commit | cbeb8a1174498751e38a3de8cd6fe55abae20192 (patch) | |
tree | 77f719e68fa86e4357b7d705f150cc2d402032fd /demos/DemoRD2.m | |
parent | d9e090a5e56de630f85f0bd4238991fb307ce46b (diff) | |
download | regularization-cbeb8a1174498751e38a3de8cd6fe55abae20192.tar.gz regularization-cbeb8a1174498751e38a3de8cd6fe55abae20192.tar.bz2 regularization-cbeb8a1174498751e38a3de8cd6fe55abae20192.tar.xz regularization-cbeb8a1174498751e38a3de8cd6fe55abae20192.zip |
some cleaning inside C functions, updated mex_compile file and the work on ordered-subset FISTA started
Diffstat (limited to 'demos/DemoRD2.m')
-rw-r--r-- | demos/DemoRD2.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/DemoRD2.m b/demos/DemoRD2.m index 0db3595..293c1cd 100644 --- a/demos/DemoRD2.m +++ b/demos/DemoRD2.m @@ -30,7 +30,7 @@ Weights3D = single(data_raw3D); % weights for PW model clear data_raw3D %% % set projection/reconstruction geometry here -Z_slices = 3; +Z_slices = 20; det_row_count = Z_slices; proj_geom = astra_create_proj_geom('parallel3d', 1, 1, det_row_count, size_det, angles_rad); vol_geom = astra_create_vol_geom(recon_size,recon_size,Z_slices); @@ -44,7 +44,7 @@ clear params params.proj_geom = proj_geom; % pass geometry to the function params.vol_geom = vol_geom; params.sino = Sino3D; -params.iterFISTA = 35; +params.iterFISTA = 1; params.weights = Weights3D; params.show = 1; params.maxvalplot = 2.5; params.slice = 2; |