diff options
author | Willem Jan Palenstijn <WillemJan.Palenstijn@uantwerpen.be> | 2013-07-02 14:13:22 +0000 |
---|---|---|
committer | wpalenst <WillemJan.Palenstijn@uantwerpen.be> | 2013-07-02 14:13:22 +0000 |
commit | 0ac885fcb1f5c34a5cbd5b6a694a8c3177d60192 (patch) | |
tree | 8254d64208901408ad705b545ab662ce94ae1900 /matlab/algorithms | |
parent | b2fc6c70434674d74551c3a6c01ffb3233499312 (diff) | |
download | astra-0ac885fcb1f5c34a5cbd5b6a694a8c3177d60192.tar.gz astra-0ac885fcb1f5c34a5cbd5b6a694a8c3177d60192.tar.bz2 astra-0ac885fcb1f5c34a5cbd5b6a694a8c3177d60192.tar.xz astra-0ac885fcb1f5c34a5cbd5b6a694a8c3177d60192.zip |
Fix typo in 2D DART example script
Diffstat (limited to 'matlab/algorithms')
-rw-r--r-- | matlab/algorithms/DART/examples/example3.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/matlab/algorithms/DART/examples/example3.m b/matlab/algorithms/DART/examples/example3.m index f6e360e..1c04f86 100644 --- a/matlab/algorithms/DART/examples/example3.m +++ b/matlab/algorithms/DART/examples/example3.m @@ -7,7 +7,7 @@ addpath('..'); % % Configuration -proj_count = 30; +proj_count = 20; dart_iterations = 20; filename = 'cylinders.png'; outdir = './'; @@ -55,7 +55,7 @@ D.smoothing.full3d = 'yes'; D.smoothing.gpu_core = gpu_core; D.masking.random = 0.1; -D.masking.conn = 6; +D.masking.conn = 4; D.masking.gpu_core = gpu_core; D.output.directory = outdir; |