-
Notifications
You must be signed in to change notification settings - Fork 639
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
Re-using Dust3r output with new images #98
Comments
Also it's interesting that going from 2 images with the |
Re: "Each time I try I get an error about the requires_grad when running scene.preset_principal_point" Unintuitively, I think that you need to initialize global_aligner with the "optimize_pp=True" option beforehand |
This is really helpful! I've gotten further than before.
I've got here and if I get further will update! |
For registering the new image, I ran into the problem that the estimated scale is sensitive to the noise. I guess it is due to the procrustes problem is not robust, do you have some idea on it? |
hi @relh Part of the depth estimation part of the process looks like this. It seems that there is no problem. I am very confused as to why there is a problem with the final result. |
I have observed this as well. May I ask what should be done to fix this scale issue? If I keep using |
I'm experiencing quite a sizable increase in optimisation time when reconstructing with new images. |
I switched to mast3r which uses a cache and it seems to have sped up things when using more than 2 images |
I've tried mast3r too when adding new images to a scene with presets but it's still slower than just running the whole scene without any presets. Are you adding new images to a scene with known poses? Edit: If I increase the LR, I can reduce the reconstruction iterations which seems to take the same time to execute as unintialised optimisation, but with better accuracy in the end. |
Hi all!
I have a setup where I run dust3r on a few images, then I want to add images to this and run it again.
I've been following the issues #54 , #30 , #17 . And using this
ModularPointCloudOptimizer
: 4a414b6I'm wondering if there's anything else that can be preset in a scenario like this. Basically, re-using existing depth_maps with
_set_depthmap
(doesn't seem to save time, maybe I need to disable grad on the set depth_map?).I haven't been able to get the normal
PointCloudOptimizer
withcompute_global_alignment(init='known_poses'
to work either. Each time I try I get an error about therequires_grad
when runningscene.preset_principal_point
.I'm mostly just opening this issue in-case you guys can think of a way to incorporate new images into an existing
Dust3r
scene efficiently, as this is my use case.Thanks so much for making such an incredible project! Looking forward to Mast3r too :).
The text was updated successfully, but these errors were encountered: