91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python實現PS濾鏡碎片特效功能示例

發布時間:2020-08-21 10:03:43 來源:腳本之家 閱讀:208 作者:Matrix_11 欄目:開發技術

本文實例講述了Python實現PS濾鏡碎片特效功能。分享給大家供大家參考,具體如下:

這里用 Python 實現 PS 濾鏡中的碎片特效,這個特效簡單來說就是將圖像在 上,下,左,右 四個方向做平移,然后將四個方向的平移的圖像疊加起來做平均。具體的效果圖與說明可參考附錄說明

from skimage import img_as_float
import matplotlib.pyplot as plt
from skimage import io
file_name='D:/Visual Effects/PS Algorithm/4.jpg';
img=io.imread(file_name)
img = img_as_float(img)
img_1 = img.copy()
img_2 = img.copy()
img_3 = img.copy()
img_4 = img.copy()
img_out = img.copy()
Offset = 7
row, col, channel = img.shape
img_1[:, 0 : col-1-Offset, :] = img[:, Offset:col-1, :]
img_2[:, Offset:col-1, :] = img[:, 0 : col-1-Offset, :] 
img_3[0:row-1-Offset, :, :] = img[Offset:row-1, :, :]
img_4[Offset:row-1, :, :] = img[0:row-1-Offset, :, :]
img_out = (img_1 + img_2 + img_3 + img_4) / 4.0
plt.figure(1)
plt.imshow(img)
plt.axis('off');
plt.figure(2)
plt.imshow(img_out)
plt.axis('off');

附:PS 濾鏡算法原理——碎片效果

%%% Fragment
%%% 對原圖做四個方向的平移,然后對平移的結果取平均
%%% 碎片效果
clc;
clear all;
Image=imread('4.jpg');
Image=double(Image)/255;
[row,col,k]=size(Image);
Image1=Image;
Image2=Image;
Image3=Image;
Image4=Image;
Offset=5;
%%% 左移
Image1(:,1:col-Offset,:)=Image(:,1+Offset:col,:);
%%% 右移
Image2(:,1+Offset:col,:)=Image(:,1:col-Offset,:);
%%%% 上移
Image3(1+Offset:row,:,:)=Image(1:row-Offset,:,:);
%%% 下移
Image4(1:row-Offset,:,:)=Image(1+Offset:row,:,:);
Image=(Image1+Image2+Image3+Image4)/4;
figure, imshow(Image);

原圖:

Python實現PS濾鏡碎片特效功能示例

效果圖:

Python實現PS濾鏡碎片特效功能示例

更多關于Python相關內容感興趣的讀者可查看本站專題:《Python圖片操作技巧總結》、《Python數據結構與算法教程》、《Python Socket編程技巧總結》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》、《Python入門與進階經典教程》及《Python文件與目錄操作技巧匯總》

希望本文所述對大家Python程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌兰县| 卢龙县| 井研县| 颍上县| 黄浦区| 宜阳县| 宁阳县| 松桃| 峨边| 平果县| 临江市| 花莲县| 伊川县| 邯郸县| 无为县| 米脂县| 宜昌市| 伽师县| 葫芦岛市| 临夏市| 大化| 涞源县| 龙游县| 邵东县| 凤山县| 瓮安县| 阜新| 武安市| 吉木萨尔县| 双牌县| 洛川县| 永和县| 延寿县| 青浦区| 岫岩| 万山特区| 桑植县| 九台市| 都江堰市| 余干县| 岚皋县|