标签:size and rgba numpy 维度 数据 div code style
要将一个二维的数据扩展为三维:
1 print("扩展之前:", img_Y_blur.shape)
2 img_Y_blur = np.expand_dims(img_Y_blur, 2)
3 print("扩展之后:", img_Y_blur.shape)
运行结果:
扩展之前: (368, 496)
扩展之后: (368, 496, 1)
三位的numpy数据,要将某一位复制更多数量
1 print("复制之前:", img_Y_blur.shape)
2 img_Y_blur = np.repeat(img_Y_blur, 3, 2)
3 print("复制之后:", img_Y_blur.shape)
运行结果:
1 复制之前: (368, 496, 1)
2 复制之后: (368, 496, 3)
标签:size and rgba numpy 维度 数据 div code style
原文地址:https://www.cnblogs.com/haifwu/p/14819987.html