diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-03-12 12:30:47 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2015-03-12 12:30:47 +0100 |
commit | a70ad8df8fc2a3da63fc91dd18bbfd55be7a89dd (patch) | |
tree | 09e13e27b69c254b5bd36d510ca700077bfb8c77 /cuda/3d/cone_bp.h | |
parent | 57ee6b85884b8226b26b7415ef151b4a6e63337c (diff) | |
download | astra-a70ad8df8fc2a3da63fc91dd18bbfd55be7a89dd.tar.gz astra-a70ad8df8fc2a3da63fc91dd18bbfd55be7a89dd.tar.bz2 astra-a70ad8df8fc2a3da63fc91dd18bbfd55be7a89dd.tar.xz astra-a70ad8df8fc2a3da63fc91dd18bbfd55be7a89dd.zip |
Add outputScale argument to 3D CUDA BP
Diffstat (limited to 'cuda/3d/cone_bp.h')
-rw-r--r-- | cuda/3d/cone_bp.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cuda/3d/cone_bp.h b/cuda/3d/cone_bp.h index cba6d9f..4d3d2dd 100644 --- a/cuda/3d/cone_bp.h +++ b/cuda/3d/cone_bp.h @@ -33,13 +33,14 @@ namespace astraCUDA3d { _AstraExport bool ConeBP_Array(cudaPitchedPtr D_volumeData, cudaArray *D_projArray, - const SDimensions3D& dims, const SConeProjection* angles); + const SDimensions3D& dims, const SConeProjection* angles, + float fOutputScale); _AstraExport bool ConeBP(cudaPitchedPtr D_volumeData, cudaPitchedPtr D_projData, - const SDimensions3D& dims, const SConeProjection* angles); + const SDimensions3D& dims, const SConeProjection* angles, + float fOutputScale); - } #endif |