├── .editorconfig ├── .flake8 ├── .github ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── SECURITY.md └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── Makefile ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── setup.py ├── src ├── __init__.py ├── camera_interface.py ├── collision_avoidance.py ├── config.py ├── convert_weights.py ├── depth_estimator.py ├── tello_source.py ├── utils.py └── webcam_source.py ├── tello_demo.py ├── tests ├── __init__.py ├── test_collision_avoidance.py ├── test_depth_estimator.py ├── test_tello_interface.py ├── test_utils.py └── test_webcam_demo.py └── webcam_demo.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/.github/CHANGELOG.md -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/Makefile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/camera_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/src/camera_interface.py -------------------------------------------------------------------------------- /src/collision_avoidance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/src/collision_avoidance.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/src/config.py -------------------------------------------------------------------------------- /src/convert_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/src/convert_weights.py -------------------------------------------------------------------------------- /src/depth_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/src/depth_estimator.py -------------------------------------------------------------------------------- /src/tello_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/src/tello_source.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/webcam_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/src/webcam_source.py -------------------------------------------------------------------------------- /tello_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/tello_demo.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_collision_avoidance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/tests/test_collision_avoidance.py -------------------------------------------------------------------------------- /tests/test_depth_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/tests/test_depth_estimator.py -------------------------------------------------------------------------------- /tests/test_tello_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/tests/test_tello_interface.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_webcam_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/tests/test_webcam_demo.py -------------------------------------------------------------------------------- /webcam_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronefreak/dji-tello-collision-avoidance-pydnet/HEAD/webcam_demo.py --------------------------------------------------------------------------------