python 实现图片特效处理


Posted in Python onApril 03, 2022

前言:

对于 ​图片处理​,在日常生活中我们常常能够看到。

比如发个朋友圈之前,我们需要给自己的​照片加个滤镜​;在上传头像时候,需要​对照片进行裁剪​,这些都是图片的处理。

待处理的原图:

python 实现图片特效处理

一、黑白特效

  • 将图片处理后,变为黑白颜色
  • 把像素的R,G,B三个通道数值都置为:​​r*0.299+g*0.587+b*0.114​
  • 效果

黑白特效:

python 实现图片特效处理

代码:

 #!/usr/bin/env python
# encoding: utf-8

import numpy as np
from PIL import Image

class picture:
'''
This is a main Class, the file contains all documents.
One document contains paragraphs that have several sentences
It loads the original file and converts the original file to new content
Then the new content will be saved by this class
'''
def __init__(self):
self.path = 'assets/picture.jpeg'

def hello(self):
'''
This is a welcome speech
:return: self
'''
print('*' * 50)
print(' ' * 20 + '图片转换特效之黑白')
print(' ' * 5 + '作者: autofelix Date: 2022-01-17 13:14')
print('*' * 50)
return self

def run(self):
'''
The program entry
'''
im = self.to_black_white()
im.show()
im.save('assets/black_white.jpeg')

def to_black_white(self):
'''
Picture to black white
'''
im = np.asarray(Image.open(self.path).convert('RGB'))
trans = np.array([[0.299, 0.587, 0.114], [0.299, 0.587, 0.114], [0.299, 0.587, 0.114]]).transpose()
im = np.dot(im, trans)
return Image.fromarray(np.array(im).astype('uint8'))

if __name__ == '__main__':
picture().hello().run()

二、流年特效

  • 将图片处理后,变为流年特效
  • 把R通道的数值开平方,然后乘以一个参数
  • 效果

流年特效:

python 实现图片特效处理

代码:

#!/usr/bin/env python
# encoding: utf-8

import numpy as np
from PIL import Image

class picture:
'''
This is a main Class, the file contains all documents.
One document contains paragraphs that have several sentences
It loads the original file and converts the original file to new content
Then the new content will be saved by this class
'''
def __init__(self):
self.path = 'assets/picture.jpeg'

def hello(self):
'''
This is a welcome speech
:return: self
'''
print('*' * 50)
print(' ' * 20 + '图片转换特效之流年')
print(' ' * 5 + '作者: autofelix Date: 2022-01-17 13:14')
print('*' * 50)
return self

def run(self):
'''
The program entry
'''
im = self.fleeting()
im.show()
im.save('assets/fleeting.jpeg')

def fleeting(self, params=12):
'''
Picture to fleeting
'''
im = np.asarray(Image.open(self.path).convert('RGB'))
im1 = np.sqrt(im * [1.0, 0.0, 0.0]) * params
im2 = im * [0.0, 1.0, 1.0]
im = im1 + im2
return Image.fromarray(np.array(im).astype('uint8'))

if __name__ == '__main__':
picture().hello().run()

三、旧电影特效

  • 将图片处理后,变为旧电影特效
  • 把像素的R,G,B三个通道数值,3个通道的分别乘以3个参数后求和,最后把超过255的值置为255
  • 效果

旧电影特效:

python 实现图片特效处理

代码:

#!/usr/bin/env python
# encoding: utf-8

import numpy as np
from PIL import Image

class picture:
'''
This is a main Class, the file contains all documents.
One document contains paragraphs that have several sentences
It loads the original file and converts the original file to new content
Then the new content will be saved by this class
'''
def __init__(self):
self.path = 'assets/picture.jpeg'

def hello(self):
'''
This is a welcome speech
:return: self
'''
print('*' * 50)
print(' ' * 20 + '图片转换特效之旧电影')
print(' ' * 5 + '作者: autofelix Date: 2022-01-17 13:14')
print('*' * 50)
return self

def run(self):
'''
The program entry
'''
im = self.old_film()
im.show()
im.save('assets/old_film.jpeg')

def old_film(self):
'''
Picture to old film
'''
im = np.asarray(Image.open(self.path).convert('RGB'))
trans = np.array([[0.393, 0.769, 0.189], [0.349, 0.686, 0.168], [0.272, 0.534, 0.131]]).transpose()
im = np.dot(im, trans).clip(max=255)
return Image.fromarray(np.array(im).astype('uint8'))

if __name__ == '__main__':
picture().hello().run()

四、反色特效

  • 将图片处理后,变为反色特效
  • 这个最简单了,用255减去每个通道的原来的数值
  • 效果

反色特效:

python 实现图片特效处理

代码:

#!/usr/bin/env python
# encoding: utf-8

import numpy as np
from PIL import Image

