summaryrefslogtreecommitdiffstats
path: root/cuda/3d/dims3d.h
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <wjp@usecode.org>2016-10-07 16:28:41 +0200
committerGitHub <noreply@github.com>2016-10-07 16:28:41 +0200
commit8f2b55a66db9747419e75dae5973281a7536b934 (patch)
treee7ca39da75ad5c9d728698295ac9c8ec32e4e499 /cuda/3d/dims3d.h
parente4b8b6e94be7c5f7dbaad51543c5eace8882a115 (diff)
parente835d5d588b7404037289c7b5cfa1475e931ba44 (diff)
downloadastra-8f2b55a66db9747419e75dae5973281a7536b934.tar.gz
astra-8f2b55a66db9747419e75dae5973281a7536b934.tar.bz2
astra-8f2b55a66db9747419e75dae5973281a7536b934.tar.xz
astra-8f2b55a66db9747419e75dae5973281a7536b934.zip
Merge pull request #42 from wjp/FDK
Use CompositeGeometryManager for FDK
Diffstat (limited to 'cuda/3d/dims3d.h')
-rw-r--r--cuda/3d/dims3d.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/cuda/3d/dims3d.h b/cuda/3d/dims3d.h
index a15c67a..eb7045f 100644
--- a/cuda/3d/dims3d.h
+++ b/cuda/3d/dims3d.h
@@ -58,7 +58,8 @@ struct SProjectorParams3D {
iRaysPerDetDim(1), iRaysPerVoxelDim(1),
fOutputScale(1.0f),
fVolScaleX(1.0f), fVolScaleY(1.0f), fVolScaleZ(1.0f),
- ker(ker3d_default)
+ ker(ker3d_default),
+ bFDKWeighting(false)
{ }
unsigned int iRaysPerDetDim;
@@ -68,6 +69,7 @@ struct SProjectorParams3D {
float fVolScaleY;
float fVolScaleZ;
Cuda3DProjectionKernel ker;
+ bool bFDKWeighting;
};
}