-
Notifications
You must be signed in to change notification settings - Fork 51
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
2 stage filtering in ViewGraphEstimator #739
Conversation
@@ -42,6 +46,10 @@ def __init__( | |||
self.ba_optimizer = bundle_adjustment_module | |||
self._run_view_graph_estimator: bool = self.view_graph_estimator is not None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should use the flag for stage 2 too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ayushbaid did you mean to add the MEDIAN_EDGE_ERROR stage to the config also?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I meant to make it optional. If we do not want to run stage 2 we can easily skip it.
But if we get good performance across the board and there is no reason to not use it, I am fine.
viewgraph_i2Ui1_graph, | ||
viewgraph_v_corr_idxs_graph, | ||
viewgraph_two_view_reports_graph, | ||
viewgraph_estimation_metrics, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you save these metrics as a separate one, so we have numbers for stage1 and stage2?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMHO this will be overly verbose. We already get visualizations saved for each of the two stages, currently, and I think the combined performance is what matters most.
…stage-filtering
…stage-filtering
…stage-filtering
…stage-filtering
No description provided.