1 Star 0 Fork 262

舟遥遥/meeting

forked from 黄煜旸/meeting 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test1.py 857 Bytes
一键复制 编辑 原始数据 按行查看 历史
舟遥遥 提交于 2023-04-06 09:06 . wanghui -fifth
from PIL import Image
from PIL import ImageFilter
import numpy as np
import matplotlib.pyplot as plt
im = Image.open('lx.jpg')
print(im.format, im.size, im.mode)#size width, height
im.show()
array = np.asarray(im)
print(array.shape)
#print(array)
box = (10, 10, 250, 250)
region = im.crop(box)
region.show()
size = (128, 128)
resize = im.resize((128, 128))
resize.show()
angle = 45 #逆时针
rotate = im.rotate(angle)
rotate.show()
blur = im.filter(ImageFilter.BLUR)
blur.show()
sharpen = im.filter(ImageFilter.SHARPEN)
sharpen.show()
eem = im.filter(ImageFilter.EDGE_ENHANCE_MORE)
eem.show()
con = im.filter(ImageFilter.CONTOUR)
con.show()
plt.figure()
plt.subplot(2,2,1)
plt.imshow(blur)
plt.subplot(2,2,2)
plt.imshow(sharpen)
plt.subplot(2,2,3)
plt.imshow(eem)
plt.subplot(2,2,4)
plt.imshow(con)
plt.show()
con.save('lx_contour.png')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/whui21003/meeting.git
git@gitee.com:whui21003/meeting.git
whui21003
meeting
meeting
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385