Skip to content
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

IncrementalSfM: expose nbOutliersThreshold param #1436

Merged
merged 4 commits into from
May 23, 2023

Conversation

mugulmd
Copy link
Contributor

@mugulmd mugulmd commented May 17, 2023

Description

The goal of this PR is to expose an internal variable used in the sequential SfM reconstruction engine called nbOutliersThreshold.

This variable is now accessible through the parameters of the reconstruction engine and the incremental SfM command line.

@fabiencastan
Copy link
Member

Add support for -1 to completely disable BA iterations:
while(nbOutliers > nbOutliersThreshold);
=>
while(nbOutliersThreshold >=0 && nbOutliers > nbOutliersThreshold);

@mugulmd mugulmd force-pushed the mug/exposeNbOutliersThreshold branch from 0b2a7eb to fbd9ad7 Compare May 17, 2023 14:35
@mugulmd
Copy link
Contributor Author

mugulmd commented May 17, 2023

Add support for -1 to completely disable BA iterations: while(nbOutliers > nbOutliersThreshold); => while(nbOutliersThreshold >=0 && nbOutliers > nbOutliersThreshold);

Done

@cbentejac cbentejac merged commit e6c1683 into develop May 23, 2023
@cbentejac cbentejac deleted the mug/exposeNbOutliersThreshold branch May 23, 2023 10:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants