标签: python numpy reshape vision
我试图重塑图像阵列 原始图像形状为(224,224,3)
trainImages = np.array([i[0] for i in train_datas]).reshape(-1, IMG_SIZE, IMG_SIZE,3)
ValueError:无法将大小为502562816的数组重塑为形状 (224,224,3)
当我想要获得(224,224,3)时应该如何重塑