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 """

浙公网安备 33010602011771号