Tags
- 태양광 충전 휴대폰케이스
- 태양 충전 케이스
- RQ-TITAN
- 오디세이 x86
- 태양전지
- motion recognition
- 태양광
- Python
- Video
- EasyEDA
- 태양광 충전케이스
- opencv-python
- 태양광 휴대폰케이스
- JLCPCB
- 아두이노
- 윈도우10
- 체험지수
- pcb 설계
- Imitating Arm
- opencv
- SIOR-TITAN
- odyssey x86J4105
- pcb
- artwork
- 모션제어
- Arduino
- Canny
- UART
- Motion Estimation
- PCB Artwork
Archives
- Today
- Total
제너럴공국
OpenCV-python 기초 <4. 비디오 필터 적용하기> 본문
반응형
cv2 3.4.2
numpy 1.18.1
파이썬 3.5.6
가우시안 블러 + 라플라시안 + 캐니 처리하기
import cv2
import numpy as np
#카메라 작동하기
cap = cv2.VideoCapture(0)
#카메라 작동시키기
while True:
_, frame = cap.read()
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
#가우시안 블러 + 라플라시안 + 캐니 처리하기
blurred_frame = cv2.GaussianBlur(frame, (5, 5), 0)
laplacian = cv2.Laplacian(blurred_frame, cv2.CV_64F)
canny = cv2.Canny(blurred_frame, 100, 150)
#사진 띄우기
cv2.imshow("Frame", frame)
cv2.imshow("Laplacian", laplacian)
cv2.imshow("Canny", canny)
key = cv2.waitKey(1)
if key == 27: #27번 key는 esc
break
cap.release()
cv2.destroyAllWindows()
반응형
'컴퓨터공학 > opencv-python' 카테고리의 다른 글
OpenCV-python 응용 <1. 추억 엽서 만들기 프로젝트> (1) | 2020.05.18 |
---|---|
OpenCV-python 기초 <5. 직선, 다각형 그리기, 글자 쓰기> (1) | 2020.02.19 |
OpenCV-python 기초 <3. 이미지에 여러가지 필터 적용하기> (1) | 2020.02.19 |
OpenCV-python 기초 <2. 비디오 띄우기> (1) | 2020.02.19 |
OpenCV-python 기초 <1. 이미지 띄우기 + 라플라시안 Edge> (2) | 2020.02.19 |
Comments