How to use in ORB_SLAM2¶
If you wanna run ORB_SLAM2 with MYNT EYE camera, please follow the steps:¶
- Download MYNT-EYE-S-SDK and follow steps to install.
- Follow the normal procedure to install ORB_SLAM2.
- Update
distortion_parametersandprojection_parametersto<ORB_SLAM2>/config/mynteye_*.yaml. - Run examples by MYNT® EYE.
Binocular camera sample¶
- Calibrate a stereo camera with ROS-StereoCalibration or OpenCV, and then update parameters to
<ORB_SLAM2>/config/mynteye_s_stereo.yaml. - Execute
build.sh:
chmod +x build.sh
./build.sh
- Run stereo sample using the follow type:
./Examples/Stereo/stereo_mynt_s ./Vocabulary/ORBvoc.txt ./config/mynteye_s_stereo.yaml true /mynteye/left/image_raw /mynteye/right/image_raw
Building the nodes for mono and stereo (ROS)¶
- Add the path including
Examples/ROS/ORB_SLAM2to theROS_PACKAGE_PATHenvironment variable. Open.bashrcfile and add at the end the following line. ReplacePATHby the folder where you cloned ORB_SLAM2:
export ROS_PACKAGE_PATH=${ROS_PACKAGE_PATH}:PATH/ORB_SLAM2/Examples/ROS
- Execute build_ros.sh:
chmod +x build_ros.sh
./build_ros.sh
Stereo_ROS Example¶
- Reference
Get camera calibration parametersin How to use in OKVIS to getdistortion_parametersandprojection_parameters, and update<ORB_SLAM2>/config/mynteye_s_stereo.yaml.- Launch ORB_SLAM2
Stereo_ROS
- Launch mynteye node
cd [path of mynteye-s-sdk]
make ros
source ./wrappers/ros/devel/setup.bash
roslaunch mynt_eye_ros_wrapper mynteye.launch
- Open another terminal and run ORB_SLAM2
rosrun ORB_SLAM2 mynteye_s_stereo ./Vocabulary/ORBvoc.txt ./config/mynteye_s_stereo.yaml true /mynteye/left/image_raw /mynteye/right/image_raw