Difference between revisions of "SciVisFall2007/Assignment 2"

From VistrailsWiki
Jump to navigation Jump to search
m (New page: The assignment is due at midnight on October 30th. You will need to use the CADE handin functionality to turn in your assignment. The class account is "cs5630". The purpose of this assign...)
 
m
Line 19: Line 19:
"stack" the right way. Use the "AddPosition" method on the vtkActor
"stack" the right way. Use the "AddPosition" method on the vtkActor
module to do that.
module to do that.
== Problem 1: Simple color mapping ==
In this problem, you will design colormaps for a dataset. In
particular, you will design two different colormaps for two different
tasks. The dataset you are given is a digital elevation map (DEM) of
Honolulu on Oahu, HI. The elevations are given in meters, and the
range of the data is [-2.0, 956.0]. Look up Honolulu on
maps.google.com (or your favorite map application) to give you context
for this problem:
[http://maps.google.com/?ie=UTF8&ll=21.349982,-157.926579&spn=0.153805,0.215607&t=k&z=13&om=1 Google maps link to Honolulu]
a. Apply the colormap design principles described in class to create a
visualization where it is easy to tell which of two points are
higher. Describe in the notes why you chose this colormap.
((NOTE: this should be a colormap based on saturation or preferably
value. If students use black, they should have a light background, so
we can know where the dataset starts.))
b. Apply the colormap design principles described in class to create a
visualization where it is easy to tell the height of any given point.
((NOTE: this should be a colormap that has hue changes))
c. Generate a visualization that is suited to both previous tasks.
((NOTE: this should be a colormap with redundant cues))
Grads only
d. Generate colormaps that give a good visualization of the low areas
(ie: first 5 or 10 meters) of the DEM. Potentially relevant modules:
vtkColorTransferFunction. ((NOTE: a good chunk of the path through the
color space should be spent on range -2.0 -> 5.0, approximately))

Revision as of 01:01, 17 October 2007

The assignment is due at midnight on October 30th. 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 2D scalar and vector fields. As you work on the assignment, we encourage highly 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.

General Hints

Some of the fields in this assignment are such that most of the points in the field have values in a small region of the range. Because of this, a linear path through the color space might be inappropriate. You might consider using vtkColorTransferFunction for more effective results.

When generating visualizations that overlay multiple actors, it will be convenient to displace some of them along the Z direction so they "stack" the right way. Use the "AddPosition" method on the vtkActor module to do that.

Problem 1: Simple color mapping

In this problem, you will design colormaps for a dataset. In particular, you will design two different colormaps for two different tasks. The dataset you are given is a digital elevation map (DEM) of Honolulu on Oahu, HI. The elevations are given in meters, and the range of the data is [-2.0, 956.0]. Look up Honolulu on maps.google.com (or your favorite map application) to give you context for this problem: Google maps link to Honolulu

a. Apply the colormap design principles described in class to create a visualization where it is easy to tell which of two points are higher. Describe in the notes why you chose this colormap. ((NOTE: this should be a colormap based on saturation or preferably value. If students use black, they should have a light background, so we can know where the dataset starts.))

b. Apply the colormap design principles described in class to create a visualization where it is easy to tell the height of any given point. ((NOTE: this should be a colormap that has hue changes))

c. Generate a visualization that is suited to both previous tasks. ((NOTE: this should be a colormap with redundant cues))

Grads only

d. Generate colormaps that give a good visualization of the low areas (ie: first 5 or 10 meters) of the DEM. Potentially relevant modules: vtkColorTransferFunction. ((NOTE: a good chunk of the path through the color space should be spent on range -2.0 -> 5.0, approximately))