16-889 Assignment 3

Luyuan Wang (luyuanw@andrew.cmu.edu)

1.3 Ray sampling

vis_grid:

vis_grid

vis_rays:

vis_ray

1.4 Point sampling

vis_sampled

1.5 Volume rendering

Rendered color:

part_1

Depth map:

I can generate a depth map that similar to the given one with the following code:

The result is shown below:

depth

However, this approach doesn't looks correct to me. For a depth map, we shouldn't consider the weights behind of the nearest point. If we say the dark purple color represents infinity and the yellow represents 0 (opposite to the default color map of matplotlib, this looks more like a inverse depth map), then the edge that facing towords the camera should be yellow, but it shows green in the figure.

A correct way to generate a depth map should be like this: count the distance from the center of the camera, and keep accumulating the distance until reach the first obstacle (density > some threshold). My code is shown below:

The generated depth map:

depth_true

I think this should be the correct answer.

2 Optimizing a basic implicit volume

part_2

3 Optimizing a Neural Radiance Field (NeRF)

I used a similar network architecture with the original NeRF paper. The result on low-resolution input is shown below. It looks nice and similar to the given GIF image.

part_3_small

4.3 High Resolution Imagery

With the default settings:

part_3

After I changed the number of sampled points to 56, which is smaller than the default setting:

part_3_56

It significantly speed up the training process. However, the image quality gets lower, some of the details are missing.