-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathhandeye_calibration.cpp
554 lines (478 loc) · 22 KB
/
handeye_calibration.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
#include "ceres/ceres.h"
#include "ceres/types.h"
#include <camodocal/calib/HandEyeCalibration.h>
#include <eigen3/Eigen/Geometry>
#include <opencv2/core/eigen.hpp>
#include <ros/ros.h>
#include <termios.h>
#include <tf/transform_listener.h>
#include <tf_conversions/tf_eigen.h>
typedef std::vector<Eigen::Vector3d, Eigen::aligned_allocator<Eigen::Vector3d>>
eigenVector;
typedef std::vector<Eigen::Affine3d, Eigen::aligned_allocator<Eigen::Affine3d>>
EigenAffineVector;
///////////////////////////////////////////////////////
// DEFINING GLOBAL VARIABLES
std::string ARTagTFname, cameraTFname;
std::string EETFname, baseTFname;
tf::TransformListener* listener;
Eigen::Affine3d firstEEInverse, firstCamInverse;
bool firstTransform = true;
eigenVector tvecsArm, rvecsArm, tvecsFiducial, rvecsFiducial;
EigenAffineVector baseToTip, cameraToTag;
template <typename Input>
Eigen::Vector3d eigenRotToEigenVector3dAngleAxis(Input eigenQuat) {
Eigen::AngleAxisd ax3d(eigenQuat);
return ax3d.angle() * ax3d.axis();
}
/// @return 0 on success, otherwise error code
int writeTransformPairsToFile(const EigenAffineVector& t1,
const EigenAffineVector& t2,
std::string filename) {
std::cerr << "Writing pairs to \"" << filename << "\"...\n";
cv::FileStorage fs(filename, cv::FileStorage::WRITE);
int frameCount = t1.size();
fs << "frameCount" << frameCount;
auto t1_it = t1.begin();
auto t2_it = t2.begin();
if (fs.isOpened()) {
for (int i = 0; i < t1.size(); ++i, ++t1_it, ++t2_it) {
cv::Mat_<double> t1cv = cv::Mat_<double>::ones(4, 4);
cv::eigen2cv(t1_it->matrix(), t1cv);
cv::Mat_<double> t2cv = cv::Mat_<double>::ones(4, 4);
cv::eigen2cv(t2_it->matrix(), t2cv);
std::stringstream ss1;
ss1 << "T1_" << i;
fs << ss1.str() << t1cv;
std::stringstream ss2;
ss2 << "T2_" << i;
fs << ss2.str() << t2cv;
}
fs.release();
} else {
std::cerr << "failed to open output file " << filename << "\n";
return 1;
}
return 0;
}
/// @return 0 on success, otherwise error code
int readTransformPairsFromFile(std::string filename, EigenAffineVector& t1,
EigenAffineVector& t2) {
cv::FileStorage fs(filename, cv::FileStorage::READ);
int frameCount;
fs["frameCount"] >> frameCount;
auto t1_it = std::back_inserter(t1);
auto t2_it = std::back_inserter(t2);
if (fs.isOpened()) {
for (int i = 0; i < frameCount; ++i, ++t1_it, ++t2_it) {
// read in frame one
{
cv::Mat_<double> t1cv = cv::Mat_<double>::ones(4, 4);
std::stringstream ss1;
ss1 << "T1_" << i;
fs[ss1.str()] >> t1cv;
Eigen::Affine3d t1e;
cv::cv2eigen(t1cv, t1e.matrix());
*t1_it = t1e;
}
// read in frame two
{
cv::Mat_<double> t2cv = cv::Mat_<double>::ones(4, 4);
std::stringstream ss2;
ss2 << "T2_" << i;
fs[ss2.str()] >> t2cv;
Eigen::Affine3d t2e;
cv::cv2eigen(t2cv, t2e.matrix());
*t2_it = t2e;
}
}
fs.release();
} else {
std::cerr << "failed to open input file " << filename << "\n";
return 1;
}
return 0;
}
Eigen::Affine3d estimateHandEye(const EigenAffineVector& baseToTip,
const EigenAffineVector& camToTag) {
auto t1_it = baseToTip.begin();
auto t2_it = camToTag.begin();
Eigen::Affine3d firstEEInverse, firstCamInverse;
eigenVector tvecsArm, rvecsArm, tvecsFiducial, rvecsFiducial;
bool firstTransform = true;
for (int i = 0; i < baseToTip.size(); ++i, ++t1_it, ++t2_it) {
auto& eigenEE = *t1_it;
auto& eigenCam = *t2_it;
if (firstTransform) {
firstEEInverse = eigenEE.inverse();
firstCamInverse = eigenCam.inverse();
ROS_INFO("Adding first transformation.");
firstTransform = false;
} else {
Eigen::Affine3d robotTipinFirstTipBase = firstEEInverse * eigenEE;
Eigen::Affine3d fiducialInFirstFiducialBase =
firstCamInverse * eigenCam;
rvecsArm.push_back(eigenRotToEigenVector3dAngleAxis(
robotTipinFirstTipBase.rotation()));
tvecsArm.push_back(robotTipinFirstTipBase.translation());
rvecsFiducial.push_back(eigenRotToEigenVector3dAngleAxis(
fiducialInFirstFiducialBase.rotation()));
tvecsFiducial.push_back(fiducialInFirstFiducialBase.translation());
ROS_INFO("Hand Eye Calibration Transform Pair Added");
Eigen::Vector4d r_tmp = robotTipinFirstTipBase.matrix().col(3);
r_tmp[3] = 0;
Eigen::Vector4d c_tmp = fiducialInFirstFiducialBase.matrix().col(3);
c_tmp[3] = 0;
std::cerr
<< "L2Norm EE: "
<< robotTipinFirstTipBase.matrix().block(0, 3, 3, 1).norm()
<< " vs Cam:"
<< fiducialInFirstFiducialBase.matrix().block(0, 3, 3, 1).norm()
<< std::endl;
}
std::cerr << "EE transform: \n" << eigenEE.matrix() << std::endl;
std::cerr << "Cam transform: \n" << eigenCam.matrix() << std::endl;
}
camodocal::HandEyeCalibration calib;
Eigen::Matrix4d result;
calib.estimateHandEyeScrew(rvecsArm, tvecsArm, rvecsFiducial, tvecsFiducial,
result, false);
std::cerr << "Result from " << EETFname << " to " << ARTagTFname << ":\n"
<< result << std::endl;
Eigen::Transform<double, 3, Eigen::Affine> resultAffine(result);
std::cerr << "Translation (x,y,z) : "
<< resultAffine.translation().transpose() << std::endl;
Eigen::Quaternion<double> quaternionResult(resultAffine.rotation());
std::stringstream ss;
ss << quaternionResult.w() << ", " << quaternionResult.x() << ", "
<< quaternionResult.y() << ", " << quaternionResult.z() << std::endl;
std::cerr << "Rotation (w,x,y,z): " << ss.str() << std::endl;
std::cerr << "Result from " << ARTagTFname << " to " << EETFname << ":\n"
<< result << std::endl;
Eigen::Transform<double, 3, Eigen::Affine> resultAffineInv =
resultAffine.inverse();
std::cerr << "Inverted translation (x,y,z) : "
<< resultAffineInv.translation().transpose() << std::endl;
quaternionResult = Eigen::Quaternion<double>(resultAffineInv.rotation());
ss.clear();
ss << quaternionResult.w() << " " << quaternionResult.x() << " "
<< quaternionResult.y() << " " << quaternionResult.z() << std::endl;
std::cerr << "Inverted rotation (w,x,y,z): " << ss.str() << std::endl;
return resultAffine;
}
Eigen::Affine3d estimateHandEye(const EigenAffineVector& baseToTip,
const EigenAffineVector& camToTag,
ceres::Solver::Summary& summary) {
auto t1_it = baseToTip.begin();
auto t2_it = camToTag.begin();
Eigen::Affine3d firstEEInverse, firstCamInverse;
eigenVector tvecsArm, rvecsArm, tvecsFiducial, rvecsFiducial;
bool firstTransform = true;
for (int i = 0; i < baseToTip.size(); ++i, ++t1_it, ++t2_it) {
auto& eigenEE = *t1_it;
auto& eigenCam = *t2_it;
if (firstTransform) {
firstEEInverse = eigenEE.inverse();
firstCamInverse = eigenCam.inverse();
ROS_INFO("Adding first transformation.");
firstTransform = false;
} else {
Eigen::Affine3d robotTipinFirstTipBase = firstEEInverse * eigenEE;
Eigen::Affine3d fiducialInFirstFiducialBase =
firstCamInverse * eigenCam;
rvecsArm.push_back(eigenRotToEigenVector3dAngleAxis(
robotTipinFirstTipBase.rotation()));
tvecsArm.push_back(robotTipinFirstTipBase.translation());
rvecsFiducial.push_back(eigenRotToEigenVector3dAngleAxis(
fiducialInFirstFiducialBase.rotation()));
tvecsFiducial.push_back(fiducialInFirstFiducialBase.translation());
ROS_INFO("Hand Eye Calibration Transform Pair Added");
Eigen::Vector4d r_tmp = robotTipinFirstTipBase.matrix().col(3);
r_tmp[3] = 0;
Eigen::Vector4d c_tmp = fiducialInFirstFiducialBase.matrix().col(3);
c_tmp[3] = 0;
std::cerr
<< "L2Norm EE: "
<< robotTipinFirstTipBase.matrix().block(0, 3, 3, 1).norm()
<< " vs Cam:"
<< fiducialInFirstFiducialBase.matrix().block(0, 3, 3, 1).norm()
<< std::endl;
}
std::cerr << "EE transform: \n" << eigenEE.matrix() << std::endl;
std::cerr << "Cam transform: \n" << eigenCam.matrix() << std::endl;
}
camodocal::HandEyeCalibration calib;
Eigen::Matrix4d result;
calib.estimateHandEyeScrew(rvecsArm, tvecsArm, rvecsFiducial, tvecsFiducial,
result, summary, false);
std::cerr << "Result from " << EETFname << " to " << ARTagTFname << ":\n"
<< result << std::endl;
Eigen::Transform<double, 3, Eigen::Affine> resultAffine(result);
std::cerr << "Translation (x,y,z) : "
<< resultAffine.translation().transpose() << std::endl;
Eigen::Quaternion<double> quaternionResult(resultAffine.rotation());
std::stringstream ss;
ss << quaternionResult.w() << ", " << quaternionResult.x() << ", "
<< quaternionResult.y() << ", " << quaternionResult.z() << std::endl;
std::cerr << "Rotation (w,x,y,z): " << ss.str() << std::endl;
std::cerr << "Result from " << ARTagTFname << " to " << EETFname << ":\n"
<< result << std::endl;
Eigen::Transform<double, 3, Eigen::Affine> resultAffineInv =
resultAffine.inverse();
std::cerr << "Inverted translation (x,y,z) : "
<< resultAffineInv.translation().transpose() << std::endl;
quaternionResult = Eigen::Quaternion<double>(resultAffineInv.rotation());
ss.clear();
ss << quaternionResult.w() << " " << quaternionResult.x() << " "
<< quaternionResult.y() << " " << quaternionResult.z() << std::endl;
std::cerr << "Inverted rotation (w,x,y,z): " << ss.str() << std::endl;
return resultAffine;
}
void writeCalibration(const Eigen::Affine3d& result,
const std::string& filename) {
cv::FileStorage fs(filename, cv::FileStorage::WRITE);
std::cerr << "Writing calibration to \"" << filename << "\"...\n";
if (fs.isOpened()) {
cv::Mat_<double> t1cv = cv::Mat_<double>::ones(4, 4);
cv::eigen2cv(result.matrix(), t1cv);
fs << "ArmTipToMarkerTagTransform" << t1cv;
fs.release();
}
}
void writeCalibration(const Eigen::Affine3d& result,
const std::string& filename,
ceres::Solver::Summary& summary) {
cv::FileStorage fs(filename, cv::FileStorage::WRITE);
std::cerr << "FULL CONVERGENCE REPORT \""
<< "\"...\n";
std::cout << summary.BriefReport() << "\n";
std::cout << summary.termination_type << "\n";
std::cerr << "Writing calibration to \"" << filename << "\"...\n";
if (fs.isOpened()) {
cv::Mat_<double> t1cv = cv::Mat_<double>::ones(4, 4);
cv::eigen2cv(result.matrix(), t1cv);
fs << "ArmTipToMarkerTagTransform" << t1cv;
fs << "initial_cost" << summary.initial_cost;
fs << "final_cost" << summary.final_cost;
fs << "change_cost" << summary.initial_cost - summary.final_cost;
fs << "termination_type" << summary.termination_type;
fs << "num_successful_iteration" << summary.num_successful_steps;
fs << "num_unsuccessful_iteration" << summary.num_unsuccessful_steps;
fs << "num_iteration"
<< summary.num_unsuccessful_steps + summary.num_successful_steps;
fs.release();
}
}
Eigen::Affine3d estimateHandEye(const EigenAffineVector& baseToTip,
const EigenAffineVector& camToTag,
const std::string& filename,
const bool addSolverSummary) {
if (addSolverSummary) {
ceres::Solver::Summary summary;
auto result = estimateHandEye(baseToTip, camToTag, summary);
writeCalibration(result, filename, summary);
return result;
} else {
auto result = estimateHandEye(baseToTip, camToTag);
writeCalibration(result, filename);
return result;
}
}
// function getch is from
// http://answers.ros.org/question/63491/keyboard-key-pressed/
int getch() {
static struct termios oldt, newt;
tcgetattr(STDIN_FILENO, &oldt); // save old settings
newt = oldt;
newt.c_lflag &= ~(ICANON); // disable buffering
tcsetattr(STDIN_FILENO, TCSANOW, &newt); // apply new settings
int c = getchar(); // read character (non-blocking)
tcsetattr(STDIN_FILENO, TCSANOW, &oldt); // restore old settings
return c;
}
void addFrame() {
ros::Time now = ros::Time::now();
tf::StampedTransform EETransform, CamTransform;
bool hasEE = true, hasCam = true;
if (listener->waitForTransform(cameraTFname, ARTagTFname, now,
ros::Duration(1)))
listener->lookupTransform(cameraTFname, ARTagTFname, now, CamTransform);
else {
hasCam = false;
ROS_WARN("Fail to Cam TF transform between %s to %s",
cameraTFname.c_str(), ARTagTFname.c_str());
}
if (listener->waitForTransform(baseTFname, EETFname, now, ros::Duration(1)))
listener->lookupTransform(baseTFname, EETFname, now, EETransform);
else {
hasEE = false;
ROS_WARN("Fail to EE TF transform between %s to %s", baseTFname.c_str(),
EETFname.c_str());
}
if (hasEE and hasCam) {
Eigen::Affine3d eigenEE, eigenCam;
tf::transformTFToEigen(EETransform, eigenEE);
tf::transformTFToEigen(CamTransform, eigenCam);
baseToTip.push_back(eigenEE);
cameraToTag.push_back(eigenCam);
if (firstTransform) {
firstEEInverse = eigenEE.inverse();
firstCamInverse = eigenCam.inverse();
ROS_INFO("Adding first transformation.");
firstTransform = false;
} else {
Eigen::Affine3d robotTipinFirstTipBase = firstEEInverse * eigenEE;
Eigen::Affine3d fiducialInFirstFiducialBase =
firstCamInverse * eigenCam;
rvecsArm.push_back(eigenRotToEigenVector3dAngleAxis(
robotTipinFirstTipBase.rotation()));
tvecsArm.push_back(robotTipinFirstTipBase.translation());
rvecsFiducial.push_back(eigenRotToEigenVector3dAngleAxis(
fiducialInFirstFiducialBase.rotation()));
tvecsFiducial.push_back(fiducialInFirstFiducialBase.translation());
ROS_INFO("Hand Eye Calibration Transform Pair Added");
std::cerr << "EE Relative transform: \n"
<< robotTipinFirstTipBase.matrix() << std::endl;
std::cerr << "Cam Relative transform: \n"
<< fiducialInFirstFiducialBase.matrix() << std::endl;
std::cerr << "EE pos: (" << EETransform.getOrigin().getX() << ", "
<< EETransform.getOrigin().getY() << ", "
<< EETransform.getOrigin().getZ() << ")\n";
std::cerr << "EE rot: ("
<< EETransform.getRotation().getAxis().getX() << ", "
<< EETransform.getRotation().getAxis().getY() << ", "
<< EETransform.getRotation().getAxis().getZ() << ", "
<< EETransform.getRotation().getW() << ")\n";
Eigen::Vector4d r_tmp = robotTipinFirstTipBase.matrix().col(3);
r_tmp[3] = 0;
Eigen::Vector4d c_tmp = fiducialInFirstFiducialBase.matrix().col(3);
c_tmp[3] = 0;
std::cerr
<< "L2Norm EE: "
<< robotTipinFirstTipBase.matrix().block(0, 3, 3, 1).norm()
<< " vs Cam:"
<< fiducialInFirstFiducialBase.matrix().block(0, 3, 3, 1).norm()
<< std::endl;
}
std::cerr << "EE transform: \n" << eigenEE.matrix() << std::endl;
std::cerr << "Cam transform: \n" << eigenCam.matrix() << std::endl;
} else {
ROS_WARN("Fail to get one/both of needed TF transform");
}
}
int main(int argc, char** argv) {
ros::init(argc, argv, "handeye_calib_camodocal");
ros::NodeHandle nh("~");
std::string transformPairsRecordFile;
std::string transformPairsLoadFile;
std::string calibratedTransformFile;
bool loadTransformsFromFile = false;
bool addSolverSummary = false;
// getting TF names
nh.param("ARTagTF", ARTagTFname, std::string("/camera_2/ar_marker_0"));
nh.param("cameraTF", cameraTFname, std::string("/camera_2_link"));
nh.param("EETF", EETFname, std::string("/ee_fixed_link"));
nh.param("baseTF", baseTFname, std::string("/base_link"));
nh.param("add_solver_summary", addSolverSummary, false);
nh.param("load_transforms_from_file", loadTransformsFromFile, false);
nh.param("transform_pairs_record_filename", transformPairsRecordFile,
std::string("TransformPairsInput.yml"));
nh.param("transform_pairs_load_filename", transformPairsLoadFile,
std::string("TransformPairsOutput.yml"));
nh.param("output_calibrated_transform_filename", calibratedTransformFile,
std::string("CalibratedTransform.yml"));
std::cerr << "Calibrated output file: " << calibratedTransformFile << "\n";
if (loadTransformsFromFile) {
std::cerr << "Transform pairs loading file: " << transformPairsLoadFile
<< "\n";
EigenAffineVector t1, t2;
readTransformPairsFromFile(transformPairsLoadFile, t1, t2);
auto result =
estimateHandEye(t1, t2, calibratedTransformFile, addSolverSummary);
return 0;
}
std::cerr << "Transform pairs recording to file: "
<< transformPairsRecordFile << "\n";
ros::Rate r(10); // 10 hz
listener = new (tf::TransformListener);
ros::Duration(1.0).sleep(); // cache the TF transforms
int key = 0;
ROS_INFO("Press s to add the current frame transformation to the cache.");
ROS_INFO("Press d to delete last frame transformation.");
ROS_INFO(
"Press q to calibrate frame transformation and exit the application.");
while (ros::ok()) {
key = getch();
if ((key == 's') || (key == 'S')) {
std::cerr << "Adding Transform #:" << rvecsArm.size() << "\n";
addFrame();
writeTransformPairsToFile(baseToTip, cameraToTag,
transformPairsRecordFile);
} else if ((key == 'd') || (key == 'D')) {
ROS_INFO("Deleted last frame transformation. Number of Current "
"Transformations: %u",
(unsigned int)rvecsArm.size());
rvecsArm.pop_back();
tvecsArm.pop_back();
rvecsFiducial.pop_back();
tvecsFiducial.pop_back();
baseToTip.pop_back();
cameraToTag.pop_back();
} else if ((key == 'q') || (key == 'Q')) {
if (rvecsArm.size() < 5) {
ROS_WARN("Number of calibration transform pairs < 5.");
ROS_INFO("Node Quit");
}
ROS_INFO("Calculating Calibration...");
camodocal::HandEyeCalibration calib;
Eigen::Matrix4d result;
ceres::Solver::Summary summary;
if (addSolverSummary) {
calib.estimateHandEyeScrew(rvecsArm, tvecsArm, rvecsFiducial,
tvecsFiducial, result, summary,
false);
} else {
calib.estimateHandEyeScrew(rvecsArm, tvecsArm, rvecsFiducial,
tvecsFiducial, result, false);
}
std::cerr << "Quaternion values are output in wxyz order\n";
std::cerr << "Calibration result (" << ARTagTFname << " pose in "
<< EETFname << " frame): \n"
<< result << std::endl;
Eigen::Transform<double, 3, Eigen::Affine> resultAffine(result);
std::cerr << "Translation (x,y,z) : "
<< resultAffine.translation().transpose() << std::endl;
Eigen::Quaternion<double> quaternionResult(resultAffine.rotation());
std::stringstream ss;
ss << quaternionResult.w() << " " << quaternionResult.x() << " "
<< quaternionResult.y() << " " << quaternionResult.z()
<< std::endl;
std::cerr << "Rotation (w,x,y,z): " << ss.str() << std::endl;
if (addSolverSummary) {
writeCalibration(resultAffine, calibratedTransformFile,
summary);
} else {
writeCalibration(resultAffine, calibratedTransformFile);
}
Eigen::Transform<double, 3, Eigen::Affine> resultAffineInv =
resultAffine.inverse();
std::cerr << "Inverted Calibration result (" << EETFname
<< " pose in " << ARTagTFname << " frame): \n";
std::cerr << "Translation (x,y,z): "
<< resultAffineInv.translation().transpose() << std::endl;
quaternionResult =
Eigen::Quaternion<double>(resultAffineInv.rotation());
ss.clear();
ss << quaternionResult.w() << " " << quaternionResult.x() << " "
<< quaternionResult.y() << " " << quaternionResult.z()
<< std::endl;
std::cerr << "Rotation (w,x,y,z): " << ss.str() << std::endl;
break;
} else {
std::cerr << key << " pressed.\n";
}
r.sleep();
}
ros::shutdown();
return (0);
}