码迷,mamicode.com
首页 > 编程语言 > 详细

python numpy扩展维度以及复制

时间:2021-06-02 13:39:07      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:size   and   rgba   numpy   维度   数据   div   code   style   

1. 扩展维度

要将一个二维的数据扩展为三维:

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)

2. 复制

三位的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)

 

python numpy扩展维度以及复制

标签:size   and   rgba   numpy   维度   数据   div   code   style   

原文地址:https://www.cnblogs.com/haifwu/p/14819987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!