Python/파이썬 프로젝트
2021. 9. 14.
tello 텔로 드론 비디오 스트리밍 받아오기 파이썬 코드
1. 텔로드론으로 실시간 비디오 스트리밍 받아오기 - tello_stream.py 코드 작성 from djitellopy import tello import cv2 from time import sleep me = tello.Tello() me.connect() print(me.get_battery()) me.streamon() while True : img = me.get_frame_read().frame img = cv2.resize(img, (360, 240)) cv2.imshow("Image", img) cv2.waitKey(2) 2. 키보드로 실시간 드론 제어하기 1) KeyPressModule.py 파일 만들기 import pygame def init(): pygame.init() win = ..