Assignment 3

Name: Caroline Ai

1. Differentiable Volume Rendering

1.3. Ray sampling (10 points)

grid visualization:

Grid

ray visualization:

Rays

1.4. Point sampling (10 points)

Visualize sample points from the first camera:

Sample points

1.5. Volume rendering (30 points)

Spiral Rendering of Part 1 Spiral Rendering of Part 1

2. Optimizing a basic implicit volume

2.1. Random ray sampling (5 points)

The get_random_pixels_from_image method is implemented in ray_utils.py.

2.2. Loss and training (5 points)

loss is implemented in main.py.

Box center: (0.25, 0.25, -0.00) Box side lengths: (2.00, 1.50, 1.50)

2.3. Visualization

Spiral Rendering of Part 2

3. Optimizing a Neural Radiance Field (NeRF) (30 points)

I used the original experimental settings in configs/nerf_lego.yaml.

Spiral Rendering of Part 3

4. NeRF Extras (Choose at least one! More than one is extra credit)

4.1 View Dependence (10 pts)

I've added another experimental setting file nerf_lego_4_1.yaml in configs.

Train the NeRF model adding view dependence

python main.py --config-name=nerf_lego_4_1

Spiral Rendering of Part 4.1

NeRF without view dependence NeRF with view dependence
Spiral Rendering of Part 3 Spiral Rendering of Part 4.1

The NeRF model adding view dependence shows more details of the lego compared to the model without view dependence, because it trains the model along the viewing direction. In this particular case, the overfitting effect is not obvious. However, depending on the specularity in the inputs, the model with view dependence might include some unintended points or discolor some points.

4.3 High Resolution Imagery (10 pts)

After revising some parameters in the setting,

chunk_size: 16384 render_interval: 50

I get the output:

Spiral Rendering of Part 4.3

Changing n_pts_per_ray:

n_pts_per_ray = 256 n_pts_per_ray = 128 n_pts_per_ray = 64
Spiral Rendering of Part 4.3 Spiral Rendering of Part 4.3 Spiral Rendering of Part 4.3

The accuracy and sharpness of the model decrease as point samples per ray decrease. More point samples per ray includes more details in the model, but it could cause the output to take up too much memory.

After testing different network capacities, larger n_hidden_neurons_xyz and n_hidden_neurons_dir allows larger network capacity and generates clearer and sharper output.