diff options
author | Willem Jan Palenstijn <WillemJan.Palenstijn@uantwerpen.be> | 2014-04-16 11:13:01 +0000 |
---|---|---|
committer | wpalenst <WillemJan.Palenstijn@uantwerpen.be> | 2014-04-16 11:13:01 +0000 |
commit | 7ce0b7cca179e903e8011cd96c9910cbdf62ae00 (patch) | |
tree | 2ebfa5687c8126d1d2b345a1bfc8c374a62a227b /cuda/3d/cone_fp.cu | |
parent | 3a6769465bee7d56d0ddff36613b886446421e07 (diff) | |
download | astra-7ce0b7cca179e903e8011cd96c9910cbdf62ae00.tar.gz astra-7ce0b7cca179e903e8011cd96c9910cbdf62ae00.tar.bz2 astra-7ce0b7cca179e903e8011cd96c9910cbdf62ae00.tar.xz astra-7ce0b7cca179e903e8011cd96c9910cbdf62ae00.zip |
Remove padding in 3D cuda in favour of Border mode
Diffstat (limited to 'cuda/3d/cone_fp.cu')
-rw-r--r-- | cuda/3d/cone_fp.cu | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cuda/3d/cone_fp.cu b/cuda/3d/cone_fp.cu index 40dca4f..fa308b9 100644 --- a/cuda/3d/cone_fp.cu +++ b/cuda/3d/cone_fp.cu @@ -72,9 +72,9 @@ bool bindVolumeDataTexture(const cudaArray* array) { cudaChannelFormatDesc channelDesc = cudaCreateChannelDesc<float>(); - gT_coneVolumeTexture.addressMode[0] = cudaAddressModeClamp; - gT_coneVolumeTexture.addressMode[1] = cudaAddressModeClamp; - gT_coneVolumeTexture.addressMode[2] = cudaAddressModeClamp; + gT_coneVolumeTexture.addressMode[0] = cudaAddressModeBorder; + gT_coneVolumeTexture.addressMode[1] = cudaAddressModeBorder; + gT_coneVolumeTexture.addressMode[2] = cudaAddressModeBorder; gT_coneVolumeTexture.filterMode = cudaFilterModeLinear; gT_coneVolumeTexture.normalized = false; @@ -142,9 +142,9 @@ bool bindVolumeDataTexture(const cudaArray* array) \ float fVal = 0.0f; \ \ - float f##c0 = startSlice + 1.5f; \ - float f##c1 = a##c1 * (startSlice - 0.5f*dims.iVol##c0 + 0.5f) + b##c1 + 0.5f*dims.iVol##c1 - 0.5f + 1.5f; \ - float f##c2 = a##c2 * (startSlice - 0.5f*dims.iVol##c0 + 0.5f) + b##c2 + 0.5f*dims.iVol##c2 - 0.5f + 1.5f; \ + float f##c0 = startSlice + 0.5f; \ + float f##c1 = a##c1 * (startSlice - 0.5f*dims.iVol##c0 + 0.5f) + b##c1 + 0.5f*dims.iVol##c1 - 0.5f + 0.5f; \ + float f##c2 = a##c2 * (startSlice - 0.5f*dims.iVol##c0 + 0.5f) + b##c2 + 0.5f*dims.iVol##c2 - 0.5f + 0.5f; \ \ for (int s = startSlice; s < endSlice; ++s) \ { \ @@ -218,9 +218,9 @@ bool bindVolumeDataTexture(const cudaArray* array) \ float fVal = 0.0f; \ \ - float f##c0 = startSlice + 1.5f; \ - float f##c1 = a##c1 * (startSlice - 0.5f*dims.iVol##c0 + 0.5f) + b##c1 + 0.5f*dims.iVol##c1 - 0.5f + 1.5f; \ - float f##c2 = a##c2 * (startSlice - 0.5f*dims.iVol##c0 + 0.5f) + b##c2 + 0.5f*dims.iVol##c2 - 0.5f + 1.5f; \ + float f##c0 = startSlice + 0.5f; \ + float f##c1 = a##c1 * (startSlice - 0.5f*dims.iVol##c0 + 0.5f) + b##c1 + 0.5f*dims.iVol##c1 - 0.5f + 0.5f; \ + float f##c2 = a##c2 * (startSlice - 0.5f*dims.iVol##c0 + 0.5f) + b##c2 + 0.5f*dims.iVol##c2 - 0.5f + 0.5f; \ \ for (int s = startSlice; s < endSlice; ++s) \ { \ |