-
-
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
Can't run pipeline with sequential mode. #58
Comments
How do you build the database, by COLMAP or by DAGSfM? Since DAGSfM stores relative camera poses instead of the essential/fundamental/homography matrices, the database built by COLMAP is not compatible with DAGSfM. |
I built the database by COLMAP. Now I see, that it was a bad idea. |
The relative poses are obtained during feature matching. All you need to do is to rebuild a database. Actually, you can follow the pipeline in this script but replace colmap's original mapper at lines 34-39 with the distributed mapper. |
Hello again! |
I'm not sure what causes the crash. You may need to debug that piece of code. But you can simply set if (options_.retriangulate) {
LOG(INFO) << "Triangulating for separators...";
timer.Start();
Triangulate();
timer.Pause();
triangulate_time = timer.ElapsedSeconds();
} Then, you can rerun the sfm_aligner to merge all the partitions. The command can be like: colmap sfm_aligner --reconstructions_path {YOUR_PARTITION_PATH} |
I have database, which I got after colmap reconstruction(from original colmap). What could have gone wrong?
The text was updated successfully, but these errors were encountered: