Python numpy 单通道转三通道理解

image = np.expand_dims(a, axis=2)
image = np.concatenate((image, image, image), axis=-1)

任务一:单通道图像转三通道理解/任务二:按axis=0或axis=1或axis=2(轴)堆叠(stack)

你可能感兴趣的:(Python,Numpy,python)