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
Hi , i want to use map points from ptam map in PTAMWrapper.hpp file https://github.com/tum-vision/tum_ardrone/blob/master/src/stateestimation/PTAMWrapper.cpp#L560 , i cant find that pointcloud.txt file , sorry if this is a newbie question but i'm quite new for this. Simply ı just want to obtain map points in PTAM Drone Map View window. `
// flush map keypoints if(flushMapKeypoints) { std::ofstream* fle = new std::ofstream(); fle->open("pointcloud.txt"); for(unsigned int i=0;i<mapPointsTransformed.size();i++) { (*fle) << mapPointsTransformed[i][0] << " " << mapPointsTransformed[i][1] << " " << mapPointsTransformed[i][2] << std::endl; } fle->flush(); fle->close(); printf("FLUSHED %d KEYPOINTS to file pointcloud.txt\n\n",mapPointsTransformed.size()); flushMapKeypoints = false; }`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi , i want to use map points from ptam map in PTAMWrapper.hpp file https://github.com/tum-vision/tum_ardrone/blob/master/src/stateestimation/PTAMWrapper.cpp#L560 , i cant find that pointcloud.txt file , sorry if this is a newbie question but i'm quite new for this. Simply ı just want to obtain map points in PTAM Drone Map View window. `
The text was updated successfully, but these errors were encountered: