In [1]:
from Custom.mediahelper import show_image_with_pil # 개발자 정의 모듈
In [2]:
import cv2
img = cv2.imread('../Media/images/img.png')
#img = cv2.imread('img.png', cv2.IMREAD_GRAYSCALE) # 이미지를 흑백으로 읽음
dst = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) # 불러온 이미지를 흑백으로 변경
cv2.imshow('img', img)
cv2.imshow('dst', dst)
cv2.waitKey(0)
cv2.destroyAllWindows()
show_image_with_pil(img, 'img')
show_image_with_pil(dst, 'dst')
'img'
'dst'
'Python > OpenCV' 카테고리의 다른 글
12. 이미지 변형(원근) (0) | 2024.11.18 |
---|---|
11. 이미지 변형(흐림) (0) | 2024.11.18 |
09. 이미지 회전 (0) | 2024.11.18 |
08. 이미지 대칭 (0) | 2024.11.18 |
07. 이미지 자르기 (0) | 2024.11.18 |