16889-Assignment1

Jinkun Cao (jinkunc@andrew.cmu.edu)

1. Practicing with Cameras

1.1. 360-degree Renders (5 points)

360degree_1_1

1.2 Re-creating the Dolly Zoom (10 points)

dolly

2. Practicing with Meshes

2.1 Constructing a Tetrahedron (5 points)

tetrahedron_2_1

To construct such a tetrahedron, we need 4 verticles and 4 faces:

2.2 Constructing a Cube (5 points)

cube

To construct such a standard sube, we need 8 verticles and 12 faces.

3. Re-texturing a mesh (10 points)

color_cow_3_1

To re-texture the cow mesh with two colors, I see the color with gradient:

4. Camera Transformations (20 points)

To get the results below, we need the relative rotation and relative translation matrices indicated under each image.

relative_cow_p4_1

relative_cow_p4_2

relative_cow_p4_3

relative_cow_p4_4

5. Rendering Generic 3D Representations

5.1 Rendering Point Clouds from RGB-D Images (10 points)

3plants

For the three images shown above, the first the from the first point cloud extracted from the given file and the second image is from the second point cloud. The first image is from the union of the previous two point clouds.

5.2 Parametric Functions (10 points)

torus

5.3 Implicit Surfaces (15 points)

torus_mesh

For the implicit function version, the torus can be described by

(R1(X2+Y2))2+Z2R22

Here we still set R1=2 and R2=3 to align with the previous version. Also, besides the mesh version as shown above, we can also render the point cloud version which uses the verticles of mesh directly.

torus_from_mesh

Compare with the tradeoffs between these two versions, through my implementation, I find that the mesh rendering surprisingly takes shorter time (3.25s) than the point cloud version (5.46s). But the mesh version requires more memory than point cloud because it needs faces as well. I would say mesh has the better rendering quality as it provides the semantic information as well, which is lost in point cloud. For different tasks, it may vary w.r.t the ease of use when comparing them. For example, for 3D perception, point cloud is more popular for easy to process structure. But for animation, the mesh is obviously a better choice to provide more correspondance or even physical references.

6. Do Something Fun (10 points)

I get a .obj file from Free3D and render it with the gaussian-sampled color ditribution.

canon

(Extra Credit) 7. Sampling Points on Meshes (10 points)

I render the mesh version at the very left and four point clouds. From left to right, the four point clouds contain 10, 100, 1000, and 10000 points respectively.

combined_cow_ex7