Difference between revisions of "Slicer3:Volume Rendering With Cuda"

From NAMIC Wiki
Jump to: navigation, search
m (Text replacement - "http://www.slicer.org/slicerWiki/index.php/" to "https://www.slicer.org/wiki/")
 
(45 intermediate revisions by 3 users not shown)
Line 1: Line 1:
= Description =
+
<big>'''Note:''' We are migrating this content to the slicer.org domain - <font color="orange">The newer page is [https://www.slicer.org/wiki/Slicer3:Volume_Rendering_With_Cuda here]</font></big>
On this page a description of the Volume Rendering algorithm with cuda is presented.
 
 
 
== Objective ==
 
The goal of this project is to implement a CUDA based Volume Rendering Technique inside of [http://www.vtk.org VTK] and Slicer3.
 
 
 
== Project Outline ==
 
Several steps have to be made to integrating a CUDA based volume rendering technique into vtk.
 
#Implement and Integrate a '''CUDA Volume Rendering algorithm'''.
 
#Integrate '''CUDA runtime API''' support into VTK using a class based approach.
 
#Integrate the algorithm into a '''VTK pipeline''' (described below)
 
#Create a '''user interface''' to control the flow of the Volume Rendering within Slicer3.
 
 
 
 
 
= Cuda Volume Rendering Algorithm =
 
The Code that we use so far has been implemented by Nicholas Harlambang and can be viewed at [http://svn.orxonox.net/subprojects/volrenSample].
 
 
 
 
 
= VTK Cuda Runtime API support =
 
The c-interface to the CUDA objects and functions will be wrapped in a safe object oriented VTK-C++ class hierarchy.
 
*[[VTK Cuda Wrapper Classes]]
 
*[[VTK Cuda Memory Management Classes]]
 
 
 
== Cuda Memory ==
 
Cuda memory comes in different shapes and forms:
 
*'''Host Memory''': Non-Paged Memory on the host side for fast interaction with the CUDA devices. see ''vtkCudaHostMemory.h''
 
*'''Linear Memory''': Linerely arranged memory on the CUDA device. see ''vtkCudaMemory.h''
 
*'''Pitch Memory''': 2D memory arrays that are aligned in the correct fashion for a fast interaction on the cuda devices. (Arranged over the memory banks for quick access). see ''vtkCudaMemoryPitch.h''
 
*'''Array Memory''': Arrays allocated over the CUDA API. see ''vtkCudaMemoryArray.h''
 
*'''Texture Memory''': Not discussed here. see [[VTK Cuda Wrapper Classes]]
 
All these memories are derived from a base class (see ''vtkCudaMemoryBase.h'') as shown in the following picture:
 
 
 
[[Image:vtkCudaMemoryManagementClassDiagram.png|frame|none|Cuda Memory Class Diagram]]
 
 
 
= VTK Modules and Pipeline =
 
These are the modules that will be created in order to integrate a Cuda based Volume Rendering into the Slicer3 pipeline
 
# '''A [http://www.vtk.org/doc/release/5.0/html/a01572.html vtkImageReader]:''' to read Volume data as any kind of Volume Data
 
# '''A [[vtkCudaImageFilter]]:''' A Filter to convert from the reader output to a cuda-able DataSet
 
# '''A [[vtkCudaDataSet]]:''' A new vtkDataSet where that holds and handles the data transfer from and to one or multiple CUDA devices.
 
# '''A [[vtkCudaVolumeMapper]]:''' A new vtkVolumeMapper that renders the scene using the
 
## lighting model
 
## a prepared Z buffer
 
## a camera position
 
## A [[http://www.vtk.org/doc/release/5.0/html/a02096.html vtkTexture]] and a Plane to render the result to
 
# '''An actor''' that places the volume into the scene
 
# Chain this '''pipeline''' together and attach it to a rendering window.
 
 
 
In the following image the pipeline is displayed together with the connections from the VTK, Slicer3 and CUDA frameworks.
 
[[Image:VtkCudaVolumeRenderingPipeline.png|frame|none|CUDA Volume Rendering Pipeline]]
 
 
 
Description:
 
* The '''Fat''' line displays the pipeline flow.
 
* Green colored fields are classes from the Slicer3 or vtk implementation
 
* Red colored fields are CUDA and hardware specific parts
 
* Blue colored fields are specially implemented parts for the communication of cuda and vtk and the volume rendering algorithms.
 
 
 
= A Slicer3 User Interface =
 
The GUI will be designed using KWWidgets. With this the user will be able to change the rendering resolution, step size, control the color sceme and load and store further information.
 
 
 
= Tasks and Timeline =
 
== Tasks and Completion ==
 
{| border=1 cellspacing
 
|- bgcolor="#9badcf"
 
! Task
 
! colspan=3 | Status
 
|- bgcolor="#bbddff"
 
|colspan=3 | Overall Status
 
| rowspan=20 valign="top" | 10%
 
|-
 
 
 
|- bgcolor="#ddffff"
 
|colspan=2 | Integrate into VTK
 
| rowspan=4 valign="top"  | 10%
 
|-
 
|VTK Memory Class Definitions || 50%
 
|-
 
|VTK Access Classes || 20%
 
|-
 
|VTK Algorithm || 0%
 
|-
 
 
 
|-bgcolor="#ddffff"
 
|colspan=2 bgcolor="#ddffff" | CUDA Volume Rendering Algorithm
 
| rowspan=4 valign="top" bgcolor="#ddffff" | 20%
 
|-
 
|Adapt to Z-buffer || 0%
 
|-
 
|Adapt lighting model || 0%
 
|-
 
|Adapt to input Image || 0%
 
|-
 
 
 
|- bgcolor="#ddffff"
 
|colspan=2 | Integration into Slicer
 
| rowspan=4 valign="top" | 10%
 
|-
 
|Integrate as a Module || 80%
 
|-
 
| GUI || 10%
 
|}
 
 
 
== Timeline ==
 
{| border="1"
 
|- bgcolor="#abcdef"
 
! From !! To !! Task
 
|-
 
| 12/01/07 || 05/31/08 || Master Thesis Duration
 
|-
 
| 12/01/07 || 12/31/07 || Reading into the Project, Defining Basic Classes
 
|-
 
| 01/01/08 || 01/06/08 || Basic Class Definition Ready for Hands on Meeting
 
|-
 
| 01/07/08 || 01/12/08 || Hands on meeting in Salt Lake City
 
|-
 
| 01/14/08 || 02/01/08 || Further Implementation
 
|-
 
| 01/05/08 || 29/05/08 || Write Master Thesis
 
|-
 
| 01/06/08 ||          || Hand in Masters Thesis in Zurich
 
|}
 
 
 
== Progress ==
 
See the daily progress [http://www.google.com/notebook/public/08097279861700679221/BDQdBIgoQ1czeruoi?hl=en here]
 
 
 
=Resources=
 
#For testing purposes: [[Image:Heart256.raw]] Store this file in Slicer3/Modules/VolumeRenderingCuda/Testing/heart256.raw
 
#Also checkout the main project page at [[Slicer-IGT/GPU-IGT]]
 

Latest revision as of 18:07, 10 July 2017

Home < Slicer3:Volume Rendering With Cuda

Note: We are migrating this content to the slicer.org domain - The newer page is here