16-889 Assignment 1: Rendering Basics with PyTorch3D

Author: Zhe Huang (zhehuang@andrew.cmu.edu)

0.1 Rendering your first mesh

1.1 360-degree Renders

1.2 Re-creating the Dolly Zoom

2.1 Constructing a Tetrahedron

It should have 4 vertices and 4 faces

2.2 Constructing a Cube

It should have 6 vertices and 12 faces

3 Re-texturing a mesh

I chose the same set of colors as in the demo, i.e. color1 = [0, 0, 1] and color2 = [1, 0, 0].

4 Camera Transformations

So the R_relative is an additional rotational matrix that will rotate the camera along a given axis clockwisely relatively to its initial position. Similarly, T_relative is an additional translational matrix that will translate the camera along the negative direction of given axis (e.g. [1, 0, 0] moves the camera 1 uint towards the -Xdirection) relatively to its initial position.

5.1 Rendering Point Clouds from RGB-D Images

5.2 Parametric Functions

5.3 Implicit Surfaces

Discussion: rendering as mesh definitely results in a higher quality output as there's fewer artifacts caused by insufficient sampling of point clouds. This will be more noticeable when it comes to render complex objects such as a cow. However, rendering mesh usually takes more memory and computations. The more values in the voxel grid, the more accurate the generated mesh will be and the more computations it will take. If the number of voxel values is not enough, the resulted image maybe well distorted. On the other hand, rendering point cloud is usually faster and more flexible as the number of samples can be chosen from a wide variety of values.

6 Do Someting Fun

A bolt that does the tightening.

(Extra Credit) 7 Sampling Points on Meshes