1

我想为我的 python 脚本提供一个输入图像,并找出输入图像的每个维度中的元素数量。python中是否有任何函数可以给出每个维度中元素的数量。

4

1 回答 1

0

使用 scipy:

>>> from scipy.misc import imread
>>> img = imread("test.jpg")
>>> img.shape
0: (963, 712, 3)

其中 963 - 宽度,712 - 高度,3 - 通道数。

于 2013-03-26T06:10:10.537 回答