diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-05-22 14:56:28 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-05-22 14:56:28 +0200 |
commit | 167ec3f4e1cbe4eb856474cb515291261955b053 (patch) | |
tree | 1d53b4bca6c8d94e578e6ca08ece4fe9b8a4984d /include/astra/CudaProjector3D.h | |
parent | 2ff0de757c6e5ba87247f566aa68bc928672ae37 (diff) | |
download | astra-167ec3f4e1cbe4eb856474cb515291261955b053.tar.gz astra-167ec3f4e1cbe4eb856474cb515291261955b053.tar.bz2 astra-167ec3f4e1cbe4eb856474cb515291261955b053.tar.xz astra-167ec3f4e1cbe4eb856474cb515291261955b053.zip |
Add supersampling options to Cuda Projectors
Diffstat (limited to 'include/astra/CudaProjector3D.h')
-rw-r--r-- | include/astra/CudaProjector3D.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/astra/CudaProjector3D.h b/include/astra/CudaProjector3D.h index a181531..1d570fe 100644 --- a/include/astra/CudaProjector3D.h +++ b/include/astra/CudaProjector3D.h @@ -115,11 +115,14 @@ public: Cuda3DProjectionKernel getProjectionKernel() const { return m_projectionKernel; } + int getVoxelSuperSampling() const { return m_iVoxelSuperSampling; } + int getDetectorSuperSampling() const { return m_iDetectorSuperSampling; } protected: Cuda3DProjectionKernel m_projectionKernel; - + int m_iVoxelSuperSampling; + int m_iDetectorSuperSampling; }; |