- Sneha Nayak: 2nd year Mengg Robotics @UMD. Interests: Machine Learning, Reinforcement Learning, Motion Planning.
- Vasista Ayyagari: 1st year Mengg Robotics @UMD. Interests: Computer Vision, Path Planning.
- Vishnuu A. Dhanabalan: 2nd year Mengg Robotics @UMD. Interests: Computer Vision, Autonomy.
https://docs.google.com/document/d/1TP-40cn_BOVU-LJUg8t6y-jqjPbL3MI7luDLiohg9YM/edit?ts=5fc688f2
https://docs.google.com/presentation/d/1zoR2qmA_PsgM87A83aFrFod_hp6GY0hheZv6_P0coQ0/edit?usp=sharing
https://drive.google.com/drive/folders/1QhVnbJzgOnSTSSQTxaUrr-i40nOv9kYT?usp=sharing
https://www.youtube.com/watch?v=feeuLlQeejQ
Awesom-O is an autonomous threat detection and response robot who’s main objective is to de-tect threats and accordingly eliminate them. The robot scans the environment, detects potentialthreats which are marked with an AruCo marker. The Awesom-O then proceeds to autonomouslynavigate towards the object of interest (or threat) while avoiding collision with other obstacles inthe environment. When it is within a certain radius of the object of interest, it disarms it andmoves on to its next target, thus eliminating all threats in the environment.
We managed to implement two methods in which the robot can accurately detect its threats. One is the vision based technique, where the robot can detect it's threat, which is in the form of an arTag with an associated ID. The robot detects all ar tags in its map/environment before it can say that it's "mission" was complete. In the vicinity based method, the robot detects threats when it approches close to the target, and diverges from it's predefined path to disarm the target threat.
We intend on creating a robust set of test cases with:
- cmake
- gtest
- rostest
- Ubuntu 18.04 (Operating System)
- Modern C++ 11(Programming Language)
- CMake (Build System)
- OpenCV >= 4.4
- ROS Melodic
- Gazebo
- ar_track_alvar ROS package
MIT License
Copyright (c) 2020 Vasista Ayyagari, Vishnuu A. Dhanabalan, Sneha Nayak
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
cd <<Your_catkin_workspace>>/src
git clone --recursive https://github.com/snehanyk05/Awesom-O/
cd ../..
export TURTLEBOT3_MODEL=waffle
catkin_make && source devel/setup.bash
roslaunch awesomo test.launch useVision:=true
cd <<Your_catkin_workspace>>/src
git clone --recursive https://github.com/snehanyk05/Awesom-O/
cd ../..
export TURTLEBOT3_MODEL=waffle
catkin_make && source devel/setup.bash
roslaunch awesomo test.launch useVision:=false
catkin_make run_tests_awesomo
sudo apt-get install lcov
cmake -D COVERAGE=ON -D CMAKE_BUILD_TYPE=Debug ../
make
make code_coverage
This generates a index.html page in the build/coverage sub-directory that can be viewed locally in a web browser.
To install doxygen run the following command:
sudo apt-get install doxygen
Now from the cloned directory run:
doxygen doxygen
Generated doxygen files are in html format and you can find them in ./docs folder. With the following command
cd docs
cd html
google-chrome index.html
