16-889 Assignment 1: Rendering Basics with PyTorch3D

Linghan Xu
linghanx@andrew.cmu.edu

1. Practicing with Cameras

1.1. 360-degree Renders (5 points)

img1-1

1.2 Re-creating the Dolly Zoom (10 points)

image1-2

2. Practicing with Meshes

2.1 Constructing a Tetrahedron (5 points)

image2-1

There are 4 vertices and 4 faces.

2.2 Constructing a Cube (5 points)

image2-2

There are 8 vertices and 12 faces.

3. Re-texturing a mesh (10 points)

image1-3

color1 = [0.5,0,0.5], color2 = [1,0.7,0.75]

4. Camera Transformations (20 points)

image4-1

R_relative = [[0, 1, 0], [-1, 0, 0], [0, 0, 1]], T_relative = [0, 0, 0]

R_relative makes the camera rotate 90 degrees counterclockwise.

 

image4-2

R_relative = [[1, 0, 0], [0, 1, 0], [0, 0, 1]], T_relative = [0,0,3]

T_relative makes the camera move 3 units away from the object along the z-axis.

image4-3

R_relative = [[1, 0, 0], [0, 1, 0], [0, 0, 1]], T_relative = [0.5, -0.5, 0]

T_relative makes the camera move 0.5 units along the positive direction of the x-axis and 0.5 units along the negative direction of the y-axis.

image4-4

R_relative = [[0, 0, 1], [0, 1, 0], [-1, 0, 0]], T_relative = [-3, 0, 3]

R_relative and T_relative make the camera 3 units away from the origin located at (-3,0,0).

 

5. Rendering Generic 3D Representations

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

image1-5-11image1-5-12image1-5-13

 

5.2 Parametric Functions (10 points)

image1-5-2

5.3 Implicit Surfaces (15 points)

image1-5-3

rendering mesh vs rendering point cloud

Rendering speed: Rendering point cloud is faster than rendering mesh in this case.

Rendering quality: Rendering mesh performs better with a large number of vertices and faces, while rendering point cloud perform better with a small number of vertices.

Ease of use: If we want to render in the real world, I think rendering point cloud is easier since we can get a point cloud directly from a sensor.

6. Do Something Fun (10 points)

image1-6

images1-6-2

Rendered a Koenigsegg using mesh downloaded from Free3D. Set the color of each vertice based on the distance of each verticesfrom the origin. Adjusted R, T so that rendered Koenigsegg is in the center of the image/gif and rendered the top view to show the change in texture color.