1
0

face_tracker_start 352 B

1234567891011121314
  1. #!/bin/bash
  2. # Copyright: 2016-2018 ROS小课堂 www.corvin.cn
  3. # Author: corvin
  4. # Description: when poweron auto launch face tracker node.
  5. # History:
  6. # 20181129: initial this bash file.
  7. source /opt/ros/kinetic/setup.bash
  8. source /home/corvin/face_tracker/ros_code/devel/setup.bash
  9. roslaunch face_tracker_bringup face_tracker_bringup.launch
  10. exit 0