-
Notifications
You must be signed in to change notification settings - Fork 13
[OpenCV Python]画像の幅、高さ、チャンネル数、depth取得
atinfinity edited this page Jul 27, 2016
·
6 revisions
import cv2
import sys
if __name__ == "__main__":
img = cv2.imread("lena.jpg", cv2.IMREAD_UNCHANGED)
# 画像ファイルの読み込みに失敗したらエラー終了
if img is None:
print("Failed to load image file.")
sys.exit(1)
# カラーとグレースケールで場合分け
if len(img.shape) == 3:
height, width, channels = img.shape[:3]
else:
height, width = img.shape[:2]
channels = 1
# 取得結果(幅,高さ,チャンネル数,depth)を表示
print("width: " + str(width))
print("height: " + str(height))
print("channels: " + str(channels))
print("dtype: " + str(img.dtype))
width: 512
height: 512
channels: 3
dtype: uint8
筆者は以下の環境で動作確認しました.
- OpenCV 3.0.0
- Python 3.4.3 64bit