SciVisFall2007/Assignment 4

From VistrailsWiki
Jump to navigation Jump to search

The assignment is due at midnight on December 11th. You will need to use the CADE handin functionality to turn in your assignment. The class account is "cs5630". The purpose of this assignment is to make sure you understand (and experiment with) the basic concepts involved in the visualization of Diffusion Tensor volumes as well as large graphs. As you work on the assignment, we greatly encourage you to read the available documentation on both python and VTK. Some of the problems will require you to use VTK modules you might not have previously seen. These are indicated in the problems.

Submitting your vistrails

The assignment is broken into two distinct parts: DTI vis and graph vis. Two different vistrails should be used for these tasks, assignment4a.vt and assignment 4b.vt, respectively. You may start from an empty vistrail or from examples that are given.

Assignment 4a: DTI Visualization

This is a diffusion tensor dataset gktbh.vtk, and a corresponding anisotropy volume gktbhFA.vtk. These volumes cover the right half of a Gordon Kindlmann's brain. They encode information about the structure of the brain matter. The anisotropy volume has high values in regions which are likely white matter in the brain, and these are the regions of interest.

Problem 1a: Perform isosurface rendering of the anisotropy volume using multiple transparent, colored, isosurfaces. In the version tree notes for the node, describe (roughly) what the isosurfaces show are the regions that are highly anisotropic and those that are highly isotropic.

Problem 1b: Perform glyph visualization of the DT dataset. Choose whatever glyph geometry you want (cube, sphere, cylinder, etc.) but make sure it is appropriate for the symmetry imposed by the sign ambiguity of eigenvectors. In order to produce a clear visualization, you need to control the number of glyphs produced to show only regions of high anisotropy to reduce clutter. Here are a few possible ways of doing this:

  • Producing glyphs only in a region constrained to some simple geometry, such as on a plane which you use to probe the volume
  • Producing glyphs only within range of values defined by a threshold
  • Producing glyphs on the vertices of an invisible isosurface.

In the notes for the node, describe why you chose the glyph representation that you did and how you limited the clutter.

Problem 1c: Based on your knowedge of where the highly directional features are, visualize them using several well-placed hyperstreamlines. In the notes for the node, describe how you chose the seed points

Problem 1d: Create a composite visualization that combines all three techniques described above.

Assignment 4b: Graph Visualization