diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-03-11 12:07:48 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-03-11 12:07:48 +0100 |
commit | 140f64028a6c06895ba7dad8997e14b7a05aadab (patch) | |
tree | c8d979138c8fca2984b49dab10f3af8c81c80c9f /src/CudaFDKAlgorithm3D.cpp | |
parent | 9eb68c39c62a8e674e3dbe50252528226c6593ff (diff) | |
download | astra-140f64028a6c06895ba7dad8997e14b7a05aadab.tar.gz astra-140f64028a6c06895ba7dad8997e14b7a05aadab.tar.bz2 astra-140f64028a6c06895ba7dad8997e14b7a05aadab.tar.xz astra-140f64028a6c06895ba7dad8997e14b7a05aadab.zip |
Let astraCudaFDK use utility functions
Diffstat (limited to 'src/CudaFDKAlgorithm3D.cpp')
-rw-r--r-- | src/CudaFDKAlgorithm3D.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/CudaFDKAlgorithm3D.cpp b/src/CudaFDKAlgorithm3D.cpp index 7638696..0a46ff6 100644 --- a/src/CudaFDKAlgorithm3D.cpp +++ b/src/CudaFDKAlgorithm3D.cpp @@ -171,17 +171,7 @@ void CCudaFDKAlgorithm3D::run(int _iNrIterations) bool ok = true; ok = astraCudaFDK(pReconMem->getData(), pSinoMem->getDataConst(), - volgeom.getGridColCount(), - volgeom.getGridRowCount(), - volgeom.getGridSliceCount(), - conegeom->getProjectionCount(), - conegeom->getDetectorColCount(), - conegeom->getDetectorRowCount(), - conegeom->getOriginSourceDistance(), - conegeom->getOriginDetectorDistance(), - conegeom->getDetectorSpacingX(), - conegeom->getDetectorSpacingY(), - conegeom->getProjectionAngles(), + &volgeom, conegeom, m_bShortScan, m_iGPUIndex, m_iVoxelSuperSampling); ASTRA_ASSERT(ok); |