16889 Learning for 3D Vision: Assignment 1
|
|
1. Practicing with Cameras
|
|
1.1 360-degree renders
|
|
1.2 Re-creating the Dolly Zoom
|
2. Practicing with Meshes
|
|
2.1 Constructing a Tetrahedron
The tetrahedron mesh has 4 vertices and 4 triangle faces
|
|
2.2 Constructing a Cube
The cube mesh has 8 vertices and 12 triangle faces
|
|
color1 = [0,1,0] and color2 = [1,0,0]
|
4. Camera Transformations
|
|
R_relative = [[0,1,0], [-1,0,0],[0,0,1]]
T_relative = [0,0,0]
Rotation along z-axis by 90-degrees; no translation
|
|
R_relative = [[1, 0, 0], [0, 1, 0], [0, 0, 1]]
T_relative = [0,0,2]
No Rotation; translation along z-axis by 2m
|
|
R_relative = [[1, 0, 0], [0, 1, 0], [0, 0, 1]]
T_relative = [0.5,-0.5,0]
No Rotation; translation along +x axis by 0.5 and -y axis by 0.5
|
|
R_relative = [[0,0,1], [0,1,0],[-1,0,0]]
T_relative = [-3,0,3]
Translation along y-axis by 90-degrees; translation by 3 on -x and z axes (wrt T_0)
|
R_relative rotates the camera clock-wise or counter-clockwise along the specified axis and T_relative translates the camera position along the given axis/axes by the specified distance
|
5. Rendering Generic 3D Representations
|
5.1 Rendering Point Clouds from RGB-D Images
|
|
5.2 Parametric Functions
|
|
5.3 Implicit Surfaces
|
Rendering a mesh is faster than rendering a sufficiently dense point cloud (dense enough that the underlying structure is clear). The rendering time for a point cloud depends on the number of points sampled.
The rendering quality of a point cloud depends on the number of points sampled - more sampled points creates a better point cloud.
The rendering quality of a mesh is usually better than that of a point cloud (comparing a mesh of a given fixed resolution and it's corresponding point cloud; though in general the quality of a mesh itself also depends on whether it is a high-poly or low-poly mesh).
The memory usuage for a mesh is typically lesser than that of a point cloud - as we sample a large number of points, we need to store a large number of (x,y,z) coordinates. In case of a mesh, the number of vertices and faces are usually less and require less memory than point cloud.
The ease of use depends on the use case - while polygonal meshes are better suited for graphics applications, point clouds are better suited for an application involving part-wise segmentation and texturing of a mesh. (A mesh is convereted into a point cloud before part-wise segmentation)
|
Both the chair and the teapot meshes taken from Free3D. I tried making the teapot transparent using Materials and BlendParams
but varying the gamma did not result in noticable or visible transparency and so decided to create like a poreclain kind of look for the teapot.
|
(Extra Credit) 7. Sampling Points on Meshes
|
|