diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2018-07-05 16:13:37 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2018-07-17 11:29:22 +0200 |
commit | d58f6b51493c7931cbc02feb3ffeb0eca6ea3a4e (patch) | |
tree | 51a4b27c7825198ec119c4e420439f183584420a /cuda/3d | |
parent | 0d06afc38d7a8443a079d25d72ec4b4b15353974 (diff) | |
download | astra-d58f6b51493c7931cbc02feb3ffeb0eca6ea3a4e.tar.gz astra-d58f6b51493c7931cbc02feb3ffeb0eca6ea3a4e.tar.bz2 astra-d58f6b51493c7931cbc02feb3ffeb0eca6ea3a4e.tar.xz astra-d58f6b51493c7931cbc02feb3ffeb0eca6ea3a4e.zip |
Refactor a few filter-related functions out of cuda code
Diffstat (limited to 'cuda/3d')
-rw-r--r-- | cuda/3d/fdk.cu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cuda/3d/fdk.cu b/cuda/3d/fdk.cu index 46c07e7..194d2fb 100644 --- a/cuda/3d/fdk.cu +++ b/cuda/3d/fdk.cu @@ -253,7 +253,7 @@ bool FDK_Filter(cudaPitchedPtr D_projData, memset(pHostFilter, 0, sizeof(cufftComplex) * dims.iProjAngles * iHalfFFTSize); if (pfFilter == 0){ - astraCUDA::genFilter(astra::FILTER_RAMLAK, 1.0f, dims.iProjAngles, pHostFilter, iPaddedDetCount, iHalfFFTSize); + astraCUDA::genCuFFTFilter(astra::FILTER_RAMLAK, 1.0f, dims.iProjAngles, pHostFilter, iPaddedDetCount, iHalfFFTSize); } else { for (int i = 0; i < dims.iProjAngles * iHalfFFTSize; i++) { pHostFilter[i].x = pfFilter[i]; |