|
Repository Summary
Description | This project is my final year capstone project - A self-navigating robot for search and rescue. We build a robot in ROS and integrate several functions: self-navigation, object detection and tracking, and an Arduino board to grab simple objects. The final demostration video is shown here: https://youtu.be/2dpzOpEn4hM |
Checkout URI | https://github.com/maggielovedd/fyp-rescue-robot.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2021-02-10 |
Dev Status | UNKNOWN |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | arduino-uno opencv-python ros-melodic jetson-nano |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
huanyu_robot_start | 0.0.0 |
huanyubot_description | 0.0.0 |
amcl | 1.16.3 |
base_local_planner | 1.16.3 |
carrot_planner | 1.16.3 |
clear_costmap_recovery | 1.16.3 |
costmap_2d | 1.16.3 |
dwa_local_planner | 1.16.3 |
fake_localization | 1.16.3 |
global_planner | 1.16.3 |
map_server | 1.16.3 |
move_base | 1.16.3 |
move_slow_and_clear | 1.16.3 |
nav_core | 1.16.3 |
navfn | 1.16.3 |
navigation | 1.16.3 |
rotate_recovery | 1.16.3 |
voxel_grid | 1.16.3 |
object_detect | 0.0.0 |
opencv_move | 0.0.0 |
publisher | 0.0.0 |
robot_pose_ekf | 1.14.5 |
rplidar_ros | 1.10.0 |
gmapping | 1.4.0 |
slam_gmapping | 1.4.0 |
turtlebot_teleop | 2.4.2 |
usb_cam | 0.3.6 |
README
A self-navigatng robot for search and rescue
This project is my final year capstone project - A self-navigating robot for search and rescue. We build a robot in ROS and integrate several functions: self-navigation, object detection and tracking, and an Arduino board to grab simple objects. The final demostration video is shown here: https://youtu.be/2dpzOpEn4hM or https://www.bilibili.com/video/BV1fz4y1D72Y/
Overview of the project
We bought a Nano robot for SLAM from Taobao (https://m.tb.cn/h.VIjRDe7?sm=fc07a3) and then add on other functions. Most of the packages are either provided by the seller or opensource. Our contribution is mainly integrate them to perform a simplified ‘rescue mission’ - autonomously find and pick up a blue block and then return it to origin.
We used gampping for mapping, move_base for navigation and rosserial for linking Arduino with ROS. We intorduces three original nodes:
- object_detection: object detection is based on color using opencv-python (path:/object detect/src/vision.py)
- go_to_center: for object trakcing we devided the screen into nine partitions and each correspnds to a certain velocity (path:/object detect/src/go_to_center.py)
- path_points: record the goal(search) points in navigation and publish them when appropriate (path:/huanyu_robot_start/script/show_mark.py)
The alogrithms are simple and basic since we are also ROS beginners. The robot uses Jaston Nano board as the master board and the whole project is built in ROS Melodic.
Project flow (Demo)
1.Navigation
The user need to set initial position(0) and search points(1,2,3,…). The robot navigates to the search points in order using /move_base package and search the target along the way. When target is insight (
/find_blue, x=1
), it stops navigation.
2.Object detection and tracking
Robot starts to approach the target and once it’s ready to pick up, it activates the arduino robot arm (
/grab, x=1
).
3.Grasp object
After picking up the target, it judge if the object is successfully grasped by the visual feedback (
/grab_finish, x=1
). If the target is detected at the designated ROI, we assume this pick up task is complete.
4.Return to origin
The robot returns to the original position (0) and put down the target (
/grab, x=2
).
Logic flow
Project framework
Hardware and software
Design of the workflow and individual function
Rqt
Topic and Node list
Command
Step1: Generate a map
roslaunch huanyu_robot_start Huanyu_robot_start.launch
roslaunch huanyu_robot_start gmapping_slam.launch
roslaunch turtle_teleop keyboard_teleop.launch
rviz
cd robot_ws/src/hunayu_robot_start/map » open terminal
rosrun map_server map_saver -f map_name
Step2: Rescue robot
cd robot_ws/src/huanyu_robot_start/launch
gedit navigation_slam.launch » change map filename
roslaunch huanyu_robot_start Huanyu_robot_start.launch
roslaunch huanyu_robot_start navigation.launch
rviz
roslaunch usb_cam usb_cam-test.launch
rqt_image_view
rosrun obect_detect vision.py
rosrun object detect go_to_center.py
rosrun huanyu_robot_start show_mark.py
rosrun rosserial_python serial_node.py /dev/ttyUSB0
More info
Please refer to the pdf file in report folder