Question 1
Q1.3
Here is the result from my grid calculation.

Q1.4
Here is a picture of the sampled points spreading out from the camera. They form this "fan" shape.
Q1.5
Shown here is the depth map for the cube.

Question 2
Q2.1
The way I am sampling is by creating a randomized integer tensor usingtorch.randint(0, n_rays, (n_points, ))
and then using it to index into the xy_grid
tensor.
Q2.2
I just used thetorch.nn.MSELoss()
function.
The box center after my optimization was: (0.25, 0.25, -0.00). The side length was: (2.00, 1.50, 1.50)
Q2.3

Question 3
The result of my Neural Radiance Field is shown below:

Question 4
For this question I decided to train the high-res NeRF model using the nerf_lego_highres.yaml
configuration.

