Number of late days used: 0
You can run the code for part 1 with:
python main.py --config-name=box
Grid | Rays | Point Sampling | Color | Depth |
---|---|---|---|---|
![]() | ![]() | ![]() | ![]() | ![]() |
Run the following for part 2
python main.py --config-name=train_box
The center of the box, and the side lengths of the box after training, rounded to the nearest 1/100 decimal :
Box center: (0.25, 0.25, 0.00)
Box side lengths: (2.00, 1.50, 1.50)
You can train a NeRF on the lego bulldozer dataset with
python main.py --config-name=nerf_lego
and
python main.py --config-name=nerf_lego_highres
respectively for low and high res.
NOTE: I have added an additional parameter to the config file, "use_direction" within the implicit_function block. This is set to False in this question as we are not using ray direction embeddings.
Result:
Add view dependence to your NeRF model.
You can train a NeRF on the lego bulldozer dataset with "use_direction" set to True in the config files.
python main.py --config-name=nerf_lego
and
python main.py --config-name=nerf_lego_highres
respectively for low and high res.
Result:
Though maybe not very evident for this example at this resolution and given the number of epochs trained for, adding view dependence results in a more realistic rendering. Ex: The specular details on the bulldozer's tyre thread, siren etc. as shown in these comparison frames (L- No view dependence R- with view dependence)
Implemented the heirarchical sampling sampler class in sampler.py
Run NeRF on high-res imagery using the nerf_lego_highres.yaml
Experiment 1: Varied the value for n_pts_per_ray.
We see that with increase in this value, the quality of result also improves. This is likely as the color is computed on a greater level of detail as more points get sampled along a ray. This might saturate beyond a certain value as sampling any more more might not further improve the results considerably.
84 | 96 | 256 |
---|---|---|
![]() | ![]() | ![]() |
Experiment 2: Without and with view dependence
Without View-Dependence | With View-Dependence |
---|---|
![]() | ![]() |
Experiment 3: Varying the number of epochs (15-300)
Without View-Dependence | With View-Dependence |
---|---|
![]() | ![]() |
In addition to this, I also experimented with architecture and found these set of values to be giving the best results for me (Given the limited number of experiments carried out and the compute resources available to me)
n_harmonic_functions_xyz: 10
n_harmonic_functions_dir: 4
n_hidden_neurons_xyz: 256
n_hidden_neurons_dir: 128
density_noise_std: 0.0
n_layers_xyz: 8
append_xyz: [4]