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 - チャンネル数。