-
-
Notifications
You must be signed in to change notification settings - Fork 88
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
Sequential mode error #57
Comments
I just solve the problem by rerunning the feature extraction with the same code of the current repo. Another question is whether it is possible to set ``Mapper.ba_local_max_num_iterations'' with the distributed_mapper. Do I need to recompile the code or provide the argument? Look forward for the reply. Thanks! |
Sure, you can set this option. Note that the constructor of the DistributedMapperController, |
Thanks for your help! |
@AIBluefisher After running the code, I found another issue. Since I use a fixed camera ( reference camera) along with 4 moving cameras during the data capture, 1/5 of the images should share the same extrinsics. Is this possible to set this prior during the colmap running? Is there any workaround? Thanks for your help very much! |
Seems very interesting. I may suggest two methods: (1) as one camera is fixed all the time, we can deem the observations (u_k0, u_k1, u_k2, ...) w.r.t. different frames of this camera as all the observations({u_k0 + u_k1 + u_k2 + …}) w.r.t. only one frame. (2) we can alternatively add extrinsic constraints to all frames captured by this fixed camera during BA, e.g. \min \sum_k P_k P_{k+1}^{-1}. I think the first one should be enough but the implementation might be trivial, the latter one should also work but can introduce more computation burden. |
Sure, I think you can do both of the two ways. Since the reference frames are easy to identify by the camera id, both methods should be easy to implement. After that, for the reference frames, we can collect all the observations and matches together, but we need to reindex the keypoints. |
Hi, thanks for this great work. When I try the sequential mode, I come across the following issue:
How can I solve it? Thanks!
The text was updated successfully, but these errors were encountered: