Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为我的 python 脚本提供一个输入图像,并找出输入图像的每个维度中的元素数量。python中是否有任何函数可以给出每个维度中元素的数量。
使用 scipy:
>>> from scipy.misc import imread >>> img = imread("test.jpg") >>> img.shape 0: (963, 712, 3)
其中 963 - 宽度,712 - 高度,3 - 通道数。