ipython nbconvert --to HTML your_notebook.ipynb
You can run the following command to get the result.
python main.py --config-name=box
Visulization of sample point
You can run the following command to get the result.
python main.py --config-name=box
Spiral Rendering of Part 1 | depth |
---|---|
![]() |
![]() |
Please check the following function in the code
xy_grid = get_random_pixels_from_image(cfg.training.batch_size, image_size, camera)
Please check the following function in the code
loss = None
Box center: (0.25013208389282227, 0.25044694542884827, -0.0007905613165348768)
Box side lengths: (2.0040059089660645, 1.5028941631317139, 1.5035169124603271)
Please check the following function in the code
python main.py --config-name=train_box
You can get the result with following command.
python main.py --config-name=nerf_lego
implicit_function:
type: nerf
view_dependence: True
n_harmonic_functions_xyz: 6
n_harmonic_functions_dir: 2
n_hidden_neurons_xyz: 128
n_hidden_neurons_dir: 64
density_noise_std: 0.0
n_layers_xyz: 6
append_xyz: [3]
Turn on View Dependence | Turn off Videw Dependence |
---|---|
![]() |
![]() |
NeRF model uses a function of postion and direction to predict the volume density and color of features. If we add more direction to view the scenes (for example: getting more input images to train the network), we will have more chance to learn more detail of scenes. However, if we just get a lot of inputs along a particular direction, the model would overfit to this view. Therefore, the view-dependence should make sure that the modle could learn all direction of the scene and capture all the details.
You can get the result with following command.
python main.py --config-name=nerf_lego_highres
I changed the number of points_per_ray with 32, 64 and 128. As expected, the more the number of the sample points per ray, the more detail modle will learn. However, it also increases the memory and comput.
n_pts_per_ray=16 | n_pts_per_ray=32 | n_pts_per_ray=64 | n_pts_per_ray=128 |
---|---|---|---|
![]() |
![]() |
![]() |
![]() |