-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Add Rig serialization support to reconstruction+database #3143
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
Conversation
|
|
||
| // Note that cameras must be read before images. | ||
|
|
||
| void ReadRigsText(Reconstruction& reconstruction, std::istream& stream); |
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 update the I/O methods in the Reconstruction class as well (e.g. Reconstruction::ReadBinary), where we will write/read rigs when there are any.
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 wanted to wait with doing the actual serialization until we reached feature completeness together with frames?
|
In the current code the rigs are not used as it is not associated through frames to images. Does it make sense to first add the frames into I/O and merge together? Also, after we fully support the frames I/O some code will be unnecessary (e.g., https://github.com/colmap/colmap/blob/user/jsch/rig-calib-reconstruction/src/colmap/scene/synthetic.cc#L243-L247) |
No description provided.