Python shape+size详解


import cv2
from PIL import Image
# pic.JPG 图片的路径
img = cv2.imread("pic.JPG",-1)
print("图像形状:",img.shape)
print("图像高度:",img.shape[0])
print("图像宽度:",img.shape[1])
print("图像的通道数:",img.shape[2])
# pic.JPG 图片的路径
img = Image.open('pic.JPG')
print('图像尺寸:',img.size)
print('图像长度:',img.size[0])
print('图像高度:',img.size[1])
"""
图像形状: (561, 991, 3)
图像高度: 561
图像宽度: 991
图像的通道数: 3
图像尺寸: (991, 561)
图像长度: 991
图像高度: 561 """
posted @ 2021-11-28 21:25  我太想努力了  阅读(389)  评论(0)    收藏  举报