diff options
author | Daniel M. Pelt <D.M.Pelt@cwi.nl> | 2015-06-20 00:35:16 +0200 |
---|---|---|
committer | Daniel M. Pelt <D.M.Pelt@cwi.nl> | 2015-06-20 00:35:16 +0200 |
commit | f6b6a2f84806a89fe6bacc583e13cb14629fb5dc (patch) | |
tree | 64c772eded4a2fc8c7b8c42a1b354e3eb690a43f | |
parent | ba3629c6c1bc1d03ccdc6ef2aeae6872ea59559f (diff) | |
download | astra-f6b6a2f84806a89fe6bacc583e13cb14629fb5dc.tar.gz astra-f6b6a2f84806a89fe6bacc583e13cb14629fb5dc.tar.bz2 astra-f6b6a2f84806a89fe6bacc583e13cb14629fb5dc.tar.xz astra-f6b6a2f84806a89fe6bacc583e13cb14629fb5dc.zip |
Actually use the rec_type argument in astra_create_reconstruction_cuda
-rw-r--r-- | matlab/tools/astra_create_reconstruction_cuda.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/matlab/tools/astra_create_reconstruction_cuda.m b/matlab/tools/astra_create_reconstruction_cuda.m index 7d9e1dd..7d0421c 100644 --- a/matlab/tools/astra_create_reconstruction_cuda.m +++ b/matlab/tools/astra_create_reconstruction_cuda.m @@ -45,7 +45,7 @@ if strcmp(rec_type,'') end % configure -cfg = astra_struct('SIRT_CUDA'); +cfg = astra_struct(rec_type); cfg.ProjectionGeometry = proj_geom; cfg.ReconstructionGeometry = vol_geom; cfg.ProjectionDataId = sinogram_id; |