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 |
Tags
- NumPy
- 백준
- 알고리즘 스터디
- queue
- 노마드코딩
- javascript
- MySQL
- type hint
- 선그래프
- 알고리즘스터디
- 자료구조
- pandas
- 데이터시각화
- Join
- 파이썬
- programmers
- 코딩테스트
- Selenium
- Matplotlib
- Stack
- 알고리즘
- 정보처리기사 c언어
- python
- dataframe
- 프로그래머스
- String Method
- 가상환경
- Algorithm
- aws jupyter notebook
- openCV
Archives
- Today
- Total
목록트랙바 (1)
조금씩 꾸준히 완성을 향해
[OpenCV/Python] 이벤트 처리 (키보드, 마우스, 트랙바)
# 키보드 이벤트 처리 ▶ 키보드 방향키를 누르면 움직이는 도형의 방향 변경 import numpy as np import cv2 # 클래스 정의 class move_circle: def __init__(self, width, height, x, y, R): self.width = width self.height = height self.x = x self.y = y self.R = R self.left, self.right, self.down, self.up = 2, 0, 1, 3 self.direction = self.down self.key = 0 def key_input(self): key = cv2.waitKeyEx(1000) if key == 0x1B: return 0 elif key == 0..
Python/OpenCV
2022. 11. 13. 12:19