Tags
- pcb 설계
- 태양 충전 케이스
- Canny
- opencv
- motion recognition
- 태양광 휴대폰케이스
- UART
- Arduino
- opencv-python
- 태양광 충전케이스
- pcb
- 체험지수
- JLCPCB
- artwork
- PCB Artwork
- 모션제어
- 태양광 충전 휴대폰케이스
- Imitating Arm
- 오디세이 x86
- SIOR-TITAN
- EasyEDA
- 태양전지
- odyssey x86J4105
- Motion Estimation
- Python
- 태양광
- 아두이노
- Video
- RQ-TITAN
- 윈도우10
Archives
- Today
- Total
목록Canny edge (1)
제너럴공국
OpenCV-python 응용 <1. 추억 엽서 만들기 프로젝트>
#사용 버전 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