国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

Python實(shí)現(xiàn)PS濾鏡中的USM銳化效果

瀏覽:179日期:2022-07-03 10:51:07

本文用 Python 實(shí)現(xiàn) PS 濾鏡中的 USM 銳化效果

import matplotlib.pyplot as pltfrom skimage import iofrom skimage.filters import gaussianfile_name=’D:/Visual Effects/PS Algorithm/4.jpg’;img=io.imread(file_name)img = img * 1.0gauss_out = gaussian(img, sigma=5, multichannel=True)# alpha 0 - 5alpha = 1.5img_out = (img - gauss_out) * alpha + imgimg_out = img_out/255.0# 飽和處理mask_1 = img_out < 0 mask_2 = img_out > 1img_out = img_out * (1-mask_1)img_out = img_out * (1-mask_2) + mask_2plt.figure()plt.imshow(img/255.0)plt.axis(’off’)plt.figure(2)plt.imshow(img_out)plt.axis(’off’)plt.show()

實(shí)現(xiàn)效果:

Python實(shí)現(xiàn)PS濾鏡中的USM銳化效果

以上就是Python實(shí)現(xiàn)PS濾鏡中的USM銳化效果的詳細(xì)內(nèi)容,更多關(guān)于python usm銳化的資料請關(guān)注好吧啦網(wǎng)其它相關(guān)文章!

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 房山区| 达拉特旗| 古田县| 巴中市| 平安县| 庆元县| 玉林市| 章丘市| 夏津县| 札达县| 化州市| 耿马| 大埔区| 洛阳市| 景洪市| 玛沁县| 沐川县| 自贡市| 中江县| 鹤岗市| 临澧县| 丰城市| 大埔县| 山阳县| 仁化县| 开化县| 石楼县| 布拖县| 呼图壁县| 昌乐县| 博兴县| 东港市| 濮阳市| 嵊州市| 洛宁县| 鹿泉市| 昌平区| 巴南区| 南昌市| 古浪县| 永丰县|