Python实现PS滤镜特效之扇形变换效果示例


Posted in Python onJanuary 26, 2018

本文实例讲述了Python实现PS滤镜特效之扇形变换效果。分享给大家供大家参考,具体如下:

这里用 Python 实现 PS 滤镜中的一种几何变换特效,称为扇形变换,将图像扭曲成一个扇形,具体的算法原理和效果图可以参考附录说明

import numpy as np
from skimage import img_as_float
import matplotlib.pyplot as plt
from skimage import io
import math
import numpy.matlib
file_name2='D:/Visual Effects/PS Algorithm/4.jpg'
img=io.imread(file_name2)
img = img_as_float(img)
# control the radius of the inner circle
radius = 150
# control the distance between the inner circle and outer circle
high = 200
angle = 0
spreadAngle = math.pi
# set the center of the circle, proportion of the image size
centerX = 0.5
centerY = 1.0
row, col, channel = img.shape
icenterX = col * centerX
icenterY = row * centerY
img_out = img * 0
xx = np.arange (col)
yy = np.arange (row)
x_mask = numpy.matlib.repmat (xx, row, 1)
y_mask = numpy.matlib.repmat (yy, col, 1)
y_mask = np.transpose(y_mask)
xx_dif = x_mask - icenterX
yy_dif = y_mask - icenterY
theta = np.arctan2(-yy_dif, -xx_dif+0.0001)
r = np.sqrt(xx_dif*xx_dif + yy_dif * yy_dif)
theta = np.mod(theta, 2 * math.pi)
x1_mask = col * theta/(spreadAngle+0.00001)
y1_mask = row * (1-(r-radius)/(high+0.00001))
'''
mask = x1_mask < 0
x1_mask = x1_mask * (1 - mask)
mask = x1_mask > (col - 1)
x1_mask = x1_mask * (1 - mask) + (x1_mask * 0 + col -2) * mask
mask = y1_mask < 0
y1_mask = y1_mask * (1 - mask)
mask = y1_mask > (row -1)
y1_mask = y1_mask * (1 - mask) + (y1_mask * 0 + row -2) * mask
'''
int_x = np.floor (x1_mask)
int_x = int_x.astype(int)
int_y = np.floor (y1_mask)
int_y = int_y.astype(int)
for ii in range(row):
  for jj in range (col):
    new_xx = int_x [ii, jj]
    new_yy = int_y [ii, jj]
    if x1_mask [ii, jj] < 0 or x1_mask [ii, jj] > col -1 :
      continue
    if y1_mask [ii, jj] < 0 or y1_mask [ii, jj] > row -1 :
      continue
    img_out[ii, jj, :] = img[new_yy, new_xx, :]
plt.figure (1)
plt.title('3water.com')
plt.imshow (img)
plt.axis('off')
plt.figure (2)
plt.title('3water.com')
plt.imshow (img_out)
plt.axis('off')
plt.show()

附录:PS 滤镜— —扇形warp

clc;
  clear all;
  close all;
  addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm');
  I=imread('4.jpg');
  I=double(I);
  Image=I/255;
  [height, width, depth]=size(Image);
  % set the parameters
  radius = 150; % control the radius of the inner circle
  high = 200;  % control the distance between the inner circle and outer circle
  angle = 0;       
  spreadAngle=pi;  
  centerX = 0.5; % set the center of the circle, proportion of the image size
  centerY = 1.0;
  icenterX=width*centerX;
  icenterY=height*centerY;
  Image_new=Image*0;
  for i=1:height
    for j=1:width
      dx=j-icenterX;
      dy=i-icenterY;
      theta=atan2(-dy, -dx)+angle;
      r=sqrt(dy*dy+dx*dx);
      theta=mod(theta, 2*pi);
      x=width * theta/(spreadAngle+0.00001);
      y=height * (1-(r-radius)/(high+0.00001));
  % %     if (x<=1)   x=1; end
  % %     if (x>=width)  x=width-1; end;
  % %     if (y>=height) y=height-1; end;
  % %     if (y<1) y=1;   end;
  % %     
      if (x<=1)   continue; end
      if (x>=width)  continue; end;
      if (y>=height) continue; end;
      if (y<1) continue;   end;
      x1=floor(x);
      y1=floor(y);
      p=x-x1;
      q=y-y1;
      Image_new(i,j,:)=(1-p)*(1-q)*Image(y1,x1,:)+p*(1-q)*Image(y1,x1+1,:)...
        +q*(1-p)*Image(y1+1,x1,:)+p*q*Image(y1+1,x1+1,:);
    end
  end
  imshow(Image_new)
  imwrite(Image_new, 'out.jpg');

