Assignment 3¶
Name: Nitheesh Lakshminarayana
andrewId: nlakshmi
number of late days: 0
1.3. Ray sampling (10 points)¶
Visualization¶
Grid | Rays |
---|---|
![]() |
![]() |
1.4. Point sampling (10 points)¶
Visualization¶
1.5. Volume rendering (30 points)¶
Visualization¶
2. Optimizing a basic implicit volume¶
2.2. Loss and training (5 points)¶
Replace the loss in train
Box center: (0.25006094574928284, 0.25053277611732483, -0.00043326508603058755)
Box side lengths: (2.004148006439209, 1.5033373832702637, 1.5034971237182617)
2.3. Visualization¶
3. Optimizing a Neural Radiance Field (NeRF) (30 points)¶
Visualization¶
I've added an extra parameter in config file to control view dependence.
4. NeRF Extras (Choose at least one! More than one is extra credit)¶
4.1 View Dependence (10 pts)¶
NeRF model predicts the volume density and features as a function of position and direction. If this direction (view-dependence) is increased, ie a lot of inputs along a particular direction, the model would overfit to this view. On the contrary, increasing the view-dependence allows the model to capture more details and specularities. Therefore, the view-dependence should be balanced to allow the model to be generalizable to all directions and also capture/render all the model details.
4.3 High Resolution Imagery (10 pts)¶
I experimented with various points_per_ray
and increasing the model size i,e. number of layers and number of neurons per layer. The below results show the results from increasing the number of points for a fixed model size. This shows that more the number of the sample points per ray, the better is the rendered model. However, it also increases the memory and compute. Increasing the model size and number of epochs enables the model to capture a lot of details, like the lego blocks, etc, however I ran out of memory for this configuration.
Points/Ray = 32 | Points/Ray = 64 | Points/Ray = 128 |
---|---|---|
![]() |
![]() |
![]() |
training:
batch_size: 1024
renderer:
chunk_size: 32768
sampler:
n_pts_per_ray: 256
implicit_function:
type: nerf
view_dependence: True
n_harmonic_functions_xyz: 6
n_harmonic_functions_dir: 2
n_hidden_neurons_xyz: 256
n_hidden_neurons_dir: 128
density_noise_std: 0.0
n_layers_xyz: 8
append_xyz: [6]
PS - I tried to implement the original network, but constantly found myself running out of memory, despite lowering the chunk size, batch_size, network size...etc. Either I ran out of memory, or the samples were so low that the rendered image was blank or wasn't useful. So just made this video to keep it lively :)