Difference between revisions of "Project6SP15"

From Immersive Visualization Lab Wiki
Jump to: navigation, search
(1. Terrain)
(1. Terrain)
Line 22: Line 22:
 
* Load the height map image and store the elevation data in an unsigned char array of size 1024*1024.
 
* Load the height map image and store the elevation data in an unsigned char array of size 1024*1024.
 
* Create a 1024*1024 array of vertex coordinates (Vector3). Populate the array as follows: the x and y coordinates should equal the array indices (Vector3[x][y].x = x, Vector3[x][y].y = y). The z value should be the corresponding value from the height map array (Vector3[x][y].z = heightmap[x][y]). Feel free to scale each of the values to a range more convenient for you. In a professional application one would decide on a physical unit for the vertex coordinates, for instance feet or meters.
 
* Create a 1024*1024 array of vertex coordinates (Vector3). Populate the array as follows: the x and y coordinates should equal the array indices (Vector3[x][y].x = x, Vector3[x][y].y = y). The z value should be the corresponding value from the height map array (Vector3[x][y].z = heightmap[x][y]). Feel free to scale each of the values to a range more convenient for you. In a professional application one would decide on a physical unit for the vertex coordinates, for instance feet or meters.
* To render the height map, create a triangle mesh with 1023*1023*2 triangles, using the vertex array created above. Make yourself familiar with [http://en.wikipedia.org/wiki/Triangle_strip triangle strips] (glBegin(GL_TRIANGLE_STRIP)) and use them to create the triangle mesh - this way it will render much faster than separate triangles.
+
* To render the height map, create a triangle mesh with 1023*1023*2 triangles, using the vertex array created above. Make yourself familiar with [http://en.wikipedia.org/wiki/Triangle_strip triangle strips] and use them to create the triangle mesh - this way it will render much faster than separate triangles.
 
* For the vertex colors, use the same gray values as in the PPM file with the height map. We will add color later.
 
* For the vertex colors, use the same gray values as in the PPM file with the height map. We will add color later.
  

Revision as of 22:34, 8 May 2015

Project 6: Global Warming

In this project you will need to render a terrain with GLSL shader programs.

This project is due on Friday, May 15th, 2015 at 1:00pm. You need to present your results in the CSE basement labs as usual, grading starts at 12:15pm. Please upload your source code including your shaders to the Ted system by 1pm. You do not need to upload any binaries, including textures, 3D models, etc.

The discussion for this project will be on Monday, May 11th in CSB 002 (note the room change due to construction).

The total score for this project is 100 points, plus 10 for extra credit.

It is widely believed that as a consequence of Global Warming the sea level is going to rise. San Diego has many low lying areas, which would get severely affected even with a moderate increase of the sea level. There are web apps such as this one, which can give you an idea of which areas will be affected, but they are not as interactive as they could be.

The goal of this project is to create a highly interactive 3D visualization tool to show the effects of different water levels on San Diego. You will have to load and render a height map and allow the user to change the water level in real-time.

1. Terrain

In the first step you need to generate and display a 3D mesh out of this 2D height map image of San Diego. The image has a resolution of 1024*1024 pixels and covers an area of about 37*37 miles (60*60 kilometers). The image is in PPM format so that you can read it with your PPM reader from Project 5. The information in the red, green and blue channels is identical for each pixel - you can interpret any one of them as elevation. A gray value of zero translates to an elevation of zero (sea level), a value of 255 translates to an elevation of about 3,500 feet (1,000 meters).

The steps to generate the height map are as follows:

  • Load the height map image and store the elevation data in an unsigned char array of size 1024*1024.
  • Create a 1024*1024 array of vertex coordinates (Vector3). Populate the array as follows: the x and y coordinates should equal the array indices (Vector3[x][y].x = x, Vector3[x][y].y = y). The z value should be the corresponding value from the height map array (Vector3[x][y].z = heightmap[x][y]). Feel free to scale each of the values to a range more convenient for you. In a professional application one would decide on a physical unit for the vertex coordinates, for instance feet or meters.
  • To render the height map, create a triangle mesh with 1023*1023*2 triangles, using the vertex array created above. Make yourself familiar with triangle strips and use them to create the triangle mesh - this way it will render much faster than separate triangles.
  • For the vertex colors, use the same gray values as in the PPM file with the height map. We will add color later.

Notes: