Python OpenCV에서 이미지 크기 (width, height) 가져오기OpenCV/OpenCV 강좌2021. 11. 14. 21:09
Table of Contents
반응형
Python OpenCV에서 이미지 크기(width, height)를 가져오는 방법입니다.
2021. 11. 14
컬러 이미지의 경우에는 shape 함수를 통해 height, width, channels를 얻을 수 있습니다.
import numpy as np import cv2 img = cv2.imread('apple.png', cv2.IMREAD_COLOR) print('img.shape ', img.shape) h, w, c = img.shape print('height ', h) print('width ', w) print('channel ', c) |
img.shape (618, 641, 3) height 618 width 641 channel 3 |
흑백 이미지의 경우에는 shape 함수를 통해 height, width를 얻을 수 있습니다.
import numpy as np import cv2 img = cv2.imread('apple.png', cv2.IMREAD_GRAYSCALE) print('img.shape ', img.shape) h, w = img.shape print('height ', h) print('width ', w) |
img.shape (618, 641) height 618 width 641 |
참고
https://stackoverflow.com/questions/19098104/python-opencv2-cv2-wrapper-to-get-image-size
반응형
'OpenCV > OpenCV 강좌' 카테고리의 다른 글
OpenCV Python - 이미지를 정사각형이 되도록 패딩(padding)하는 예제 (0) | 2022.05.28 |
---|---|
OpenCV Python - Image Center Crop 예제 (0) | 2022.03.06 |
OpenCV - MSER과 IOU를 사용하여 사각형 검출 (0) | 2021.10.04 |
해리스 코너를 사용한 이미지 매칭(Image feature matching with Harris Corner Detection) (8) | 2021.08.01 |
OpenPose를 사용하여 손가락 인식하는 OpenCV 예제 (0) | 2021.02.02 |