opencv_python 이미지 불러오기, 저장
2019. 12. 31. 21:42
Programing/opencv
opencv_python 이미지 불러오기
# -*- coding: utf-8 -*-
import cv2
img_file ="../pic/lena.jpg" #이미지 경로설정
img = cv2.imread(img_file) #이미지를 읽어 변수로 할당
if img is not None:
cv2.imshow('IMG',img) #이미지 화면에 표시
cv2.waitKey() #키입력까지 대기
cv2.destroyAllWindows() #창닫기
else:
print("Don't found image file")
img_file ="이미지 경로, 읽기모드"
* 읽기모드를 쓰지 않으면 RGB모드로 읽어온다.
opencv_python 이미지 저장, 그레이 모드로 읽기
# -*- coding: utf-8 -*-
import cv2
img_file = "../pic/lena.jpg" #이미지 경로설정
save_img = "../pic/lena_gray.jpg" # 저장할 경로설정
img = cv2.imread(img_file, cv2.IMREAD_GRAYSCALE) #이미지를 그레이모드로 읽어 변수로 할당
if img is not None:
cv2.imshow('IMG',img) #이미지 화면에 표시
cv2.imwrite(save_img,img) #이미지 저장
cv2.waitKey() #키입력까지 대기
cv2.destroyAllWindows() #창닫기
else:
print("Don't found image file")
'Programing > opencv' 카테고리의 다른 글
opencv 차량번호 인식 기초설치 (0) | 2020.04.01 |
---|---|
opencv_python 차번호판 숫자 인식 (0) | 2020.01.01 |
opencv_python 카메라 프레임 읽어오기, 캡처 저장하기 (0) | 2019.12.31 |