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, 4 insertions, 0 deletions
diff --git a/cuda/3d/fdk.cu b/cuda/3d/fdk.cu
index 45b6a28..d1c23c6 100644
--- a/cuda/3d/fdk.cu
+++ b/cuda/3d/fdk.cu
@@ -40,6 +40,7 @@ $Id$
#endif
#include "dims3d.h"
+#include "arith3d.h"
#include "../2d/fft.h"
typedef texture<float, 3, cudaReadModeElementType> texture3D;
@@ -443,6 +444,9 @@ bool FDK(cudaPitchedPtr D_volumeData,
if (!ok)
return false;
+ processVol3D<opMul>(D_volumeData,
+ (M_PI / 2.0f) / (float)dims.iProjAngles, dims);
+
return true;
}