Name: Sri Nitchith Akula
Andrew ID: srinitca
Run Command
python main.py --config-name=box
Visualization
XY-Grid | Rays |
---|---|
![]() |
![]() |
Run Command
python main.py --config-name=box
Visualization
Run Command
python main.py --config-name=box
Visualization
Rendered Cube | Depth Image |
---|---|
![]() |
![]() |
Code:
def get_random_pixels_from_image(n_pixels, image_size, camera):
xy_grid = get_pixels_from_image(image_size, camera)
# TODO (2.1): Random subsampling of pixel coordinates
xy_grid_sub = xy_grid[torch.randperm(xy_grid.size(0))[:n_pixels]]
# Return
return xy_grid_sub.reshape(-1, 2)[:n_pixels]
Code:
loss = torch.nn.MSELoss(reduction='mean')(out['feature'], rgb_gt)
Run Command
python main.py --config-name=train_box
Results:
Box center: (0.25, 0.25,0.00)
Box side lengths: (2.00, 1.50, 1.50)
Run Command
python main.py --config-name=train_box
Visualization
Before Training | After Training |
---|---|
![]() |
![]() |
Run Command
python main.py --config-name=nerf_lego
Visualization
Run Command
# Change use_dirs to True in nerf_lego.yaml
python main.py --config-name=nerf_lego
Visualization
Size | Without View Dependence | With View Dependence |
---|---|---|
128x128 | ![]() |
![]() |
400x400 | ![]() |
![]() |
Comments
Run Command
python main.py --config-name=nerf_lego_highres
Visualization
Low Resolution | High Resolution |
---|---|
![]() |
![]() |
Effect of increasing n_pts_per_ray
n_pts_per_ray = 64 |
n_pts_per_ray = 128 |
n_pts_per_ray = 256 |
---|---|---|
![]() |
![]() |
![]() |
Comments
n_pts_per_ray
helps improving quality of rendered output