ROS simulation of a four wheeled mobile robot with skid steer control following a ball using a camera
.
├── catkin_ws
│ └── src
│ ├── ball_chaser
│ │ ├── CMakeLists.txt
│ │ ├── launch
│ │ │ └── ball_chaser.launch
│ │ ├── package.xml
│ │ ├── src
│ │ │ ├── drive_bot.cpp
│ │ │ └── process_image.cpp
│ │ └── srv
│ │ └── DriveToTarget.srv
│ ├── CMakeLists.txt -> /opt/ros/kinetic/share/catkin/cmake/toplevel.cmake
│ └── go_chase_it
│ ├── CMakeLists.txt
│ ├── launch
│ │ ├── robot_description.launch
│ │ └── world.launch
│ ├── meshes
│ │ └── hokuyo.dae
│ ├── package.xml
│ ├── urdf
│ │ ├── my_robot.gazebo
│ │ └── my_robot.xacro
│ └── world
│ ├── empty.world
│ ├── myOffice.world
│ └── OfficeWithBall.world
└── README.md
$ git clone https://github.com/farzingkh/ChaseIt.git
$ cd ChaseIt/catkin_ws
$ source devel/setup.bahs
$ catkin_make
$ roslaunch go_chase_it world.launch
$ roslaunch ball_chaser world.launch