123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- #include<iostream>
- #include<algorithm>
- #include<fstream>
- #include<chrono>
- #include<opencv2/core/core.hpp>
- #include<System.h>
- using namespace std;
- void LoadImages(const string &strImagePath, const string &strPathTimes,
- vector<string> &vstrImages, vector<double> &vTimeStamps);
- int main(int argc, char **argv)
- {
- if(argc < 5)
- {
- cerr << endl << "Usage: ./mono_euroc path_to_vocabulary path_to_settings path_to_sequence_folder_1 path_to_times_file_1 (path_to_image_folder_2 path_to_times_file_2 ... path_to_image_folder_N path_to_times_file_N) (trajectory_file_name)" << endl;
- return 1;
- }
- const int num_seq = (argc-3)/2;
- cout << "num_seq = " << num_seq << endl;
- bool bFileName= (((argc-3) % 2) == 1);
- string file_name;
- if (bFileName)
- {
- file_name = string(argv[argc-1]);
- cout << "file name: " << file_name << endl;
- }
-
- int seq;
- vector< vector<string> > vstrImageFilenames;
- vector< vector<double> > vTimestampsCam;
- vector<int> nImages;
- vstrImageFilenames.resize(num_seq);
- vTimestampsCam.resize(num_seq);
- nImages.resize(num_seq);
- int tot_images = 0;
- for (seq = 0; seq<num_seq; seq++)
- {
- cout << "Loading images for sequence " << seq << "...";
- LoadImages(string(argv[(2*seq)+3]) + "/mav0/cam0/data", string(argv[(2*seq)+4]), vstrImageFilenames[seq], vTimestampsCam[seq]);
- cout << "LOADED!" << endl;
- nImages[seq] = vstrImageFilenames[seq].size();
- tot_images += nImages[seq];
- }
-
- vector<float> vTimesTrack;
- vTimesTrack.resize(tot_images);
- cout << endl << "-------" << endl;
- cout.precision(17);
- int fps = 20;
- float dT = 1.f/fps;
-
- ORB_SLAM3::System SLAM(argv[1],argv[2],ORB_SLAM3::System::MONOCULAR, false);
- float imageScale = SLAM.GetImageScale();
- double t_resize = 0.f;
- double t_track = 0.f;
- for (seq = 0; seq<num_seq; seq++)
- {
-
- cv::Mat im;
- int proccIm = 0;
- for(int ni=0; ni<nImages[seq]; ni++, proccIm++)
- {
-
- im = cv::imread(vstrImageFilenames[seq][ni],cv::IMREAD_UNCHANGED);
- double tframe = vTimestampsCam[seq][ni];
- if(im.empty())
- {
- cerr << endl << "Failed to load image at: "
- << vstrImageFilenames[seq][ni] << endl;
- return 1;
- }
- if(imageScale != 1.f)
- {
- #ifdef REGISTER_TIMES
- #ifdef COMPILEDWITHC14
- std::chrono::steady_clock::time_point t_Start_Resize = std::chrono::steady_clock::now();
- #else
- std::chrono::monotonic_clock::time_point t_Start_Resize = std::chrono::monotonic_clock::now();
- #endif
- #endif
- int width = im.cols * imageScale;
- int height = im.rows * imageScale;
- cv::resize(im, im, cv::Size(width, height));
- #ifdef REGISTER_TIMES
- #ifdef COMPILEDWITHC14
- std::chrono::steady_clock::time_point t_End_Resize = std::chrono::steady_clock::now();
- #else
- std::chrono::monotonic_clock::time_point t_End_Resize = std::chrono::monotonic_clock::now();
- #endif
- t_resize = std::chrono::duration_cast<std::chrono::duration<double,std::milli> >(t_End_Resize - t_Start_Resize).count();
- SLAM.InsertResizeTime(t_resize);
- #endif
- }
- #ifdef COMPILEDWITHC14
- std::chrono::steady_clock::time_point t1 = std::chrono::steady_clock::now();
- #else
- std::chrono::monotonic_clock::time_point t1 = std::chrono::monotonic_clock::now();
- #endif
-
-
- SLAM.TrackMonocular(im,tframe);
- #ifdef COMPILEDWITHC14
- std::chrono::steady_clock::time_point t2 = std::chrono::steady_clock::now();
- #else
- std::chrono::monotonic_clock::time_point t2 = std::chrono::monotonic_clock::now();
- #endif
- #ifdef REGISTER_TIMES
- t_track = t_resize + std::chrono::duration_cast<std::chrono::duration<double,std::milli> >(t2 - t1).count();
- SLAM.InsertTrackTime(t_track);
- #endif
- double ttrack= std::chrono::duration_cast<std::chrono::duration<double> >(t2 - t1).count();
- vTimesTrack[ni]=ttrack;
-
- double T=0;
- if(ni<nImages[seq]-1)
- T = vTimestampsCam[seq][ni+1]-tframe;
- else if(ni>0)
- T = tframe-vTimestampsCam[seq][ni-1];
-
-
- if(ttrack<T) {
-
- usleep((T-ttrack)*1e6);
- }
- }
- if(seq < num_seq - 1)
- {
- string kf_file_submap = "./SubMaps/kf_SubMap_" + std::to_string(seq) + ".txt";
- string f_file_submap = "./SubMaps/f_SubMap_" + std::to_string(seq) + ".txt";
- SLAM.SaveTrajectoryEuRoC(f_file_submap);
- SLAM.SaveKeyFrameTrajectoryEuRoC(kf_file_submap);
- cout << "Changing the dataset" << endl;
- SLAM.ChangeDataset();
- }
- }
-
- SLAM.Shutdown();
-
- if (bFileName)
- {
- const string kf_file = "kf_" + string(argv[argc-1]) + ".txt";
- const string f_file = "f_" + string(argv[argc-1]) + ".txt";
- SLAM.SaveTrajectoryEuRoC(f_file);
- SLAM.SaveKeyFrameTrajectoryEuRoC(kf_file);
- }
- else
- {
- SLAM.SaveTrajectoryEuRoC("CameraTrajectory.txt");
- SLAM.SaveKeyFrameTrajectoryEuRoC("KeyFrameTrajectory.txt");
- }
- return 0;
- }
- void LoadImages(const string &strImagePath, const string &strPathTimes,
- vector<string> &vstrImages, vector<double> &vTimeStamps)
- {
- ifstream fTimes;
- fTimes.open(strPathTimes.c_str());
- vTimeStamps.reserve(5000);
- vstrImages.reserve(5000);
- while(!fTimes.eof())
- {
- string s;
- getline(fTimes,s);
- if(!s.empty())
- {
- stringstream ss;
- ss << s;
- vstrImages.push_back(strImagePath + "/" + ss.str() + ".png");
- double t;
- ss >> t;
- vTimeStamps.push_back(t*1e-9);
- }
- }
- }
|