16-889 Assignment 1: Rendering Basics with PyTorch3D

Note:

1. Practicing with Cameras

1.1. 360-degree Renders (5 points)

python3 main.py -q 1.1

Cow

1.2 Re-creating the Dolly Zoom (10 points)

python3 main.py -q 1.2

Cow Dolly Zoom

2. Practicing with Meshes

2.1 Constructing a Tetrahedron (5 points)

python3 main.py -q 2.1

Tetrahedron

2.2 Constructing a Cube (5 points)

python3 main.py -q 2.2

Cube

3. Re-texturing a mesh (10 points)

python3 main.py -q 3

Cow Restextured

4. Camera Transformations (20 points)

python3 main.py -q 4
Transform Intuition
Flipped R_relative is such that the axes are rotated about the z-axis. The matrix is created by understanding what the new axes would be oriented towards after rotation. The cow model needs to be rotated by 90 in clockwise. Thus, the camera is rotated by 90 counter-clockwise. Since the rotation is about the z axis, there's no need to change the position of the camera. So, T_relative would be all 0s.
Moved Away The cow seems further away. This is done by moving the camera away. Thus, a further translation (T_relative) of 2 is added on top of the original 3. Thus, the camera is now at (0, 0, -5).
Shifted The cow moves towards left and a bit upwards with respect to the camera as compared to the original. Thus, the camera is moved in the opposite manner - right (+ve x-axis) and down (-ve y axis).
Side-view The cow is rotated by 90 clockwise about the positive y axis. Thus, the camera is first rotated 90 clounter-clockwise about y axis. Now along the rotated axes, the camera needs to be moved in its -ve x axis to reach the world fram origin and then along its +ve z axis to get the sideview.

CowRender2 CowRender1 CowRender3 CowRender4

5. Rendering Generic 3D Representations

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

python3 main.py -q 5.1
Plant1 Plant2 Plant_union
Plant1 Plant2 Plant_union

5.2 Parametric Functions (10 points)

python3 main.py -q 5.2 -n 100
Torus 100 Torus 1000
Torus100 Torus1000

5.3 Implicit Surfaces (15 points)

python3 main.py -q 5.3

TorusMesh

As per the rendering experience, meshes are easier and faster to render while retaining most of the 3d representational information. For a higher number of sampled points, the point cloud and mesh representations both have similar quality. However, mesh is able to render better at a faster speed and so, is more convenient to use.

6. Do Something Fun (10 points)

python3 main.py -q 6

UFO and an Alien
UFO

I have used models of an alien and a UFO. I was able to align and make these camera facing by using different rotation matrices. Also, to get the intended motion, I had to play around with the translation matrices.

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

python3 main.py -q 7 -n 10000

10 points sampled
CowCow_10

100 points sampled
CowCow_100

1000 points sampled
CowCow_1000

10000 points sampled
CowCow_10000