forked from nerfstudio-project/nerfstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate Ref-Nerf in nerfstudio #1
Comments
Done in Check model definition in Pending: test usage |
@dberga have you tested your implementation on datasets provided in paper? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Adding ref-nerf in nerfstudio has been already discussed here
nerfstudio-project#1469
Suggestions: i.e. take nerfacto or mip-nerf as example?
Note: the orientation calculation is already implemented in nerfacto (the Reflection Direction)
https://github.com/nerfstudio-project/nerfstudio/blob/main/nerfstudio/models/nerfacto.py
https://github.com/nerfstudio-project/nerfstudio/blob/main/nerfstudio/model_components/losses.py#L200
To do: the Directional encoding (Moses-Fischer vMF), but here we can utilize and modify the field processing, namely, the perceptron encoding (MLP) to generate that distribution instead:
https://github.com/nerfstudio-project/nerfstudio/blob/main/nerfstudio/fields/nerfacto_field.py
https://github.com/dberga/nerfstudio/blob/main/nerfstudio/fields/density_fields.py
https://github.com/dberga/nerfstudio/blob/main/nerfstudio/fields/vanilla_nerf_field.py
https://github.com/nerfstudio-project/nerfstudio/blob/main/nerfstudio/models/instant_ngp.py#L115
https://github.com/dberga/nerfstudio/blob/main/nerfstudio/field_components/encodings.py
https://github.com/nerfstudio-project/nerfstudio/blob/main/nerfstudio/field_components/mlp.py
After including the model in https://github.com/dberga/nerfstudio/blob/main/nerfstudio/models, you must include the model instruction name for "ns-train model" in https://github.com/dberga/nerfstudio/blob/main/nerfstudio/configs/method_configs.py
The text was updated successfully, but these errors were encountered: