Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JSON
- Visual Studio
- Numpy
- OpenCV
- paramiko
- Linux
- windows forms
- pytorch
- label
- SSH
- C#
- Python
- Selenium
- error
- 핑거스타일
- pandas
- VS Code
- YOLO
- mysql
- 프로그래머스
- Docker
- ubuntu
- pip
- 명령어
- 기타 연주
- C++
- 오류
- 채보
- C
- LIST
Archives
- Today
- Total
목록웹캠 (1)
기계는 거짓말하지 않는다
Python OpenCV 웹캠 실시간 읽기
Python의 OpenCV를 이용하여 웹캠을 실시간으로 읽어 올 수 있다. import cv2 import numpy as np # 0 = default camera, 1 or more = additional camera capture = cv2.VideoCapture(0) # 3 = height, 4 = width 크기 설정 capture.set(3, 720) capture.set(4, 1080) while True: # ret = True or False, frame = numpy array ret, frame = capture.read() cv2.imshow('test', frame) k = cv2.waitKey(1) # ord('q'): input q exit if k == 27: # esc br..
Python
2021. 7. 31. 15:57