├── .flake8 ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── IMPROVEMENTS.md ├── MIGRATION.md ├── QUICKSTART.md ├── README.md └── SECURITY.md ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── config.yaml ├── examples ├── benchmark.py ├── object_follower.py └── test_detector.py ├── install.sh ├── pyproject.toml ├── setup.py └── tello_vision ├── __init__.py ├── app.py ├── detectors ├── __init__.py ├── base_detector.py ├── detectron2_detector.py └── yolo_detector.py ├── tello_controller.py └── visualizer.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/IMPROVEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/.github/IMPROVEMENTS.md -------------------------------------------------------------------------------- /.github/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/.github/MIGRATION.md -------------------------------------------------------------------------------- /.github/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/.github/QUICKSTART.md -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/config.yaml -------------------------------------------------------------------------------- /examples/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/examples/benchmark.py -------------------------------------------------------------------------------- /examples/object_follower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/examples/object_follower.py -------------------------------------------------------------------------------- /examples/test_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/examples/test_detector.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/install.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/setup.py -------------------------------------------------------------------------------- /tello_vision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/tello_vision/__init__.py -------------------------------------------------------------------------------- /tello_vision/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/tello_vision/app.py -------------------------------------------------------------------------------- /tello_vision/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/tello_vision/detectors/__init__.py -------------------------------------------------------------------------------- /tello_vision/detectors/base_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/tello_vision/detectors/base_detector.py -------------------------------------------------------------------------------- /tello_vision/detectors/detectron2_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/tello_vision/detectors/detectron2_detector.py -------------------------------------------------------------------------------- /tello_vision/detectors/yolo_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/tello_vision/detectors/yolo_detector.py -------------------------------------------------------------------------------- /tello_vision/tello_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/tello_vision/tello_controller.py -------------------------------------------------------------------------------- /tello_vision/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-object-detection-segmentation/HEAD/tello_vision/visualizer.py --------------------------------------------------------------------------------