import cv2
import numpy as np
img = cv2.imread('data/images/gaussian-noise.png',1)
result = cv2.bilateralFilter(img, 15, 80, 80)
# 이미지 확인
combined =np.hstack([img,result])
cv2.imshow("combine",combined)
cv2.waitKey()
cv2.destroyAllWindows()
OpenCV GaussianBlur (0) | 2021.04.19 |
---|---|
OpenCV sobel (0) | 2021.04.19 |
OpenCV Thresholding (0) | 2021.04.15 |
OpenCV 컴퓨터 연결된 카메라 영상 출력 (0) | 2021.04.15 |
OnpenCV 영상 실행 코드 (0) | 2021.04.15 |