├── Detection ├── MtcnnDetector.py ├── __init__.py ├── detector.py ├── fcn_detector.py └── nms.py ├── LICENSE ├── README.md ├── client.py ├── core ├── preprocess.py └── visualization.py ├── crc16.py ├── crc8.py ├── data └── MTCNN_model │ ├── ONet_landmark │ ├── ONet-16.data-00000-of-00001 │ ├── ONet-16.index │ ├── ONet-16.meta │ └── checkpoint │ ├── PNet_landmark │ ├── PNet-18.data-00000-of-00001 │ ├── PNet-18.index │ ├── PNet-18.meta │ └── checkpoint │ └── RNet_landmark │ ├── RNet-14.data-00000-of-00001 │ ├── RNet-14.index │ ├── RNet-14.meta │ └── checkpoint ├── face.png ├── flight-face.png ├── frame.py ├── instruction.py ├── server.py ├── standard_fields.py ├── tello.py ├── temp.h264 ├── test_flight.py ├── test_flight_rotate.py ├── test_video.py ├── train_models ├── MTCNN_config.py ├── __init__.py └── mtcnn_model.py └── visualization_utils.py /Detection/MtcnnDetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/Detection/MtcnnDetector.py -------------------------------------------------------------------------------- /Detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Detection/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/Detection/detector.py -------------------------------------------------------------------------------- /Detection/fcn_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/Detection/fcn_detector.py -------------------------------------------------------------------------------- /Detection/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/Detection/nms.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/README.md -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/client.py -------------------------------------------------------------------------------- /core/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/core/preprocess.py -------------------------------------------------------------------------------- /core/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/core/visualization.py -------------------------------------------------------------------------------- /crc16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/crc16.py -------------------------------------------------------------------------------- /crc8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/crc8.py -------------------------------------------------------------------------------- /data/MTCNN_model/ONet_landmark/ONet-16.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/ONet_landmark/ONet-16.data-00000-of-00001 -------------------------------------------------------------------------------- /data/MTCNN_model/ONet_landmark/ONet-16.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/ONet_landmark/ONet-16.index -------------------------------------------------------------------------------- /data/MTCNN_model/ONet_landmark/ONet-16.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/ONet_landmark/ONet-16.meta -------------------------------------------------------------------------------- /data/MTCNN_model/ONet_landmark/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/ONet_landmark/checkpoint -------------------------------------------------------------------------------- /data/MTCNN_model/PNet_landmark/PNet-18.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/PNet_landmark/PNet-18.data-00000-of-00001 -------------------------------------------------------------------------------- /data/MTCNN_model/PNet_landmark/PNet-18.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/PNet_landmark/PNet-18.index -------------------------------------------------------------------------------- /data/MTCNN_model/PNet_landmark/PNet-18.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/PNet_landmark/PNet-18.meta -------------------------------------------------------------------------------- /data/MTCNN_model/PNet_landmark/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/PNet_landmark/checkpoint -------------------------------------------------------------------------------- /data/MTCNN_model/RNet_landmark/RNet-14.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/RNet_landmark/RNet-14.data-00000-of-00001 -------------------------------------------------------------------------------- /data/MTCNN_model/RNet_landmark/RNet-14.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/RNet_landmark/RNet-14.index -------------------------------------------------------------------------------- /data/MTCNN_model/RNet_landmark/RNet-14.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/RNet_landmark/RNet-14.meta -------------------------------------------------------------------------------- /data/MTCNN_model/RNet_landmark/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/data/MTCNN_model/RNet_landmark/checkpoint -------------------------------------------------------------------------------- /face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/face.png -------------------------------------------------------------------------------- /flight-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/flight-face.png -------------------------------------------------------------------------------- /frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/frame.py -------------------------------------------------------------------------------- /instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/instruction.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/server.py -------------------------------------------------------------------------------- /standard_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/standard_fields.py -------------------------------------------------------------------------------- /tello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/tello.py -------------------------------------------------------------------------------- /temp.h264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/temp.h264 -------------------------------------------------------------------------------- /test_flight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/test_flight.py -------------------------------------------------------------------------------- /test_flight_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/test_flight_rotate.py -------------------------------------------------------------------------------- /test_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/test_video.py -------------------------------------------------------------------------------- /train_models/MTCNN_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/train_models/MTCNN_config.py -------------------------------------------------------------------------------- /train_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /train_models/mtcnn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/train_models/mtcnn_model.py -------------------------------------------------------------------------------- /visualization_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevconX/Tello-Python/HEAD/visualization_utils.py --------------------------------------------------------------------------------