├── .circleci └── config.yml ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CMakeLists.txt ├── Doxyfile ├── LICENSE ├── README.md ├── include ├── cgutil.hpp └── torres_etal_2016.hpp ├── launch └── cpp_uav.launch ├── package.xml ├── script └── specify_rect.py ├── src └── torres_etal_2016.cpp ├── srv └── Torres16.srv └── test ├── test_cgutil.cpp └── test_torres_etal_2016.cpp /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/README.md -------------------------------------------------------------------------------- /include/cgutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/include/cgutil.hpp -------------------------------------------------------------------------------- /include/torres_etal_2016.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/include/torres_etal_2016.hpp -------------------------------------------------------------------------------- /launch/cpp_uav.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/launch/cpp_uav.launch -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/package.xml -------------------------------------------------------------------------------- /script/specify_rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/script/specify_rect.py -------------------------------------------------------------------------------- /src/torres_etal_2016.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/src/torres_etal_2016.cpp -------------------------------------------------------------------------------- /srv/Torres16.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/srv/Torres16.srv -------------------------------------------------------------------------------- /test/test_cgutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/test/test_cgutil.cpp -------------------------------------------------------------------------------- /test/test_torres_etal_2016.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uenota/cpp_uav/HEAD/test/test_torres_etal_2016.cpp --------------------------------------------------------------------------------