CUDAVolumetricRender[vol]
performs volumetric rendering using the input data.
CUDAVolumetricRender
CUDAVolumetricRender[vol]
performs volumetric rendering using the input data.
Details and Options
- The CUDALink package must be loaded using Needs["CUDALink`"].
- The following options can be given:
-
"Height" 512 the volumetric rendering display height "Width" 512 the volumetric rendering display width "Device" $CUDADevice the CUDA device used
Examples
Basic Examples (2)
The CUDALink application must first be loaded:
Needs["CUDALink`"]This reads example volumetric data:
data = CUDAVolumetricDataRead[FileNameJoin[{$CUDALinkExampleDataPath, "stent8.raw"}], 512, 174];This renders the volumetric data:
CUDAVolumetricRender[data, "Width" -> 400, "Height" -> 400]This imports a volumetric dataset from the web:
importedData = Import["http://www.gris.uni-tuebingen.de/edu/areas/scivis/volren/datasets/data/backpack8.raw.zip", {"backpack8.raw", "UnsignedInteger8"}];
outputFile = Export["colon_phantom8", importedData, "UnsignedInteger8"];data = CUDAVolumetricDataRead[outputFile, 512, 373];
CUDAVolumetricRender[data]See Also
Tech Notes
Text
Wolfram Research (2010), CUDAVolumetricRender, Wolfram Language function, https://reference.wolfram.com/language/CUDALink/ref/CUDAVolumetricRender.html.
CMS
Wolfram Language. 2010. "CUDAVolumetricRender." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/CUDALink/ref/CUDAVolumetricRender.html.
APA
Wolfram Language. (2010). CUDAVolumetricRender. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/CUDALink/ref/CUDAVolumetricRender.html
BibTeX
@misc{reference.wolfram_2026_cudavolumetricrender, author="Wolfram Research", title="{CUDAVolumetricRender}", year="2010", howpublished="\url{https://reference.wolfram.com/language/CUDALink/ref/CUDAVolumetricRender.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_cudavolumetricrender, organization={Wolfram Research}, title={CUDAVolumetricRender}, year={2010}, url={https://reference.wolfram.com/language/CUDALink/ref/CUDAVolumetricRender.html}, note=[Accessed: 13-June-2026]}