Tags
- EasyEDA
- 태양전지
- opencv-python
- Python
- 태양광
- pcb 설계
- opencv
- Canny
- motion recognition
- Imitating Arm
- Video
- 태양광 충전케이스
- pcb
- 오디세이 x86
- odyssey x86J4105
- 모션제어
- artwork
- 체험지수
- Arduino
- Motion Estimation
- 태양광 휴대폰케이스
- 태양 충전 케이스
- UART
- RQ-TITAN
- SIOR-TITAN
- 아두이노
- PCB Artwork
- 윈도우10
- JLCPCB
- 태양광 충전 휴대폰케이스
Archives
- Today
- Total
목록엽서DIY (1)
제너럴공국
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/c6PHaP/btqEeqGHGXu/i2g1lUiI8jtCJkKk7IFbA0/img.jpg)
#사용 버전 cv2 3.4.2 numpy 1.18.1 파이썬 3.5.6 import cv2 import numpy as np #image 지정 filename = "hy" #image 읽기 + 비율 유지하며 resize img = cv2.imread("img/"+filename+".jpg") ratio = 700.0 / img.shape[1] dim = (700, int(img.shape[0] * ratio)) img = cv2.resize(img, dim, interpolation=cv2.INTER_AREA) #가우스 필터 +Canny edge, 사진별 threshold 지정 필요 img = cv2.GaussianBlur(img, (5, 5), 0) #edge = cv2.Canny(img, 50, 70..
컴퓨터공학/opencv-python
2020. 5. 18. 14:56