├── .gitattributes ├── .gitignore ├── DeepNet ├── DeepNet.py ├── network │ ├── Memory.py │ ├── agent.py │ ├── alexnet_net.py │ ├── fcrn.py │ ├── heat_map.py │ ├── heat_map_network.py │ ├── loss_functions.py │ ├── net.py │ ├── network.py │ ├── params.xls │ └── vgg16_net.py └── util │ ├── Memory.py │ ├── SumTree.py │ ├── analyze_stat_npy.py │ └── transformations.py ├── LICENSE ├── README.md ├── RL_functions.py ├── __init__.py ├── configs ├── config.cfg └── read_cfg.py ├── images ├── cover.png └── tello.png ├── main_code.py ├── requirements.txt └── tellopy ├── __init__.py ├── _internal ├── __init__.py ├── crc.py ├── dispatcher.py ├── error.py ├── event.py ├── logger.py ├── protocol.py ├── state.py ├── tello.py ├── utils.py └── video_stream.py ├── examples ├── __init__.py ├── joystick_and_video.py ├── keyboard_and_video.py ├── record_log.py ├── simple_takeoff.py └── video_effect.py └── tello_drone.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/.gitignore -------------------------------------------------------------------------------- /DeepNet/DeepNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/DeepNet.py -------------------------------------------------------------------------------- /DeepNet/network/Memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/network/Memory.py -------------------------------------------------------------------------------- /DeepNet/network/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/network/agent.py -------------------------------------------------------------------------------- /DeepNet/network/alexnet_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/network/alexnet_net.py -------------------------------------------------------------------------------- /DeepNet/network/fcrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/network/fcrn.py -------------------------------------------------------------------------------- /DeepNet/network/heat_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/network/heat_map.py -------------------------------------------------------------------------------- /DeepNet/network/heat_map_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/network/heat_map_network.py -------------------------------------------------------------------------------- /DeepNet/network/loss_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/network/loss_functions.py -------------------------------------------------------------------------------- /DeepNet/network/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/network/net.py -------------------------------------------------------------------------------- /DeepNet/network/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/network/network.py -------------------------------------------------------------------------------- /DeepNet/network/params.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/network/params.xls -------------------------------------------------------------------------------- /DeepNet/network/vgg16_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/network/vgg16_net.py -------------------------------------------------------------------------------- /DeepNet/util/Memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/util/Memory.py -------------------------------------------------------------------------------- /DeepNet/util/SumTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/util/SumTree.py -------------------------------------------------------------------------------- /DeepNet/util/analyze_stat_npy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/util/analyze_stat_npy.py -------------------------------------------------------------------------------- /DeepNet/util/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/DeepNet/util/transformations.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/README.md -------------------------------------------------------------------------------- /RL_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/RL_functions.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/__init__.py -------------------------------------------------------------------------------- /configs/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/configs/config.cfg -------------------------------------------------------------------------------- /configs/read_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/configs/read_cfg.py -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/images/cover.png -------------------------------------------------------------------------------- /images/tello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/images/tello.png -------------------------------------------------------------------------------- /main_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/main_code.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/requirements.txt -------------------------------------------------------------------------------- /tellopy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/__init__.py -------------------------------------------------------------------------------- /tellopy/_internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tellopy/_internal/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/_internal/crc.py -------------------------------------------------------------------------------- /tellopy/_internal/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/_internal/dispatcher.py -------------------------------------------------------------------------------- /tellopy/_internal/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/_internal/error.py -------------------------------------------------------------------------------- /tellopy/_internal/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/_internal/event.py -------------------------------------------------------------------------------- /tellopy/_internal/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/_internal/logger.py -------------------------------------------------------------------------------- /tellopy/_internal/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/_internal/protocol.py -------------------------------------------------------------------------------- /tellopy/_internal/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/_internal/state.py -------------------------------------------------------------------------------- /tellopy/_internal/tello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/_internal/tello.py -------------------------------------------------------------------------------- /tellopy/_internal/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/_internal/utils.py -------------------------------------------------------------------------------- /tellopy/_internal/video_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/_internal/video_stream.py -------------------------------------------------------------------------------- /tellopy/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tellopy/examples/joystick_and_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/examples/joystick_and_video.py -------------------------------------------------------------------------------- /tellopy/examples/keyboard_and_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/examples/keyboard_and_video.py -------------------------------------------------------------------------------- /tellopy/examples/record_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/examples/record_log.py -------------------------------------------------------------------------------- /tellopy/examples/simple_takeoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/examples/simple_takeoff.py -------------------------------------------------------------------------------- /tellopy/examples/video_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/examples/video_effect.py -------------------------------------------------------------------------------- /tellopy/tello_drone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqeelanwar/DRLwithTL_real/HEAD/tellopy/tello_drone.py --------------------------------------------------------------------------------