16-889 Project 1

Luyuan Wang (luyuanwang@cmu.edu)

Zero late days used! zero

1.1 360 degree renders

This is a cow model displayed in 360-degree:

cow_360

1.2 Dolly zoom effect:

dolly

2.1 Tetrahedron

To build a terahedron mesh, we need 4 vertices and 4 triangle faces.

tetra_360

2.2 Cube

A cube need 8 vertices, and 2x6 = 12 triangle faces (each plane need 2 triangle faces).

cube_360

3.1 Retexturing a mesh

color1 = [69, 104, 220]
color2 = [220, 106, 179]

retexture_cow_360

4.1 Camera transformations

The original image:

textured_cow

R = [[0, 1, 0], [-1, 0, 0], [0, 0, 1]] ; T = [0, 0, 0]

Rotate the camera along z axis by 90 degrees:

textured_cow_1

R = [[1, 0, 0], [0, 1, 0], [0, 0, 1]] ; T = [0, 0, 2]

Move the camera by 2 along z axis:

textured_cow_2

Rotate the camera along y and x axes by 2 degree, then translate 0.3 and -0.3 along x and y axes, respectively.

textured_cow_3

Rotate 90 degrees alon y axis, and then tranlate -3 and 3 on x and z axes, repectively:

textured_cow_4

5.1 Rendering point clouds

From left to right: the 1st depth image; the 2nd depth image; the union of both point clouds.

pc_all_360

 

5.2 Parametric functions

Point cloud of a torus (donut shape) -- the point cloud is pretty dense, but you can still see its points.

torus_pc_360

5.3 Implicit surfaces

A torus mesh:

f(x,y,z)=(x2+y2R)2+z2r2=0

 

torus_mesh_360

Generally, rendering a point cloud is much faster than rendering a mesh. Point is a very basic shape, it requires less calculation. However, mesh models have better render quality. With only a few points, it's hard to tell the 3D shape of the object. People need a pretty dense point cloud to recognize the real shape, which significantly increases the amount of data to store and process.

6 Something fun

This a point cloud of gas pipe, which is scanned by a in-pipe inspection robot (by Biorobotics Lab, Carnegie Mellon University). The abnormal area is a calibration board, which is used to measure the 3D scanning accuracy.

pipe_360