8000 Remove non existant flags of model_aligner from docs by TamirCohen · Pull Request #2696 · colmap/colmap · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Remove non existant flags of model_aligner from docs #2696

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

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions doc/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -244,13 +244,10 @@ transformation. Then, the model can be geo-registered using::
--ref_images_path /path/to/text-file (or --database_path /path/to/database.db) \
--ref_is_gps 1 \
--alignment_type ecef \
--robust_alignment 1 \
--robust_alignment_max_error 3.0 (where 3.0 is the error threshold to be used in RANSAC)
--alignment_max_error 3.0 (where 3.0 is the error threshold to be used in RANSAC)

By default, the robust_alignment flag is set to 1. If this flag is set, a 3D similarity
transformation will be estimated with a RANSAC estimator to be robust to potential outliers
in the data. In such case, it is required to provide the error threshold to be used in the
RANSAC estimator.
A 3D similarity transformation will be estimated with a RANSAC estimator to be robust to potential outliers
in the data. It is required to provide the error threshold to be used in the RANSAC estimator.

Manhattan world alignment
-------------------------
Expand Down
5 changes: 1 addition & 4 deletions src/colmap/exe/model.cc
Original file line number Diff line number Diff line change
Expand Up @@ -262,10 +262,7 @@ void PrintComparisonSummary(std::ostream& out,
// the estimate an alignment
// - estimate_scale: if true apply the computed scale when aligning the
// reconstruction
// - robust_alignment: if true use a ransac-based estimation for robust
// alignment
// - robust_alignment_max_error: ransac error to use if robust alignment is
// enabled
// - alignment_max_error: ransac error to use
int RunModelAligner(int argc, char** argv) {
std::string input_path;
std::string output_path;
Expand Down
Loading
0