16-889 Assignment 1: Rendering Basics with PyTorch3D

1.1 360-degree Renders (5 points)

cow_360

1.2 Re-creating the Dolly Zoom (10 points)

dolly

2.1 Constructing a Tetrahedron (5 points)

tetrahedron

Number of vertices: 4

Number of faces: 4

2.2 Constructing a Cube (5 points)

cube_360

Number of vertices: 8

Number of faces: 12

3 Re-texturing a mesh (10 points)

cow_retextured_360

color1 = [0, 0, 1]

color2 = [1, 0, 0]

4 Camera Transformations (20 points)

Image 1

textured_cow_1

Description: Rotate a mesh -90 degrees about the z axis

R_relative: [[np.cos(theta), np.sin(theta), 0], [-np.sin(theta), np.cos(theta), 0], [0, 0, 1]]

T_relative: [0, 0, 0]

Image 2

textured_cow_2

Description: Translate a mesh on the z axis by 2.0

R_relative: [[1, 0, 0], [0, 1, 0], [0, 0, 1]]

T_relative: [0, 0, 2.0]

textured_cow_3

Description: Translate a mesh on the x and y axes by 0.5 and -0.5 respectively

R_relative: [[1, 0, 0], [0, 1, 0], [0, 0, 1]]

T_relative: [0.5, -0.5, 0]

textured_cow_4

Description: Rotate 90 degrees about the y axis, and translate a mesh on the x and z axes by -3.0 and 3.0 respectively

R_relative: [[np.cos(theta), 0, np.sin(theta)], [0, 1, 0], [-np.sin(theta), 0, np.cos(theta)]]

T_relative: [-3.0, 0, 3.0]

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

plant1 plant2 plant_union
From left to right, a) The point cloud corresponding to the first image, b) The point cloud corresponding to the second image, and c) The point cloud formed by the union of the first 2 point clouds.

5.2 Parametric Functions (10 points)

torus_100 torus_500
From left to right, a) 100x100 grid, and b) 500x500 grid.

5.3 Implicit Surfaces (15 points)

torus_mesh

The rendering speed of the point cloud is faster than the mesh. This is because only the pixels projected by the 3D points for point cloud rendering are considered. However, for mesh rendering, the color of each pixel is determined based on the barycentric coordinate of the corresponding face, and this interpolation requires inspection of more pixels. Conversely, the rendering quality of the mesh is better than the point cloud due to the interpolation. The rendering image of the point cloud is sparse, and sometimes hard to see what kind of object is shown. The point cloud and mesh are easy to use and supported by many renderers. However, the implementation of mesh rendering is much more complex than the point cloud because pixel or face-level parallelization is essential to obtain the practical runtime. Finally, in terms of memory usage, the mesh is superior. The point cloud requires many 3D points to obtain high-quality images, but the mesh does not because of barycentric interpolation.

6 Do Something Fun (10 points)

something_fun target
From left to right, a) mesh after optimization, and b) target image.

Pytorch3D can be used as a differentiable renderer (differentiable regarding vertices and textures). I used Pytorch3d to attach the target image to the mesh constructed by the equation, X**6 + Y**7 + Z**8 - R**9. To this end, the L2 norm between a target image (right) and the rendered image with learnable textures is minimized such that the mesh can have the same texture as the target image.