abrilcf / mednerf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parameter

cong-code opened this issue · comments

Hi, author, I'd like to consult a few hyperparameters given in the code:radius, near, far, fov, umin, umax, vmin, vmax, and what they mean. How do you determine these for different X-rays devices。(u, v) denotes the center of patch? I understand that (u, v) is the central coordinate of patch, why is the Angle given.

Hi, those parameters correspond the camera/scene. Near and far are the scene bounds (you can find more on this from NeRF's original repo), radius depends on these two. u and v are for azimuth and polar angle, which are set in ranges for a rough distribution of the camera poses. And fov is the field of view. You will find also useful the original graf repo for how these are set for different datasets.