参考来源:http://www.jhlabs.com/index.html

本例Python运行效果:

原图

Python实现PS滤镜特效之扇形变换效果示例

效果图

Python实现PS滤镜特效之扇形变换效果示例

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
跟老齐学Python之一个免费的实验室
Sep 14 Python
Python、Javascript中的闭包比较
Feb 04 Python
python文件操作相关知识点总结整理
Feb 22 Python
python批量读取txt文件为DataFrame的方法
Apr 03 Python
Python中作用域的深入讲解
Dec 10 Python
Python3网络爬虫中的requests高级用法详解
Jun 18 Python
浅析Python 引号、注释、字符串
Jul 25 Python
解决python 读取excel时 日期变成数字并加.0的问题
Oct 08 Python
python、Matlab求定积分的实现
Nov 20 Python
Python使用py2neo操作图数据库neo4j的方法详解
Jan 13 Python
Python如何利用正则表达式爬取网页信息及图片
Apr 17 Python
Python实现对齐打印 format函数的用法
Apr 28 Python
修复CentOS7升级Python到3.6版本后yum不能正确使用的解决方法
Jan 26 #Python
Python实现PS滤镜功能之波浪特效示例
Jan 26 #Python
Python使用pickle模块存储数据报错解决示例代码
Jan 26 #Python
python如何重载模块实例解析
Jan 25 #Python
Python进程间通信Queue实例解析
Jan 25 #Python
Python操作Redis之设置key的过期时间实例代码
Jan 25 #Python
python编程使用selenium模拟登陆淘宝实例代码
Jan 25 #Python
You might like
php利用header函数实现文件下载时直接提示保存
2009/11/12 PHP
浅析关于PHP位运算的简单权限设计
2013/06/30 PHP
PHP数据的提交与过滤基本操作实例详解
2016/11/11 PHP
用jQuery获取IE9下拉框默认值问题探讨
2013/07/22 Javascript
JS获取农历日期具体实例
2013/11/14 Javascript
angularJS 中$scope方法使用指南
2015/02/09 Javascript
《JavaScript函数式编程》读后感
2015/08/07 Javascript
js实现鼠标点击左上角滑动菜单效果代码
2015/09/06 Javascript
基于jQuery实现的美观星级评论打分组件代码
2015/10/30 Javascript
基于jquery实现全屏滚动效果
2015/11/26 Javascript
基于socket.io+express实现多房间聊天
2016/03/17 Javascript
JS中artdialog弹出框控件之提交表单思路详解
2016/04/18 Javascript
javascript和jQuery中的AJAX技术详解【包含AJAX各种跨域技术】
2016/12/15 Javascript
jquery 正整数数字校验正则表达式
2017/01/10 Javascript
js读取json文件片段中的数据实例
2017/03/09 Javascript
Bootstrap缩略图的创建方法
2017/03/22 Javascript
分析javascript中9 个常见错误阻碍你进步
2017/09/18 Javascript
浅谈React中组件间抽象
2018/01/27 Javascript
angularjs 获取默认选中的单选按钮的value方法
2018/02/28 Javascript
LayUi中接口传数据成功,表格不显示数据的解决方法
2018/08/19 Javascript
JQuery搜索框自动补全(模糊匹配)功能实现示例
2019/01/08 jQuery
了解重排与重绘
2019/05/29 Javascript
Vue.js项目实战之多语种网站的功能实现(租车)
2019/08/07 Javascript
Nodejs实现WebSocket代码实例
2020/05/19 NodeJs
python三引号输出方法
2019/02/27 Python
Django框架模型简单介绍与使用分析
2019/07/18 Python
python在OpenCV里实现投影变换效果
2019/08/30 Python
python基于event实现线程间通信控制
2020/01/13 Python
Python基于Socket实现简单聊天室
2020/02/17 Python
python解压zip包中文乱码解决方法
2020/11/27 Python
html5+css3之CSS中的布局与Header的实现
2014/11/21 HTML / CSS
中学生校园广播稿
2014/01/16 职场文书
高中竞选班长演讲稿
2014/04/24 职场文书
公司董事长助理工作职责
2014/07/12 职场文书
应届生求职自荐信范文
2015/03/04 职场文书
用position:sticky完美解决小程序吸顶问题的实现方法
2021/04/24 HTML / CSS