반응형
cv2로 이미지 불러오서 shape와 이미지 확인하기¶
In [1]:
import cv2
from matplotlib import pyplot as plt
세로로 긴 이미지 예시¶
In [2]:
# 이미지 불러오기
file_name = "shape1.png"
image = cv2.imread(file_name)
# BGR to RGB
image_temp = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
# 이미지 shape 확인
print("image shape : ", image_temp.shape)
# 이미지 확인하기
plt.imshow(image_temp)
plt.axis('off')
plt.show()
image shape : (231, 57, 3)
가로로 긴 이미지 예시¶
In [3]:
file_name = "shape2.png"
image = cv2.imread(file_name)
# BGR to RGB
image_temp = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
# 이미지 shape 확인
print("image shape : ", image_temp.shape)
# 이미지 확인하기
plt.imshow(image_temp)
plt.axis('off')
plt.show()
image shape : (93, 349, 3)
반응형
'python' 카테고리의 다른 글
파이썬 넘파이 대각행렬(diagonal matrix), 항등행렬(identity matrix). np.diag, np.identity, np.eye (0) | 2023.08.13 |
---|---|
skimage를 활용한 이미지 불러오기 (0) | 2023.08.13 |
파이썬 try except 에러 메세지 확인하는 방법 (0) | 2023.08.13 |
파이썬 이미지 변수를 원격서버에 저장하기 (0) | 2023.08.13 |
넘파이 2차행렬 행렬식(determinant) 연산 (0) | 2023.08.12 |
댓글