您好,登錄后才能下訂單哦!
padding操作是給圖像外圍加像素點(diǎn)。
為了實(shí)際說明操作過程,這里我們使用一張實(shí)際的圖片來做一下處理。
這張圖片是大小是(256,256),使用pad來給它加上一個(gè)黑色的邊框。具體代碼如下:
import torch.nn,functional as F import torch from PIL import Image im=Image.open("heibai.jpg",'r') X=torch.Tensor(np.asarray(im)) print("shape:",X.shape) dim=(10,10,10,10) X=F.pad(X,dim,"constant",value=0) padX=X.data.numpy() padim=Image.fromarray(padX) padim=padim.convert("RGB")#這里必須轉(zhuǎn)為RGB不然會(huì) padim.save("padded.jpg","jpeg") padim.show() print("shape:",padX.shape)
輸出:
shape: torch.Size([256, 256]) shape: (276, 276)
可以看出給原圖四個(gè)方向給加上10維度的0,維度變?yōu)?56+10+10得到的圖像如下:
我們?cè)谂e幾個(gè)簡(jiǎn)單例子:
x=np.asarray([[[1,2],[1,2]]]) X=torch.Tensor(x) print(X.shape) pad_dims = ( 2, 2, 2, 2, 1, 1, ) X=F.pad(X,pad_dims,"constant") print(X.shape) print(X)
輸出:
torch.Size([1, 2, 2]) torch.Size([3, 6, 6]) tensor([[[ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.]], [[ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 1., 2., 0., 0.], [ 0., 0., 1., 2., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.]], [[ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.]]])
可以知若pid_sim為(2,2,2,2,1,1)則原維度變化是2+2+2=6,1+1+1=3.也就是第一個(gè)(2,2) pad的是最后一個(gè)維度,第二個(gè)(2,2)pad是倒數(shù)第二個(gè)維度,第三個(gè)(1,1)pad是第一個(gè)維度。
再舉一個(gè)四維度的,但是只pad三個(gè)維度:
x=np.asarray([[[[1,2],[1,2]]]]) X=torch.Tensor(x)#(1,2,2) print(X.shape) pad_dims = ( 2, 2, 2, 2, 1, 1, ) X=F.pad(X,pad_dims,"constant")#(1,1,12,12) print(X.shape) print(X)
輸出:
torch.Size([1, 1, 2, 2]) torch.Size([1, 3, 6, 6]) tensor([[[[ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.]], [[ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 1., 2., 0., 0.], [ 0., 0., 1., 2., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.]], [[ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.]]]])
再舉一個(gè)四維度的,pad四個(gè)維度:
x=np.asarray([[[[1,2],[1,2]]]]) X=torch.Tensor(x)#(1,2,2) print(X.shape) pad_dims = ( 2, 2, 2, 2, 1, 1, 2, 2 ) X=F.pad(X,pad_dims,"constant")#(1,1,12,12) print(X.shape) print(X)
輸出:
torch.Size([1, 1, 2, 2]) torch.Size([5, 3, 6, 6]) tensor([[[[ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.]], [[ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.]], [[ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.], [ 0., 0., 0., 0., 0., 0.]]], .........太多了
以上這篇pytorch 中pad函數(shù)toch.nn.functional.pad()的用法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。