Home Work 1: FNU ABHIMANYU (abhiman2@andrew.cmu.edu)

1.1 360-degree Renders

1.2 Re-creating the Dolly Zoom

2.1 Constructing a Tetrahedron

The mesh has 4 faces and 4 vertices. The coordinates of the vertices are [[0,1,2],[1,2,3],[2,3,0],[3,0,1]]

2.2 Constructing a Cube

The mesh has 8 faces and 12 vertices. The coordinates of the vertices are [[-1.,-1.,-1.],[1.,-1.,-1.],[-1.,1.,-1.],[-1.,-1.,1.],[1.,1.,-1.],[1.,-1.,1.],[-1.,1.,1.],[1.,1.,1.]]

3. Re-texturing a mesh

The rendering has the color as follows: color1 = [0,1,0] (green), color2 = [1,0,0] (red)

4. Camera Transformations

R_relative=[[0, 1, 0], [-1, 0, 0], [0, 0, 1]] T_relative = [0, 0, 0]

The R_relative rotates the camera by +90 degrees along the z axis

R_relative = [[1, 0, 0], [0, 1, 0], [0, 0, 1]], T_relative=[0, 0, 2]

T_relative shifts the camera away from the cow in the z-axis by 2 units.

R_relative = [[1, 0, 0], [0, 1, 0], [0, 0, 1]], T_relative=[0.5, -0.2, 0]

T_relative shifts the camera in the XY plane, by 0.5 units in x axis and -0.2 in yaxis

R_relative = [[0, 0, 1], [0, 1, 0], [-1, 0, 0]] and T_rel = [-3.0, 0, 3]

The R_relative rotates the camera by +90 degrees along the y axis

5. Rendering Generic 3D Representations

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

5.2 Parametric Functions

5.3 Implicit Surfaces

The mesh reconstruction is better in terms of connectivity, structure and rendering quality. The point cloud reconstruction is better in terms of rendering speed and also memory usage.

6. Do Something Fun

In this problem statement, I have imported two furnitures (sofa) in a room setting and imported them at two different locations. This can be used in an augmented reality setting, where different furnitures/objects can be imported into a room setting at a particular location with different textures and can be visualized before buying them.

7. Sampling Points on Meshes

At 10 points:

At 100 sampled points:

At 1000 points:

At 10000 points: