You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If pair of views has different resolution (this is common after undistortion by colmap), size of msk comes from self.conf_i[i_j], while size of self.pred_j[i_j] comes from the other view, cause size mismatch error in fast_pnp (at pts3d[msk]).
@yindaheng98 one QQ: how this is common after undistortion by colmap ?
Oh, sorry for missing the background context.
I'm using Dust3r to reconstruct dynamic scenes from multi-view videos, where multiple cameras simultaneously capture the scene from different viewpoints.
For each frame, I first run COLMAP to estimate camera poses and perform image undistortion, and then use Dust3r for dense reconstruction.
Since each camera typically has slightly different lens distortion parameters, the undistortion step performed by COLMAP often results in images with slightly different resolutions.
This occurs because COLMAP crops the image corners differently for each camera to remove radial and potentially tangential distortions, as explained here: colmap/colmap#1100 (comment).
[1] T. Li et al., “Neural 3D Video Synthesis From Multi-View Video,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Jun. 2022, pp. 5521–5531.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
If pair of views has different resolution (this is common after undistortion by colmap), size of
mskcomes fromself.conf_i[i_j], while size ofself.pred_j[i_j]comes from the other view, cause size mismatch error infast_pnp(atpts3d[msk]).