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
To get the 3D map points built by orb-slam, I call the function of slam:
map_pts = slam.get_tracked_mappoints() print(map_pts)
But the program stuck here and no response.
The text was updated successfully, but these errors were encountered:
I have a similar issue, but I get 'Segmentation fault' error.
Sorry, something went wrong.
I found there are empty elements in map points causing the segmentation fault. You can modify the code in src/ORBSlamOython.cpp Line:311 to
src/ORBSlamOython.cpp Line:311
for(size_t i=0; i<Mps.size(); i++) { if(Mps[i] != NULL){ cv::Mat wp = Mps[i]->GetWorldPos(); map_points.append(boost::python::make_tuple( wp.at<float>(0,0), wp.at<float>(1,0), wp.at<float>(2,0) )); } }
No branches or pull requests
To get the 3D map points built by orb-slam, I call the function of slam:
But the program stuck here and no response.
The text was updated successfully, but these errors were encountered: