forked from raulmur/ORB_SLAM2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
296 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,171 @@ | ||
/** | ||
* 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<iostream> | ||
#include<algorithm> | ||
#include<fstream> | ||
#include<chrono> | ||
|
||
#include<ros/ros.h> | ||
#include <cv_bridge/cv_bridge.h> | ||
#include <message_filters/subscriber.h> | ||
#include <message_filters/time_synchronizer.h> | ||
#include <message_filters/sync_policies/approximate_time.h> | ||
|
||
#include<opencv2/core/core.hpp> | ||
|
||
#include"../../../include/System.h" | ||
|
||
using namespace std; | ||
|
||
class ImageGrabber | ||
{ | ||
public: | ||
ImageGrabber(ORB_SLAM2::System* pSLAM):mpSLAM(pSLAM){} | ||
|
||
void GrabStereo(const sensor_msgs::ImageConstPtr& msgLeft,const sensor_msgs::ImageConstPtr& msgRight); | ||
|
||
ORB_SLAM2::System* mpSLAM; | ||
bool do_rectify; | ||
cv::Mat M1l,M2l,M1r,M2r; | ||
}; | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
ros::init(argc, argv, "RGBD"); | ||
ros::start(); | ||
|
||
if(argc != 4) | ||
{ | ||
cerr << endl << "Usage: rosrun ORB_SLAM2 Stereo path_to_vocabulary path_to_settings do_rectify" << endl; | ||
ros::shutdown(); | ||
return 1; | ||
} | ||
|
||
// Create SLAM system. It initializes all system threads and gets ready to process frames. | ||
ORB_SLAM2::System SLAM(argv[1],argv[2],ORB_SLAM2::System::STEREO,true); | ||
|
||
ImageGrabber igb(&SLAM); | ||
|
||
if(argv[3]) | ||
{ | ||
igb.do_rectify = true; | ||
|
||
// Load settings related to stereo calibration | ||
cv::FileStorage fsSettings(argv[2], cv::FileStorage::READ); | ||
if(!fsSettings.isOpened()) | ||
{ | ||
cerr << "ERROR: Wrong path to settings" << endl; | ||
return -1; | ||
} | ||
|
||
cv::Mat K_l, K_r, P_l, P_r, R_l, R_r, D_l, D_r; | ||
fsSettings["LEFT.K"] >> K_l; | ||
fsSettings["RIGHT.K"] >> K_r; | ||
|
||
fsSettings["LEFT.P"] >> P_l; | ||
fsSettings["RIGHT.P"] >> P_r; | ||
|
||
fsSettings["LEFT.R"] >> R_l; | ||
fsSettings["RIGHT.R"] >> R_r; | ||
|
||
fsSettings["LEFT.D"] >> D_l; | ||
fsSettings["RIGHT.D"] >> D_r; | ||
|
||
int rows_l = fsSettings["LEFT.height"]; | ||
int cols_l = fsSettings["LEFT.width"]; | ||
int rows_r = fsSettings["RIGHT.height"]; | ||
int cols_r = fsSettings["RIGHT.width"]; | ||
|
||
if(K_l.empty() || K_r.empty() || P_l.empty() || P_r.empty() || R_l.empty() || R_r.empty() || D_l.empty() || D_r.empty() || | ||
rows_l==0 || rows_r==0 || cols_l==0 || cols_r==0) | ||
{ | ||
cerr << "ERROR: Calibration parameters to rectify stereo are missing!" << endl; | ||
return -1; | ||
} | ||
|
||
cv::initUndistortRectifyMap(K_l,D_l,R_l,P_l.rowRange(0,3).colRange(0,3),cv::Size(cols_l,rows_l),CV_32F,igb.M1l,igb.M2l); | ||
cv::initUndistortRectifyMap(K_r,D_r,R_r,P_r.rowRange(0,3).colRange(0,3),cv::Size(cols_r,rows_r),CV_32F,igb.M1r,igb.M2r); | ||
} | ||
|
||
ros::NodeHandle nh; | ||
|
||
message_filters::Subscriber<sensor_msgs::Image> left_sub(nh, "/camera/left/image_raw", 1); | ||
message_filters::Subscriber<sensor_msgs::Image> right_sub(nh, "camera/right/image_raw", 1); | ||
typedef message_filters::sync_policies::ApproximateTime<sensor_msgs::Image, sensor_msgs::Image> sync_pol; | ||
message_filters::Synchronizer<sync_pol> sync(sync_pol(10), left_sub,right_sub); | ||
sync.registerCallback(boost::bind(&ImageGrabber::GrabStereo,&igb,_1,_2)); | ||
|
||
ros::spin(); | ||
|
||
// Stop all threads | ||
SLAM.Shutdown(); | ||
|
||
// Save camera trajectory | ||
SLAM.SaveKeyFrameTrajectoryTUM("KeyFrameTrajectory_TUM_Format.txt"); | ||
SLAM.SaveTrajectoryTUM("FrameTrajectory_TUM_Format.txt"); | ||
SLAM.SaveTrajectoryKITTI("FrameTrajectory_KITTI_Format.txt"); | ||
|
||
ros::shutdown(); | ||
|
||
return 0; | ||
} | ||
|
||
void ImageGrabber::GrabStereo(const sensor_msgs::ImageConstPtr& msgLeft,const sensor_msgs::ImageConstPtr& msgRight) | ||
{ | ||
// Copy the ros image message to cv::Mat. | ||
cv_bridge::CvImageConstPtr cv_ptrLeft; | ||
try | ||
{ | ||
cv_ptrLeft = cv_bridge::toCvShare(msgLeft); | ||
} | ||
catch (cv_bridge::Exception& e) | ||
{ | ||
ROS_ERROR("cv_bridge exception: %s", e.what()); | ||
return; | ||
} | ||
|
||
cv_bridge::CvImageConstPtr cv_ptrRight; | ||
try | ||
{ | ||
cv_ptrRight = cv_bridge::toCvShare(msgRight); | ||
} | ||
catch (cv_bridge::Exception& e) | ||
{ | ||
ROS_ERROR("cv_bridge exception: %s", e.what()); | ||
return; | ||
} | ||
|
||
if(do_rectify) | ||
{ | ||
cv::Mat imLeft, imRight; | ||
cv::remap(cv_ptrLeft->image,imLeft,M1l,M2l,cv::INTER_LINEAR); | ||
cv::remap(cv_ptrRight->image,imRight,M1r,M2r,cv::INTER_LINEAR); | ||
mpSLAM->TrackStereo(imLeft,imRight,cv_ptrLeft->header.stamp.toSec()); | ||
} | ||
else | ||
{ | ||
mpSLAM->TrackStereo(cv_ptrLeft->image,cv_ptrRight->image,cv_ptrLeft->header.stamp.toSec()); | ||
} | ||
|
||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
%YAML:1.0 | ||
|
||
#-------------------------------------------------------------------------------------------- | ||
# Camera Parameters. Adjust them! | ||
#-------------------------------------------------------------------------------------------- | ||
|
||
# Camera calibration and distortion parameters (OpenCV) | ||
Camera.fx: 435.2046959714599 | ||
Camera.fy: 435.2046959714599 | ||
Camera.cx: 367.4517211914062 | ||
Camera.cy: 252.2008514404297 | ||
|
||
Camera.k1: 0.0 | ||
Camera.k2: 0.0 | ||
Camera.p1: 0.0 | ||
Camera.p2: 0.0 | ||
|
||
Camera.width: 752 | ||
Camera.height: 480 | ||
|
||
# Camera frames per second | ||
Camera.fps: 20.0 | ||
|
||
# stereo baseline times fx | ||
Camera.bf: 47.90639384423901 | ||
|
||
# Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale) | ||
Camera.RGB: 1 | ||
|
||
# Close/Far threshold. Baseline times. | ||
ThDepth: 35 | ||
|
||
#-------------------------------------------------------------------------------------------- | ||
# Stereo Rectification. Only if you need to pre-rectify the images. | ||
# Camera.fx, .fy, etc must be the same as in LEFT.P | ||
#-------------------------------------------------------------------------------------------- | ||
LEFT.height: 480 | ||
LEFT.width: 752 | ||
LEFT.D: !!opencv-matrix | ||
rows: 1 | ||
cols: 5 | ||
dt: d | ||
data:[-0.28340811, 0.07395907, 0.00019359, 1.76187114e-05, 0.0] | ||
LEFT.K: !!opencv-matrix | ||
rows: 3 | ||
cols: 3 | ||
dt: d | ||
data: [458.654, 0.0, 367.215, 0.0, 457.296, 248.375, 0.0, 0.0, 1.0] | ||
LEFT.R: !!opencv-matrix | ||
rows: 3 | ||
cols: 3 | ||
dt: d | ||
data: [0.999966347530033, -0.001422739138722922, 0.008079580483432283, 0.001365741834644127, 0.9999741760894847, 0.007055629199258132, -0.008089410156878961, -0.007044357138835809, 0.9999424675829176] | ||
LEFT.P: !!opencv-matrix | ||
rows: 3 | ||
cols: 4 | ||
dt: d | ||
data: [435.2046959714599, 0, 367.4517211914062, 0, 0, 435.2046959714599, 252.2008514404297, 0, 0, 0, 1, 0] | ||
|
||
RIGHT.height: 480 | ||
RIGHT.width: 752 | ||
RIGHT.D: !!opencv-matrix | ||
rows: 1 | ||
cols: 5 | ||
dt: d | ||
data:[-0.28368365, 0.07451284, -0.00010473, -3.555907e-05, 0.0] | ||
RIGHT.K: !!opencv-matrix | ||
rows: 3 | ||
cols: 3 | ||
dt: d | ||
data: [457.587, 0.0, 379.999, 0.0, 456.134, 255.238, 0.0, 0.0, 1] | ||
RIGHT.R: !!opencv-matrix | ||
rows: 3 | ||
cols: 3 | ||
dt: d | ||
data: [0.9999633526194376, -0.003625811871560086, 0.007755443660172947, 0.003680398547259526, 0.9999684752771629, -0.007035845251224894, -0.007729688520722713, 0.007064130529506649, 0.999945173484644] | ||
RIGHT.P: !!opencv-matrix | ||
rows: 3 | ||
cols: 4 | ||
dt: d | ||
data: [435.2046959714599, 0, 367.4517211914062, -47.90639384423901, 0, 435.2046959714599, 252.2008514404297, 0, 0, 0, 1, 0] | ||
|
||
#-------------------------------------------------------------------------------------------- | ||
# ORB Parameters | ||
#-------------------------------------------------------------------------------------------- | ||
|
||
# ORB Extractor: Number of features per image | ||
ORBextractor.nFeatures: 1000 | ||
|
||
# ORB Extractor: Scale factor between levels in the scale pyramid | ||
ORBextractor.scaleFactor: 1.2 | ||
|
||
# ORB Extractor: Number of levels in the scale pyramid | ||
ORBextractor.nLevels: 8 | ||
|
||
# ORB Extractor: Fast threshold | ||
# Image is divided in a grid. At each cell FAST are extracted imposing a minimum response. | ||
# Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST | ||
# You can lower these values if your images have low contrast | ||
ORBextractor.iniThFAST: 20 | ||
ORBextractor.minThFAST: 7 | ||
|
||
#-------------------------------------------------------------------------------------------- | ||
# Viewer Parameters | ||
#-------------------------------------------------------------------------------------------- | ||
Viewer.KeyFrameSize: 0.05 | ||
Viewer.KeyFrameLineWidth: 1 | ||
Viewer.GraphLineWidth: 0.9 | ||
Viewer.PointSize:2 | ||
Viewer.CameraSize: 0.08 | ||
Viewer.CameraLineWidth: 3 | ||
Viewer.ViewpointX: 0 | ||
Viewer.ViewpointY: -0.7 | ||
Viewer.ViewpointZ: -1.8 | ||
Viewer.ViewpointF: 500 | ||
|