summaryrefslogtreecommitdiffstats
path: root/src/CudaProjector3D.cpp
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2015-09-16 15:52:30 +0200
committerWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2015-09-16 15:52:40 +0200
commit8144bf0397ee1913b830d82058ccd40df741f1b3 (patch)
tree7f707615c104621226fd8bdd868f86aee8e5bd73 /src/CudaProjector3D.cpp
parent47b520d51fc4fc49db992b9117f6c0abfa8152b5 (diff)
parentc1713c00c4aeae594913667d868106e8591dd1d1 (diff)
downloadastra-8144bf0397ee1913b830d82058ccd40df741f1b3.tar.gz
astra-8144bf0397ee1913b830d82058ccd40df741f1b3.tar.bz2
astra-8144bf0397ee1913b830d82058ccd40df741f1b3.tar.xz
astra-8144bf0397ee1913b830d82058ccd40df741f1b3.zip
Merge branch 'master'
Diffstat (limited to 'src/CudaProjector3D.cpp')
-rw-r--r--src/CudaProjector3D.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/CudaProjector3D.cpp b/src/CudaProjector3D.cpp
index 41529a5..d2fd74c 100644
--- a/src/CudaProjector3D.cpp
+++ b/src/CudaProjector3D.cpp
@@ -62,6 +62,8 @@ void CCudaProjector3D::_clear()
m_bIsInitialized = false;
m_projectionKernel = ker3d_default;
+ m_iVoxelSuperSampling = 1;
+ m_iDetectorSuperSampling = 1;
}
//----------------------------------------------------------------------------------------
@@ -120,6 +122,12 @@ bool CCudaProjector3D::initialize(const Config& _cfg)
}
CC.markNodeParsed("ProjectionKernel");
+ m_iVoxelSuperSampling = (int)_cfg.self.getOptionNumerical("VoxelSuperSampling", 1);
+ CC.markOptionParsed("VoxelSuperSampling");
+
+ m_iDetectorSuperSampling = (int)_cfg.self.getOptionNumerical("DetectorSuperSampling", 1);
+ CC.markOptionParsed("DetectorSuperSampling");
+
m_bIsInitialized = _check();
return m_bIsInitialized;
}