/
xinvestoriginal
/
CiberDogEvolution
Обзор
Документация
Войти
/
xinvestoriginal
/
CiberDogEvolution
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
python-dog-old/camera.py
25 строк
523 B
den
реализована передача файлов на сервер питон
15 май 2025, 06:38
15 май 2025, 06:38
aa9c2ec
Код
Авторство
О чём код?
# import the opencv library import cv2 # define a video capture object vid = cv2.VideoCapture(0) while (True): # Capture the video frame # by frame ret, frame = vid.read() # Display the resulting frame cv2.imshow('frame', frame) # the 'q' button is set as the # quitting button you may use any # desired button of your choice if cv2.waitKey(1) & 0xFF == ord('q'): break # After the loop release the cap object vid.release() # Destroy all the windows cv2.destroyAllWindows()