16-889 Assignment 1

Byeongjoo Ahn (bahn@andrew.cmu.edu)

1. Practicing with Cameras


1.1. 360-degree Renders (5 points) p1_1.ipynb

The gif of 360-degree video is shown below. The point light used for the illumination is collocated with the camera for better visibility.

1.1. 360-degree renders

1.2 Re-creating the Dolly Zoom (10 points) p1_2.ipynb

The gif of dolly zoom effect is shown below.

1.2. Dolly zoom

2. Practicing with Meshes p2.ipynb


2.1 Constructing a Tetrahedron (5 points)

The gif of a tetrahedron is shown below.

2.1. Tetrahedron

2.2 Constructing a Cube (5 points)

The gif of a cube is shown below.

2.2. Cube

3. Re-texturing a mesh (10 points) p3.ipynb


The gif of the rendered mesh with a new texture is shown below.

4. Camera Transformations (20 points) p4.ipynb


The renderings and descriptions for target transformations are shown below.

Transformation #1
Transformation #2
Transformation #3
Transformation #4

Note that pytorch3d uses the convention of X=XR+TX’ = XR + T, so RR matrix is transposed compared to the case of X=RX+TX’ = RX + T.

5. Rendering Generic 3D Representations


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

The rendering of point clouds from the RGBD images are shown below. For the rendering, we made the initial pose of the camera the same as the camera1 and adjusted a distance to be 6 units as suggested by the instruction, and rotated the camera around the object.

5.1. Video of the first image
5.1. Video of the second image
5.1. Video of the union

5.2 Parametric Functions (10 points) p5_2.ipynb

The gif of the torus point cloud is provided below.

5.2. Point cloud of a torus

5.3 Implicit Surfaces (15 points) p5_3.ipynb

The gif of the torus mesh is provided below.

5.3. Mesh of a torus

Rendering as Mesh vs. Point cloud: Compared to a point cloud, a mesh is easy to render with less memory usage (though it needs an additional connectivity information) and high rendering quality as point cloud requires a lot of point samples to achieve a rendering without spaces between the points. Also, the mesh representation includes normal information that allows us more realistic rendering (e.g., specular highlight) based on the rendering equation. Occlusion is also difficult to handle in the point cloud rendering.

6. Do Something Fun (10 points) p6.ipynb


Vertigo shot with multiple cows

6. Do something fun: vertigo shot with multiple cows

7. Sampling Points on Meshes (10 points) p7.ipynb


Point cloud with different number of samples are shown below.

7. #samples = 10
7. #samples = 100
7. #samples = 1000
7. #samples = 10000