diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2016-12-01 06:00:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-01 06:00:19 -0800 |
commit | 75ae79136451cad28375c1bbce6e6cac6080f29e (patch) | |
tree | 4da463b6f94f20b1da4167e9e5f9827316e85f6c /include | |
parent | 08b14da8cf13d4fe9dcc4787306991e453976494 (diff) | |
parent | 55dabbf035b55f71c4261c9de7ef572da46300ff (diff) | |
download | astra-75ae79136451cad28375c1bbce6e6cac6080f29e.tar.gz astra-75ae79136451cad28375c1bbce6e6cac6080f29e.tar.bz2 astra-75ae79136451cad28375c1bbce6e6cac6080f29e.tar.xz astra-75ae79136451cad28375c1bbce6e6cac6080f29e.zip |
Merge pull request #84 from wjp/expose_ConeBP_density_weighting
Expose the density weighting option of cone_bp
Diffstat (limited to 'include')
-rw-r--r-- | include/astra/CudaProjector3D.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/astra/CudaProjector3D.h b/include/astra/CudaProjector3D.h index 4c27b78..079321d 100644 --- a/include/astra/CudaProjector3D.h +++ b/include/astra/CudaProjector3D.h @@ -117,6 +117,7 @@ public: int getVoxelSuperSampling() const { return m_iVoxelSuperSampling; } int getDetectorSuperSampling() const { return m_iDetectorSuperSampling; } int getGPUIndex() const { return m_iGPUIndex; } + bool getDensityWeighting() const { return m_bDensityWeighting; } protected: @@ -124,6 +125,7 @@ protected: int m_iVoxelSuperSampling; int m_iDetectorSuperSampling; int m_iGPUIndex; + bool m_bDensityWeighting; }; |