How To: Tello Drone To RoboRealm - Jack Pender, Blog #8

Introduction: This blog post is a tutorial intended to give you everything you need in order to start streaming the camera feed from a Tello drone and get this stream into RoboRealm. All of the necessary files are included in this repository: https://github.com/jackpender/TelloToRoboRealm I have detailed the steps but I suggest also taking a look at the repository as you go, especially the python file if you aren't familiar with OpenCV. Python File: · The first step is to import all the libraries that we will use. · We will be livestreaming the tello camera feed to the localhost using flask, so we now initialize this flask app. · We also open up the connection to the drone; me = Tello(), setting its name to “me”. · We then create a function called “gen_frames” to continuously grab the image that t...