Tags
- 모션제어
- odyssey x86J4105
- 태양광 휴대폰케이스
- 아두이노
- 태양전지
- Motion Estimation
- 오디세이 x86
- PCB Artwork
- RQ-TITAN
- motion recognition
- 태양광 충전 휴대폰케이스
- artwork
- Video
- Canny
- opencv-python
- 윈도우10
- Arduino
- 태양 충전 케이스
- pcb 설계
- Python
- Imitating Arm
- pcb
- 체험지수
- JLCPCB
- 태양광
- 태양광 충전케이스
- EasyEDA
- SIOR-TITAN
- UART
- opencv
Archives
- Today
- Total
목록엽서만들기 (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