Tags
- 아두이노
- RQ-TITAN
- Imitating Arm
- artwork
- PCB Artwork
- EasyEDA
- Canny
- motion recognition
- 윈도우10
- pcb 설계
- 모션제어
- SIOR-TITAN
- opencv
- 태양광
- UART
- Arduino
- 태양광 충전 휴대폰케이스
- 체험지수
- 태양광 충전케이스
- odyssey x86J4105
- opencv-python
- 태양 충전 케이스
- Video
- 오디세이 x86
- 태양광 휴대폰케이스
- Python
- JLCPCB
- 태양전지
- Motion Estimation
- pcb
Archives
- Today
- Total
목록SOBEL (1)
제너럴공국
OpenCV-python 기초 <3. 이미지에 여러가지 필터 적용하기>
#사용 버전 cv2 3.4.2 numpy 1.18.1 파이썬 3.5.6 가우시안 블러, 소벨 필터, 라플라시안 필터, 캐니 엣지를 이용합니다. import cv2 import numpy as np #이미지 읽어오기 img = cv2.imread("img/helmet3.jpg", cv2.INTER_AREA) img = cv2.resize(img, dsize=(640, 480), interpolation=cv2.INTER_AREA) #아래 코드 한 줄을 통해 가우시안 블러를 미리 넣어줄 수 있습니다. #img = cv2.GaussianBlur(img, (11, 11), 0) #소벨, 라플라스, 캐니 필터를 적용시킵니다. sobelx = cv2.Sobel(img, cv2.CV_64F, 1, 0) sobely ..
컴퓨터공학/opencv-python
2020. 2. 19. 11:31