class picture:
'''
This is a main Class, the file contains all documents.
One document contains paragraphs that have several sentences
It loads the original file and converts the original file to new content
Then the new content will be saved by this class
'''
def __init__(self):
self.path = 'assets/picture.jpeg'

def hello(self):
'''
This is a welcome speech
:return: self
'''
print('*' * 50)
print(' ' * 20 + '图片转换特效之反色')
print(' ' * 5 + '作者: autofelix Date: 2022-01-17 13:14')
print('*' * 50)
return self

def run(self):
'''
The program entry
'''
im = self.reverse()
im.show()
im.save('assets/reverse.jpeg')

def reverse(self):
'''
Picture to reverse
'''
im = 255 - np.asarray(Image.open(self.path).convert('RGB'))
return Image.fromarray(np.array(im).astype('uint8'))

if __name__ == '__main__':
picture().hello().run()

到此这篇关于python 实现图片特效处理的文章就介绍到这了,更多相关python 图片特效内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
Python程序设计入门(4)模块和包
Jun 16 Python
Python函数嵌套实例
Sep 23 Python
简单谈谈Python中的闭包
Nov 30 Python
Python输出由1,2,3,4组成的互不相同且无重复的三位数
Feb 01 Python
Django forms表单 select下拉框的传值实例
Jul 19 Python
Python Django 添加首页尾页上一页下一页代码实例
Aug 21 Python
python requests.get带header
May 05 Python
Python 列表中的修改、添加和删除元素的实现
Jun 11 Python
opencv 图像滤波(均值,方框,高斯,中值)
Jul 08 Python
Python使用xlrd实现读取合并单元格
Jul 09 Python
Python实现快速大文件比较代码解析
Sep 04 Python
详解用Python把PDF转为Word方法总结
Apr 27 Python
教你使用Python获取QQ音乐某个歌手的歌单
Python os和os.path模块详情
如何通过一篇文章了解Python中的生成器
Python pyecharts绘制条形图详解
Python OpenCV超详细讲解读取图像视频和网络摄像头
基于Python实现股票收益率分析
python实现对doc、txt、xls等文档的读写操作
Apr 02 #Python
You might like
使用array_map简单搞定PHP删除文件、删除目录
2014/10/29 PHP
thinkphp模板用法和内容输出实例
2014/11/28 PHP
php遍历树的常用方法汇总
2015/06/18 PHP
PHPCMS忘记后台密码的解决办法
2016/10/30 PHP
tp5框架使用composer实现日志记录功能示例
2019/01/10 PHP
PHP7中I/O模型内核剖析详解
2019/04/14 PHP
php异常处理捕获错误整理
2019/09/23 PHP
JQuery插件Style定制化方法的分析与比较
2012/05/03 Javascript
鼠标经过tr时,改变tr当前背景颜色
2014/01/13 Javascript
JS创建自定义表格具体实现
2014/02/11 Javascript
Javascript加载速度慢的解决方案
2014/03/11 Javascript
浅谈jQuery.easyui的datebox格式化时间
2015/06/25 Javascript
angularjs 表单密码验证自定义指令实现代码
2016/10/27 Javascript
js实现无缝滚动图(可控制当前滚动的方向)
2017/02/22 Javascript
微信小程序中顶部导航栏的实现代码
2017/03/30 Javascript
jQuery实现可拖动进度条实例代码
2017/06/21 jQuery
jQuery实现锚点向下平滑滚动特效示例
2017/08/29 jQuery
for循环 + setTimeout 结合一些示例(前端面试题)
2017/08/30 Javascript
使用Python编写一个简单的tic-tac-toe游戏的教程
2015/04/16 Python
从Python程序中访问Java类的简单示例
2015/04/20 Python
深入理解Python中变量赋值的问题
2017/01/12 Python
Python Flask框架模板操作实例分析
2019/05/03 Python
python 中pyqt5 树节点点击实现多窗口切换问题
2019/07/04 Python
python groupby 函数 as_index详解
2019/12/16 Python
pytorch下使用LSTM神经网络写诗实例
2020/01/14 Python
Python 利用Entrez库筛选下载PubMed文献摘要的示例
2020/11/24 Python
Python创建简单的神经网络实例讲解
2021/01/04 Python
matplotlib bar()实现百分比堆积柱状图
2021/02/24 Python
简单总结CSS3中视窗单位Viewport的常见用法
2016/02/04 HTML / CSS
分享29个基于Bootstrap的HTML5响应式网页设计模板
2015/11/19 HTML / CSS
某/etc/fstab文件中的某行如下: /dev/had5 /mnt/dosdata msdos defaults,usrquota 1 2 请解释其含义
2013/09/18 面试题
高中班长自我鉴定
2013/12/20 职场文书
法人代表授权委托书
2014/04/08 职场文书
2014年百日安全生产活动总结
2014/05/04 职场文书
最美护士演讲稿
2014/08/27 职场文书
师德师风个人整改措施
2014/10/27 职场文书