如何重塑图像输入12通道输入,到3通道输入图像?从256, 256, 12
到3通道输入xxx,xxx,3
。我试过了
tf.keras.layers.Reshape((1024,1024,3), input_shape=(256,256,12))
但它不起作用。还有别的方法吗?
应该是512, 512, 3
,即tf.keras.layers.Reshape((512, 512, 3), input_shape=(256, 256, 12))
。
256*256*12 = 786432
1024*1024*3 = 3145728
,因此Reshape
不能工作。
256*256*12 = 512*512*3