标签: python arrays image numpy reshape
我有一个numpy数组,图像,形状(100,),其中包含形状图像(72,72):
images.shape # returns (100,) images[0].shape # returns (72, 72) images[42].shape # returns (72, 72)
我想将我的数组重塑为shape =(100,72,72)的数组,以便数组存储图像"堆叠"。我该怎么做?