-
Notifications
You must be signed in to change notification settings - Fork 767
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
Adding serialization support to be used for GT-SFM #650
Conversation
gtsam/slam/dataset.h
Outdated
#include <gtsam/base/types.h> | ||
|
||
|
||
#include <boost/serialization/vector.hpp> |
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.
this is used to serialize vectors
Also, the python wrapper build fails. @ProfFan, can you suggest me why this is happening? |
Maybe, look at the generated code in |
Works now! |
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.
Awesome!!!! You nailed it :-)
GT-SFM project uses the
SfmData
andSfmTrack
structures. Hence, this PR adds serialization support to these two structures.