图像每个维度中的元素数量

时间:2013-03-26 05:57:02

标签: python image dimensions

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

1 个答案:

答案 0 :(得分:0)

scipy:

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

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