16-889 Assignment 1

Name: Anirudh Chakravarthy

Andrew ID: achakrav

Question 1

Question 1.1

Question 1.1

Usage:

python -m starter.render_mesh

Question 1.2

Question 1.2

Usage:

python -m starter.dolly_zoom --num_frames 10

Question 2

Question 2.1

A tetrahedron will have 4 faces and 4 vertices.

Question 2.1

Usage:

python -m starter.q2 --object tetrahedron --image_size 256 --output_path images/q2_1.gif

Question 2.2

A cube will have 12 faces and 8 vertices.

Question 2.2

Usage:

python -m starter.q2 --object cube --image_size 256 --output_path images/q2_2.gif

Question 3

I chose color1 = [1,1,0] and color2=[1,0,0]. Concretely, color1 is yellow and color2 is red, so the cow is shaded from yellow to orange to red like a gummy bear :)

Question 3

Usage:

python -m starter.q3 --image_size 256 --output_path images/q3.gif

Question 4

Description of relative rotation: Assume that the two camera coordinate systems and a world coordinate system. Each camera coordinate system has it's corresponding rotation transformation with respect to world coordinate system. The relative rotation between the two cameras tries to capture the "incremental rotation" which needs to be composed with the first camera's rotation matrix to arrive at the second camera's rotation matrix. In other words, it describes the orientation of second camera's axes with respect to the first camera. Pytorch3d takes the transpose of this matrix as input.

Description of relative translation: The relative translation vector denotes the location of the first camera's origin with respect to the second camera coordinates.

Usage:

python -m starter.camera_transforms --image_size 512

Question 4.1

Question 4.1

R_rel = [[0,1,0],[-1,0,0],[0,0,1]]
T_rel = [0,0,0]

The relative rotation sets the new X axis to old Y axis and new Y axis to old negative X axis.

Question 4.2

Question 4.2

R_rel = [[0,0,1],[0,1,0],[0,0,1]]
T_rel = [0,0,3]

The relative translation moves the object 3 units away along the z-axis.

Question 4.3

Question 4.3

R_rel = [[0,0,1],[0,1,0],[0,0,1]]
T_rel = [0.5,-0.5,0]

The relative translation moves the new camera coordinates to (-0.5, 0.5) so the object moves diagonally downwards.

Question 4.4

Question 4.4

R_rel = [[0.,0.,1],[0,1,0],[-1.,0,0]]
T_rel = [-3,0,3]

The relative rotation sets the new X-axis to the old Z-axis and the new Z-axis to the old negative X-axis, and also translates the origin in the X-Z plane.

Question 5

Question 5.1

Question 5.1a Question 5.1b Question 5.1c

Usage:

python -m starter.q5 --render point_cloud

Question 5.2

100 samples:

Question 5.2

1000 samples:

Question 5.2

Usage:

python -m starter.q5 --render parametric --num_samples 100

Question 5.3

Rendering a point cloud has several advantages over rendering meshes:

  1. Point clouds are more memory efficient since we store only points, while in meshes we also store the faces.
  2. It's faster and easier to render since we just need to place the point at it's corresponding 3D location.

The advantages of rendering meshes over point clouds are:

  1. Quality of rendering is better since we can observe connectivity between points.
  2. We can reason about object entities as we can now observe surfaces rather than just surfaces.

Question 5.3

Usage:

python -m starter.q5 --render implicit

Question 6

I rendered a helix using a parametric equation for each point on it.

Question 6

Usage:

python -m starter.q6

Question 7

Question 7a Question 7b Question 7c Question 7d

Usage:

python -m starter.q7 --num_samples 10000