Tags
- UART
- Video
- 태양 충전 케이스
- 오디세이 x86
- 태양전지
- SIOR-TITAN
- Canny
- opencv-python
- JLCPCB
- 태양광 충전 휴대폰케이스
- Imitating Arm
- 모션제어
- Python
- artwork
- PCB Artwork
- opencv
- Arduino
- 체험지수
- motion recognition
- 태양광 휴대폰케이스
- pcb
- 아두이노
- odyssey x86J4105
- 태양광
- 윈도우10
- Motion Estimation
- pcb 설계
- 태양광 충전케이스
- RQ-TITAN
- EasyEDA
Archives
- Today
- Total
목록전체 글 (49)
제너럴공국

사용버전 cv2 3.4.2 numpy 1.18.1 파이썬 3.5.6 import cv2 import numpy as np #image 읽기 img = cv2.imread("img/helmet3.jpg") img = cv2.resize(img, dsize=(720, 480), interpolation=cv2.INTER_AREA) #라플라시안 에지따기 edge = cv2.Laplacian(img, -1) #이미지 병합하기 merge = np.hstack((img, edge)) #이미지 보여주기 cv2.imshow('Laplacian_image', merge) #이미지 창 닫기 cv2.waitKey(0) cv2.destroyAllWindows()
컴퓨터공학/opencv-python
2020. 2. 19. 10:55