Python numpy维度增减、通道叠加

本文将分别介绍基于numpy的数组的维度增减方法
增加维度: expand_dims(),np.newaxis
减少维度: 0替换通道,squeeze()
矩阵叠加: np.stack()


一、增加维度

expand_dims

示例:

import numpy as np
a = np.zeros((32,32))
print(a.shape)
a1 = np.expand_dims(a,0)
print(a1.shape)
(32,32) (1,32,32)

None(np.newaxis)

示例:

import numpy as np
a = np.zeros((32,32))
print(a.shape)
a1 = a[None,:,:]
print(a1.shape)
(32,32) (1,32,32)

二、删除通道

squeeze()

示例:

import numpy as np
a = np.zeros((1,32,32))
print(a.shape)
a1 = a.squeeze()
print(a1.shape)
(1,32,32) (32,32)

0减去对应维度

示例:

import numpy as np
a = np.zeros((3,32,32))
print(a.shape)
a1 = a[0,:,:]
print(a1.shape)
(3,32,32) (32,32)

三、np.stack()

示例:
使用np.stack会自动对原始数组增加一个维度比如(32,32)会被转换为(1,32,32),并有三个(1,32,32)叠加成(3,32,32)所以在确定axis时,axis = 0

import numpy as np
a = np.zeros((32,32))
print(a.shape)
a1 = np.stack([a,a,a],axis = 0)
print(a1.shape)
(3,32,32) (32,32)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值