이번에는 이미지의 채널을 변환하고 분리하고 병합하는 것이다.
import cv2 as cv
from google.colab.patches import cv2_imshow
img_path = '/content/drive/My Drive/다핏문제/907/lena.jpg'
* 채널 변환
# OpenCV의 삼원색 기본 순서는 BGR이다.
img_bgr = cv.imread(img_path,1)
img_rgb = cv.cvtColor(img_rgb, cv.COLOR_BGR2RGB)
cv2_imshow(img_bgr)
cv2_imshow(img_rgb)
* 채널 분리 및 병합
b,g,r = cv.split(img_bgr)
img_rbg = cv.merge((r,b,g))
cv2_imshow(img_rbg)
'DAFIT > 907 - OpenCV 다루기 첫걸음' 카테고리의 다른 글
<DAFIT> 07 OpenCV 다루기 첫걸음 - 06 영상 크기 조절 (0) | 2019.11.26 |
---|---|
<DAFIT> 07 OpenCV 다루기 첫걸음 - 05 영상 뒤집기 (0) | 2019.11.26 |
<DAFIT> 07 OpenCV 다루기 첫걸음 - 04 영상 회전 (0) | 2019.11.26 |
<DAFIT> 07 OpenCV 다루기 첫걸음 - 03 영상 이동 (0) | 2019.11.26 |
<DAFIT> 07 OpenCV 다루기 첫걸음 - 01 영상 읽기, 출력, 저장 (0) | 2019.11.26 |