forked from zssjh/stereo-semantic-vo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
executable file
·211 lines (185 loc) · 6.58 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#include<opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/core/affine.hpp>
#include <iostream>
#include <vector>
#include<iomanip>
#include <fstream>
#include <Tracking.h>
#include <pangolin/pangolin.h>
#include <include/view.h>
#include <unistd.h>
#include <thread>
#include <include/semantic.h>
using namespace std;
void LoadImages(const string &strPathToSequence, vector<string> &vstrImageLeft,
vector<string> &vstrImageRight, vector<string> &vstrImagedepth,vector<double> &vTimestamps)
{
ifstream fTimes;
string strPathTimeFile = strPathToSequence + "/times.txt";
fTimes.open(strPathTimeFile.c_str());
while(!fTimes.eof())
{
string s;
getline(fTimes,s);
if(!s.empty())
{
stringstream ss;
ss << s;
double t;
ss >> t;
vTimestamps.push_back(t);
}
}
string strPrefixLeft = strPathToSequence + "/image_2/";
string strPrefixRight = strPathToSequence + "/image_3/";
string strPrefixdepth = strPathToSequence + "/01/images/";
const int nTimes = vTimestamps.size();
vstrImageLeft.resize(nTimes);
vstrImageRight.resize(nTimes);
vstrImagedepth.resize(nTimes);
for(int i=0; i<nTimes; i++)
{
stringstream ss;
ss << setfill('0') << setw(6) << i;
vstrImageLeft[i] = strPrefixLeft + ss.str() + ".png";
vstrImageRight[i] = strPrefixRight + ss.str() + ".png";
vstrImagedepth[i] = strPrefixdepth + ss.str() + ".png";
}
}
void Loadboundingbox(const string &strPathToDetectionResult,vector<vector<int>> &box)
{
// ifstream f_box;
// f_box.open(strPathToDetectionResult.c_str());
// int num=0;
//
// while(!f_box.eof())//// while(f_box)
// {
// int data[4] = {0};
// for ( auto& d:data )
// f_box >> d;
// for (int i = 0; i <4 ; ++i) {
// box[num].push_back(data[i]);
// }
// num++;
// }
ifstream infile;//(strPathToDetectionResult, ios::in)
infile.open(strPathToDetectionResult);
if(!infile.is_open())
{
cout<<"yolo_detection file open fail"<<endl;
exit(233);
}
vector<int> row;
int tmp;
string line;
while (getline(infile, line))
{
stringstream istr(line);
while (istr >> tmp) {
row.push_back(tmp);
}
box.push_back(row);
row.clear();
istr.clear();
line.clear();
}
infile.close();
}
int main(int argc, char **argv)
{
if(argc != 4)
{
cerr << endl << "Usage: ./stereo_kitti path_to_vocabulary path_to_settings path_to_sequence" << endl;
return 1;
}
vector<string> vstrImageLeft;
vector<string> vstrImageRight;
vector<string> vstrImagedepth;
vector<double> vTimestamps;
LoadImages(string(argv[3]), vstrImageLeft, vstrImageRight,vstrImagedepth, vTimestamps);
const int nImages = vstrImageLeft.size();
vector<float> vTimesTrack;
vTimesTrack.resize(nImages);
pangolin::CreateWindowAndBind("stereo_vo: Map Viewer",1200,768);
glEnable(GL_DEPTH_TEST);
glEnable (GL_BLEND);
glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
// pangolin::CreatePanel("menu").SetBounds(0.0,1.0,0.0,pangolin::Attach::Pix(175));
//
// // 添加显示机器人位置选择项
// pangolin::Var<float> menuDisplayPose_x("menu.Pose:X",false,false);
// pangolin::Var<float> menuDisplayPose_Y("menu.Pose:Y",false,false);
// pangolin::Var<float> menuDisplayPose_Z("menu.Pose:Z",false,false);
pangolin::OpenGlRenderState s_cam(
pangolin::ProjectionMatrix(1200,768,500,500,10,10,0.01,1000),
pangolin::ModelViewLookAt(0,-900,-10, 0,0,0,0.0,-1.0, 0.0)
);
pangolin::View& d_cam = pangolin::CreateDisplay()
.SetBounds(0.0, 1.0, pangolin::Attach::Pix(175), 1.0, -1024.0f/768.0f)
.SetHandler(new pangolin::Handler3D(s_cam));
pangolin::OpenGlMatrix Twc_M;
Twc_M.SetIdentity();
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
Tracking* mpTracker;
mpTracker = new Tracking(argv[2]);
ofstream f;
f.open("cameratrajectory_kitti.txt");
f << fixed;
ofstream f2;
f2.open("cameratrajectory_tum.txt");
f2 << fixed;
const string off_detect_path="/home/zss/stereo-semantic-vo/bin/offline/";
//// disable this four lines if using offline semantic ////
// Semantic* mpSemanticer = new Semantic(vstrImageLeft,vstrImageRight);
// std::thread* mpsemantic = new thread(&Semantic::Run,mpSemanticer);
//
// mpSemanticer->SetTracker(mpTracker);
// mpTracker->Setsemanticer(mpSemanticer);
cv::Mat imLeft, imRight,imdepth;
cv::Mat detect_img;
for(int ni=0; ni<nImages; ni++) {
imLeft = cv::imread(vstrImageLeft[ni], CV_LOAD_IMAGE_UNCHANGED);
imRight = cv::imread(vstrImageRight[ni], CV_LOAD_IMAGE_UNCHANGED);////1241,376
detect_img = cv::imread(off_detect_path+"0.05results-image/"+to_string(ni+1)+".png", CV_LOAD_IMAGE_UNCHANGED);
double tframe = vTimestamps[ni];
if (imLeft.empty()) {
cerr << endl << "Failed to load image at: "
<< string(vstrImageLeft[ni]) << endl;
return 1;
}
cout << "load image " << ni << endl;
vector<vector <int> > detection_box;//(20,vector<int>(4,0))
Loadboundingbox(off_detect_path+"0.05results/"+to_string(ni+1)+".txt",detection_box);
std::chrono::steady_clock::time_point t1 = std::chrono::steady_clock::now();
mpTracker->Track(imLeft, imRight,imdepth,detect_img, tframe,mpTracker->K,mpTracker->bf,f,f2,Twc_M,detection_box);
s_cam.Follow(Twc_M);
d_cam.Activate(s_cam);
glClearColor(1.0f,1.0f,1.0f,1.0f);
//// time test
std::chrono::steady_clock::time_point t2 = std::chrono::steady_clock::now();
double ttrack= std::chrono::duration_cast<std::chrono::duration<double> >(t2 - t1).count();
vTimesTrack[ni]=ttrack;
// Wait to load the next frame
double T=0;
if(ni<nImages-1)
T = vTimestamps[ni+1]-tframe;
else if(ni>0)
T = tframe-vTimestamps[ni-1];
if(ttrack<T)
usleep((T-ttrack)*1e6);
}
f.close();
f2.close();
cout << endl << "trajectory saved!" << endl;
sort(vTimesTrack.begin(),vTimesTrack.end());
float totaltime = 0;
for(int ni=0; ni<nImages; ni++)
{
totaltime+=vTimesTrack[ni];
}
cout << "-------" << endl << endl;
cout << "median tracking time: " << vTimesTrack[nImages/2] << endl;
cout << "mean tracking time: " << totaltime/nImages << endl;
return 0;
}