-
Notifications
You must be signed in to change notification settings - Fork 1
/
stvopl_node.cpp
298 lines (249 loc) · 9.86 KB
/
stvopl_node.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
#include <ros/ros.h>
#include <geometry_msgs/TwistStamped.h>
#include <sensor_msgs/image_encodings.h>
#include <sensor_msgs/CompressedImage.h>
#include <sensor_msgs/Image.h>
#include <image_transport/image_transport.h>
#include <message_filters/subscriber.h>
#include <message_filters/sync_policies/approximate_time.h>
#include <message_filters/time_synchronizer.h>
#include <cv_bridge/cv_bridge.h>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <sceneRepresentation.h>
#include <mrpt/utils/CTicTac.h>
#include <stereoFrame.h>
#include <stereoFrameHandler.h>
#include <yaml-cpp/yaml.h>
#include <X11/Xlib.h>
class StVONode
{
private:
ros::NodeHandle nh_;
// The synchronization policy used by the interface to sync stereo images
typedef message_filters::sync_policies::ApproximateTime<sensor_msgs::Image, sensor_msgs::Image> sync_pol;
// Subscribers
std::shared_ptr<message_filters::Subscriber<sensor_msgs::Image>> img_sub_l_;
std::shared_ptr<message_filters::Subscriber<sensor_msgs::Image>> img_sub_r_;
std::shared_ptr<message_filters::Synchronizer<sync_pol>> sync_;
image_transport::ImageTransport it_;
ros::Subscriber imu_sub_;
ros::Publisher odo_pub_;
PinholeStereoCamera* cam_pin;
bool rectify;
StereoFrameHandler* StVO;
int frame_counter;
sceneRepresentation scene;
public:
StVONode( std::string params_file, std::string config_file )
: it_(nh_)
{
// Initialize camera object
//------------------------------------------------------
// read content of the .yaml dataset configuration file
YAML::Node dset_config = YAML::LoadFile( params_file );
// setup camera
YAML::Node cam_config = dset_config["cam0"];
string camera_model = cam_config["cam_model"].as<string>();
rectify = false;
if( camera_model == "Pinhole" )
{
// if EuRoC or Falcon yaml file
if( cam_config["Kl"].IsDefined() )
{
rectify = true;
Mat Kl, Kr, Dl, Dr, R, t;
vector<double> Kl_ = cam_config["Kl"].as<vector<double>>();
vector<double> Kr_ = cam_config["Kr"].as<vector<double>>();
vector<double> Dl_ = cam_config["Dl"].as<vector<double>>();
vector<double> Dr_ = cam_config["Dr"].as<vector<double>>();
Kl = ( Mat_<float>(3,3) << Kl_[0], 0.0, Kl_[2], 0.0, Kl_[1], Kl_[3], 0.0, 0.0, 1.0 );
Kr = ( Mat_<float>(3,3) << Kr_[0], 0.0, Kr_[2], 0.0, Kr_[1], Kr_[3], 0.0, 0.0, 1.0 );
// load rotation and translation
vector<double> R_ = cam_config["R"].as<vector<double>>();
vector<double> t_ = cam_config["t"].as<vector<double>>();
R = Mat::eye(3,3,CV_64F);
t = Mat::eye(3,1,CV_64F);
Matrix4d T = Matrix4d::Identity();
int k = 0;
for( int i = 0; i < 3; i++ )
{
t.at<double>(i,0) = t_[i];
for( int j = 0; j < 3; j++, k++ )
R.at<double>(i,j) = R_[k];
}
// load distortion parameters
int Nd = Dl_.size();
Dl = Mat::eye(1,Nd,CV_64F);
Dr = Mat::eye(1,Nd,CV_64F);
for( int i = 0; i < Nd; i++ )
{
Dl.at<double>(0,i) = Dl_[i];
Dr.at<double>(0,i) = Dr_[i];
}
// if dtype is equidistant (now it is default)
if( cam_config["dtype"].IsDefined() )
{
cam_pin = new PinholeStereoCamera(
cam_config["cam_width"].as<double>(),
cam_config["cam_height"].as<double>(),
cam_config["cam_bl"].as<double>(),
Kl, Kr, R, t, Dl, Dr, true);
}
else
// create camera object for EuRoC
cam_pin = new PinholeStereoCamera(
cam_config["cam_width"].as<double>(),
cam_config["cam_height"].as<double>(),
cam_config["cam_bl"].as<double>(),
Kl, Kr, R, t, Dl, Dr,false);
}
// else
else
cam_pin = new PinholeStereoCamera(
cam_config["cam_width"].as<double>(),
cam_config["cam_height"].as<double>(),
fabs(cam_config["cam_fx"].as<double>()),
fabs(cam_config["cam_fy"].as<double>()),
cam_config["cam_cx"].as<double>(),
cam_config["cam_cy"].as<double>(),
cam_config["cam_bl"].as<double>(),
cam_config["cam_d0"].as<double>(),
cam_config["cam_d1"].as<double>(),
cam_config["cam_d2"].as<double>(),
cam_config["cam_d3"].as<double>() );
}
else
{
cout << endl << "Not implemented yet." << endl;
}
std::cout << cam_pin->getK() << std::endl;
// Initialize VO object
//------------------------------------------------------
frame_counter = 0;
StVO = new StereoFrameHandler(cam_pin);
if (!config_file.empty()) Config::loadFromFile(config_file);
// Initialize scene object
//------------------------------------------------------
Matrix4d Tcw, Tfw = Matrix4d::Identity(), Tfw_prev = Matrix4d::Identity(), T_inc = Matrix4d::Identity(), T_inc_l = Matrix4d::Identity();
Vector6d cov_eig;
Matrix6d cov;
Tcw = Matrix4d::Identity();
Tcw << 1, 0, 0, 0, 0, 0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1;
XInitThreads();
scene = sceneRepresentation("/home/ruben/code/StVO-PL/config/scene_config_indoor.ini");
scene.initializeScene(Tcw,false);
mrpt::utils::CTicTac clock;
// Subscribe to input video feed and publish output video feed
img_sub_l_ = std::shared_ptr<message_filters::Subscriber<sensor_msgs::Image>>(
new message_filters::Subscriber<sensor_msgs::Image>(
nh_, "image_left", 1) );
img_sub_r_ = std::shared_ptr<message_filters::Subscriber<sensor_msgs::Image>>(
new message_filters::Subscriber<sensor_msgs::Image>(
nh_, "image_right", 1) );
// Creating a synchronizer
sync_ = std::shared_ptr<message_filters::Synchronizer<sync_pol>>(
new message_filters::Synchronizer<sync_pol>(sync_pol(10), *img_sub_l_,
*img_sub_r_));
// Registering the synchronized image callback
sync_->registerCallback(
boost::bind( &StVONode::StVOCb, this, _1, _2) );
}
~StVONode(){}
void StVOCb( const sensor_msgs::ImageConstPtr& msg_l, const sensor_msgs::ImageConstPtr& msg_r )
{
// grab left image
cv_bridge::CvImageConstPtr cv_ptr_l;
try
{
cv_ptr_l = cv_bridge::toCvShare( msg_l, "mono8" );
}
catch (cv_bridge::Exception& e)
{
ROS_ERROR("cv_bridge exception: %s", e.what());
return;
}
// grab right image
cv_bridge::CvImageConstPtr cv_ptr_r;
try
{
cv_ptr_r = cv_bridge::toCvShare( msg_r, "mono8" );
}
catch (cv_bridge::Exception& e)
{
ROS_ERROR("cv_bridge exception: %s", e.what());
return;
}
// rectify images (if distorted)
cv::Mat img_l_rec, img_r_rec;
if( rectify )
cam_pin->rectifyImagesLR( cv_ptr_l->image, img_l_rec, cv_ptr_r->image, img_r_rec );
else
{
img_l_rec = cv_ptr_l->image;
img_r_rec = cv_ptr_r->image;
}
// initialize VO if frame #0
mrpt::utils::CTicTac clock;
if( frame_counter == 0 )
{
StVO->initialize( img_l_rec, img_r_rec, frame_counter );
frame_counter++;
}
// run VO otherwise
else
{
clock.Tic();
// PL-StVO
StVO->insertStereoPair( img_l_rec, img_r_rec, frame_counter );
// solve with robust kernel and IRLS
StVO->optimizePose();
double t = 1000 * clock.Tac(); //ms
// console output
cout.setf(ios::fixed,ios::floatfield); cout.precision(6);
cout << "Frame: " << frame_counter << "\tRes.: " << StVO->curr_frame->err_norm;
cout.setf(ios::fixed,ios::floatfield); cout.precision(3);
cout << " \t Proc. time: " << t << " ms\t ";
if( Config::adaptativeFAST() ) cout << "\t FAST: " << StVO->orb_fast_th;
if( Config::hasPoints()) cout << "\t Points: " << StVO->matched_pt.size() << " (" << StVO->n_inliers_pt << ") " ;
if( Config::hasLines() ) cout << "\t Lines: " << StVO->matched_ls.size() << " (" << StVO->n_inliers_ls << ") " ;
cout << endl;
// represent VO result
Matrix4d T_inc = StVO->curr_frame->DT;
MatrixXd T_cov = StVO->curr_frame->DT_cov;
scene.setText(frame_counter,t,StVO->n_inliers_pt,StVO->matched_pt.size(),StVO->n_inliers_ls,StVO->matched_ls.size());
scene.setPose( T_inc );
scene.setImage( StVO->curr_frame->plotStereoFrame() );
scene.setCov( T_cov );
scene.updateScene( StVO->matched_pt, StVO->matched_ls );
// update StVO
StVO->updateFrame();
frame_counter++;
}
}
};
using namespace std;
int main(int argc, char** argv)
{
// Usage: ./vo <params_file> <config_file>
// <params_file> - file with the camera configuration
// <config_file> - file with the VO configuration (optional)
ros::init(argc, argv, "stvopl");
std::string params_file = argv[1];
std::string config_file ;
if( argc == 3 )
config_file = argv[2];
StVONode stvopl( params_file, config_file );
if( true )
ros::spin();
else
{
ros::Rate r(10);
while( ros::ok() )
{
ros::spinOnce();
r.sleep();
}
}
return 0;
}