forked from raulmur/ORB_SLAM2
-
Notifications
You must be signed in to change notification settings - Fork 15
/
FrameDrawer.cc
202 lines (179 loc) · 6.08 KB
/
FrameDrawer.cc
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
/**
* This file is part of ORB-SLAM2.
*
* Copyright (C) 2014-2016 Raúl Mur-Artal <raulmur at unizar dot es> (University of Zaragoza)
* For more information see <https://github.com/raulmur/ORB_SLAM2>
*
* ORB-SLAM2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ORB-SLAM2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ORB-SLAM2. If not, see <http://www.gnu.org/licenses/>.
*/
#include "FrameDrawer.h"
#include "Tracking.h"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include<mutex>
namespace ORB_SLAM2
{
FrameDrawer::FrameDrawer(Map* pMap):mpMap(pMap)
{
mState=Tracking::SYSTEM_NOT_READY;
mIm = cv::Mat(480,640,CV_8UC3, cv::Scalar(0,0,0));
}
cv::Mat FrameDrawer::DrawFrame()
{
cv::Mat im;
vector<cv::KeyPoint> vIniKeys; // Initialization: KeyPoints in reference frame
vector<int> vMatches; // Initialization: correspondeces with reference keypoints
vector<cv::KeyPoint> vCurrentKeys; // KeyPoints in current frame
vector<bool> vbVO, vbMap; // Tracked MapPoints in current frame
int state; // Tracking state
//Copy variables within scoped mutex
{
unique_lock<mutex> lock(mMutex);
state=mState;
if(mState==Tracking::SYSTEM_NOT_READY)
mState=Tracking::NO_IMAGES_YET;
mIm.copyTo(im);
if(mState==Tracking::NOT_INITIALIZED)
{
vCurrentKeys = mvCurrentKeys;
vIniKeys = mvIniKeys;
vMatches = mvIniMatches;
}
else if(mState==Tracking::OK)
{
vCurrentKeys = mvCurrentKeys;
vbVO = mvbVO;
vbMap = mvbMap;
}
else if(mState==Tracking::LOST)
{
vCurrentKeys = mvCurrentKeys;
}
} // destroy scoped mutex -> release mutex
if(im.channels()<3) //this should be always true
cvtColor(im,im,CV_GRAY2BGR);
//Draw
if(state==Tracking::NOT_INITIALIZED) //INITIALIZING
{
for(unsigned int i=0; i<vMatches.size(); i++)
{
if(vMatches[i]>=0)
{
cv::line(im,vIniKeys[i].pt,vCurrentKeys[vMatches[i]].pt,
cv::Scalar(0,255,0));
}
}
}
else if(state==Tracking::OK) //TRACKING
{
mnTracked=0;
mnTrackedVO=0;
const float r = 5;
for(int i=0;i<N;i++)
{
if(vbVO[i] || vbMap[i])
{
cv::Point2f pt1,pt2;
pt1.x=vCurrentKeys[i].pt.x-r;
pt1.y=vCurrentKeys[i].pt.y-r;
pt2.x=vCurrentKeys[i].pt.x+r;
pt2.y=vCurrentKeys[i].pt.y+r;
// This is a match to a MapPoint in the map
if(vbMap[i])
{
cv::rectangle(im,pt1,pt2,cv::Scalar(0,255,0));
cv::circle(im,vCurrentKeys[i].pt,2,cv::Scalar(0,255,0),-1);
mnTracked++;
}
else // This is match to a "visual odometry" MapPoint created in the last frame
{
cv::rectangle(im,pt1,pt2,cv::Scalar(255,0,0));
cv::circle(im,vCurrentKeys[i].pt,2,cv::Scalar(255,0,0),-1);
mnTrackedVO++;
}
}
}
}
cv::Mat imWithInfo;
DrawTextInfo(im,state, imWithInfo);
return imWithInfo;
}
void FrameDrawer::DrawTextInfo(cv::Mat &im, int nState, cv::Mat &imText)
{
stringstream s;
if(nState==Tracking::NO_IMAGES_YET)
s << " WAITING FOR IMAGES";
else if(nState==Tracking::NOT_INITIALIZED)
s << " TRYING TO INITIALIZE ";
else if(nState==Tracking::OK)
{
if(!mbOnlyTracking)
s << "SLAM MODE | ";
else
s << "LOCALIZATION | ";
int nKFs = mpMap->KeyFramesInMap();
int nMPs = mpMap->MapPointsInMap();
s << "KFs: " << nKFs << ", MPs: " << nMPs << ", Matches: " << mnTracked;
if(mnTrackedVO>0)
s << ", + VO matches: " << mnTrackedVO;
}
else if(nState==Tracking::LOST)
{
s << " TRACK LOST. TRYING TO RELOCALIZE ";
}
else if(nState==Tracking::SYSTEM_NOT_READY)
{
s << " LOADING ORB VOCABULARY. PLEASE WAIT...";
}
int baseline=0;
cv::Size textSize = cv::getTextSize(s.str(),cv::FONT_HERSHEY_PLAIN,1,1,&baseline);
imText = cv::Mat(im.rows+textSize.height+10,im.cols,im.type());
im.copyTo(imText.rowRange(0,im.rows).colRange(0,im.cols));
imText.rowRange(im.rows,imText.rows) = cv::Mat::zeros(textSize.height+10,im.cols,im.type());
cv::putText(imText,s.str(),cv::Point(5,imText.rows-5),cv::FONT_HERSHEY_PLAIN,1,cv::Scalar(255,255,255),1,8);
}
void FrameDrawer::Update(Tracking *pTracker)
{
unique_lock<mutex> lock(mMutex);
pTracker->mImGray.copyTo(mIm);
mvCurrentKeys=pTracker->mCurrentFrame.mvKeys;
N = mvCurrentKeys.size();
mvbVO = vector<bool>(N,false);
mvbMap = vector<bool>(N,false);
mbOnlyTracking = pTracker->mbOnlyTracking;
if(pTracker->mLastProcessedState==Tracking::NOT_INITIALIZED)
{
mvIniKeys=pTracker->mInitialFrame.mvKeys;
mvIniMatches=pTracker->mvIniMatches;
}
else if(pTracker->mLastProcessedState==Tracking::OK)
{
for(int i=0;i<N;i++)
{
MapPoint* pMP = pTracker->mCurrentFrame.mvpMapPoints[i];
if(pMP)
{
if(!pTracker->mCurrentFrame.mvbOutlier[i])
{
if(pMP->Observations()>0)
mvbMap[i]=true;
else
mvbVO[i]=true;
}
}
}
}
mState=static_cast<int>(pTracker->mLastProcessedState);
}
} //namespace ORB_SLAM