-
Notifications
You must be signed in to change notification settings - Fork 36
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
how can i get transforms.json #8
Comments
@yang1hu Hi, thank you. You can get the colmap pose with transfrom.json through nerfstudio data process script: |
I also encountered this problem, when I do data conversion through nerfstudio in ubuntu, camera.txt and image.txt are generated instead of camera.bin and image.bin, which causes transform.json generation to fail |
thanks for your tips. I have handle the problem. |
I did get the transforms.json, however , i use the dataset to train ,when i execute the train command i get the problem in the picture ,the command is: ns-train dn-splatter --data /root/autodl-tmp/dn-splatter/poster --pipeline.model.use-depth-smooth-loss True --pipeline.model.use-sparse-loss True --pipeline.model.use-binary-opacities True |
@yang1hu , this issue is caused by changes in the main branch of nerfstudio within the last week. Thanks for pointing this out. So the problem is that |
This latest addition has broken things for me
is there a specific version of nerfstudio I should be installing to ensure camera_optimizer is in splatfacto? or should I also be adding the camera_optimizer to DNSplatterModelConfig |
I see, so the unfortunate thing is that nerfstudio version 1.0.3 from before last week worked fine, but a recent merge to enable camera optimization with the splatfacto model has been merged which is essentially a "breaking" change for any model subclassing splatfacto, also the version has not been updated. My suggestion is to simply git pull the latest main from nerfstudio. I will see if I can hack something that allows both previous and the most latest nerfstudio version to work simultaneously. Sorry about this, this is a good learning experience for me trying to ship any code xD Another solution would be to put a stricter version of nerfstudio as a project dependency for dn-splatter. EDIT: should be addressed here: #14 |
@maturk so basically I would want to replace in pyproject.toml edit: I realized that the build system for this isn't with poetry so the only way is to either do it manually in the conda environment or with the pixi.toml for now by adding
and removing
from the pyproject.toml |
Addressed this issue: [how can i get transforms.json](maturk#8)
hello,this is a great project. however! I wanna use my custom dataset, the dataset is from a video and convert with colmap, i can not get the transfroms,json,how can i get it ,thank you very much
The text was updated successfully, but these errors were encountered: