Tags
- 태양광 충전케이스
- EasyEDA
- SIOR-TITAN
- 태양전지
- 오디세이 x86
- odyssey x86J4105
- pcb 설계
- 태양광 휴대폰케이스
- Python
- 태양광
- JLCPCB
- RQ-TITAN
- motion recognition
- 태양 충전 케이스
- Video
- 아두이노
- opencv
- Motion Estimation
- Imitating Arm
- pcb
- UART
- 모션제어
- Arduino
- PCB Artwork
- 체험지수
- artwork
- Canny
- 윈도우10
- 태양광 충전 휴대폰케이스
- opencv-python
Archives
- Today
- Total
목록그리기 (1)
제너럴공국
OpenCV-python 기초 <5. 직선, 다각형 그리기, 글자 쓰기>
#사용 버전 cv2 3.4.2 numpy 1.18.1 파이썬 3.5.6 #직선 그리기 import cv2 #다각형을 그리려면 numpy 필요 import numpy as np img = cv2.imread('img/helmet3.jpg') img = cv2.resize(img, dsize=(640, 480), interpolation=cv2.INTER_AREA) img_gray = cv2.imread('img/hetmet3.jpg', cv2.IMREAD_GRAYSCALE) img_gray = cv2.resize(img, dsize=(320, 240), interpolation=cv2.INTER_AREA) #글자 작성 cv2.putText(img, "VISION PRACTICE", (320, 240), c..
컴퓨터공학/opencv-python
2020. 2. 19. 14:21