diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/CompositeGeometryManager.cpp | 4 | ||||
| -rw-r--r-- | src/CudaProjector3D.cpp | 11 | 
2 files changed, 14 insertions, 1 deletions
| diff --git a/src/CompositeGeometryManager.cpp b/src/CompositeGeometryManager.cpp index f72f38a..c3af228 100644 --- a/src/CompositeGeometryManager.cpp +++ b/src/CompositeGeometryManager.cpp @@ -1228,10 +1228,12 @@ static bool doJob(const CCompositeGeometryManager::TJobSet::const_iterator& iter  		Cuda3DProjectionKernel projKernel = ker3d_default;  		int detectorSuperSampling = 1;  		int voxelSuperSampling = 1; +		bool densityWeighting = false;  		if (projector) {  			projKernel = projector->getProjectionKernel();  			detectorSuperSampling = projector->getDetectorSuperSampling();  			voxelSuperSampling = projector->getVoxelSuperSampling(); +			densityWeighting = projector->getDensityWeighting();  		}  		size_t inx, iny, inz; @@ -1274,7 +1276,7 @@ static bool doJob(const CCompositeGeometryManager::TJobSet::const_iterator& iter  			ASTRA_DEBUG("CCompositeGeometryManager::doJobs: doing BP"); -			ok = astraCUDA3d::BP(((CCompositeGeometryManager::CProjectionPart*)j.pInput.get())->pGeom, inputMem, ((CCompositeGeometryManager::CVolumePart*)j.pOutput.get())->pGeom, outputMem, voxelSuperSampling); +			ok = astraCUDA3d::BP(((CCompositeGeometryManager::CProjectionPart*)j.pInput.get())->pGeom, inputMem, ((CCompositeGeometryManager::CVolumePart*)j.pOutput.get())->pGeom, outputMem, voxelSuperSampling, densityWeighting);  			if (!ok) ASTRA_ERROR("Error performing sub-BP");  			ASTRA_DEBUG("CCompositeGeometryManager::doJobs: BP done");  		} diff --git a/src/CudaProjector3D.cpp b/src/CudaProjector3D.cpp index 29af0c6..a1f091e 100644 --- a/src/CudaProjector3D.cpp +++ b/src/CudaProjector3D.cpp @@ -30,6 +30,9 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>.  #include "astra/VolumeGeometry3D.h"  #include "astra/ProjectionGeometry3D.h" +#include "astra/ConeProjectionGeometry3D.h" +#include "astra/ConeVecProjectionGeometry3D.h" +  namespace astra  { @@ -64,6 +67,7 @@ void CCudaProjector3D::_clear()  	m_iVoxelSuperSampling = 1;  	m_iDetectorSuperSampling = 1;  	m_iGPUIndex = -1; +	m_bDensityWeighting = false;  }  //---------------------------------------------------------------------------------------- @@ -128,6 +132,13 @@ bool CCudaProjector3D::initialize(const Config& _cfg)  	m_iDetectorSuperSampling = (int)_cfg.self.getOptionNumerical("DetectorSuperSampling", 1);  	CC.markOptionParsed("DetectorSuperSampling"); +	if (dynamic_cast<CConeProjectionGeometry3D*>(m_pProjectionGeometry) || +	    dynamic_cast<CConeVecProjectionGeometry3D*>(m_pProjectionGeometry)) +	{ +		m_bDensityWeighting = _cfg.self.getOptionBool("DensityWeighting", false); +		CC.markOptionParsed("DensityWeighting"); +	} +  	m_iGPUIndex = (int)_cfg.self.getOptionNumerical("GPUindex", -1);  	m_iGPUIndex = (int)_cfg.self.getOptionNumerical("GPUIndex", m_iGPUIndex);  	CC.markOptionParsed("GPUIndex"); | 
