7 lines
198 B
Python
7 lines
198 B
Python
from drone_pilot.main import FaceTrackingApp
|
|
|
|
if __name__ == "__main__":
|
|
# Change use_real_tello=True when flying the physical drone
|
|
app = FaceTrackingApp(use_real_tello=True)
|
|
app.run()
|