Assignment 1: Rendering Basics with PyTorch3D

Name: Edward Li
Andrew ID: edwardli
Late Days Used: Three

1. Practicing with Cameras

1.1 360-degree Renders (5 points)

A basic render of a cow on a turntable. See code in starter/render_mesh_turntable.py.

Cow 360

1.2 Re-creating the Dolly Zoom (10 points)

With an FOV of $\theta$, we move the camera a distance along the $z$-axis proportional to $\cot(\frac{\theta}{2})$. See code in starter/dolly_zoom.py.

Cow Dolly

2. Practicing with Meshes

2.1 Constructing a Tetrahedron (5 points)

This tetrahedron has 4 vertices and 4 triangle faces. See code in starter/render_tetrahedron.py.

Tetrahedron

2.2 Constructing a Cube (5 points)

This cube has 8 vertices and 12 triangle faces. See code in starter/render_cube.py.

Cube

3. Re-texturing a mesh (10 points)

I chose to make a gradient from brown ([0.26, 0.14, 0.09]) to white ([1, 1, 1]), as cows come in brown and white. Perhaps this can be some sort of hybrid unity cow thing. See code in starter/render_retexture.py.

Retexture

4. Camera Transformations (20 points)

Rotation A

Rotation B

Rotation C

Rotation D

See code in starter/camera_transforms.py.

5. Rendering Generic 3D Representations

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

Below are the first image, second image, and combined images in order. See code in starter/render_plant.py.

Image 1 Image 2 Combined
Plant 1 Plant 2 Plant All

5.2 Parametric Functions (10 points)

A torus! With 1000 samples. We texture the same way that was originally given. See samples/render_torus.py.

Torus

5.3 Implicit Surfaces (15 points)

We use marching squares to render a torus implicit surface. See code in starter/render_implicit.py.

Implicit Torus

In terms of mesh and point cloud tradeoffs, we have:

6. Do Something Fun (10 points)

We all know that approximating cows as spheres is overly simplistic. Finding the appropriate approximation for a cow in physics problems is still an open research question. However, a common first-order attempt at this is of course to approximate the cow as a torus.

For this part, I retexture the point cloud torus as a cow. We observe that the cow texture works as a torus, as its edges are all just the same base cow color. Then, we load the texture and rescale it across $\phi$ and $\theta$ to align with points in a sensible way. See code in starter/render_cow_torus.py.

Cow Torus

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

Code for this part can be found in samples/extra_credit.py.

Mesh 10 points 100 points 1000 points 10000 points
Mesh 10 points 100 points 1000 points 10000 points