We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
how do i get the camera trajectory and save after running orb_slam2_ros , like ORB_SLAM2 we cam get the txt file
The text was updated successfully, but these errors were encountered:
hello, I solve it. Just add orb_slam_->SaveTrajectoryKITTI("your_path.txt"); in destructors.
orb_slam_->SaveTrajectoryKITTI("your_path.txt");
For example, you could add it to RGBDNode.cc, then it looks like:
` RGBDNode::~RGBDNode () {
orb_slam_->SaveTrajectoryKITTI("/home/your_name/SaveTrajectoryKITTI.txt");
delete rgb_subscriber_; delete depth_subscriber_; delete sync_; } `
Sorry, something went wrong.
No branches or pull requests
how do i get the camera trajectory and save after running orb_slam2_ros , like ORB_SLAM2 we cam get the txt file
The text was updated successfully, but these errors were encountered: