import imageio image = imageio.imread('image.png') M, N, C = image.shape image = image.reshape((N, M, C)) # new shape here, I inverted M and ...
確定! 回上一頁