summaryrefslogtreecommitdiffstats
path: root/cuda/3d/fdk.cu
diff options
context:
space:
mode:
Diffstat (limited to 'cuda/3d/fdk.cu')
-rw-r--r--cuda/3d/fdk.cu4
1 files changed, 2 insertions, 2 deletions
diff --git a/cuda/3d/fdk.cu b/cuda/3d/fdk.cu
index ad0604c..d439d9b 100644
--- a/cuda/3d/fdk.cu
+++ b/cuda/3d/fdk.cu
@@ -354,7 +354,7 @@ bool FDK_Filter(cudaPitchedPtr D_projData,
for (int v = 0; v < dims.iProjV; ++v) {
- ok = runCudaFFT(dims.iProjAngles, D_sinoData, projPitch, 0,
+ ok = runCudaFFT(dims.iProjAngles, D_sinoData, projPitch,
dims.iProjU, iPaddedDetCount, iHalfFFTSize,
D_sinoFFT);
@@ -364,7 +364,7 @@ bool FDK_Filter(cudaPitchedPtr D_projData,
ok = runCudaIFFT(dims.iProjAngles, D_sinoFFT, D_sinoData, projPitch,
- 0, dims.iProjU, iPaddedDetCount, iHalfFFTSize);
+ dims.iProjU, iPaddedDetCount, iHalfFFTSize);
if (!ok) break;