本文用 Python 实现 PS 滤镜中的旋转模糊,具体的算法原理和效果可以参考之前的博客:

http://blog.csdn.net/matrix_space/article/details/39211667

from skimage import img_as_float
import matplotlib.pyplot as plt
from skimage import io
import numpy as np
import numpy.matlib file_name='D:/Visual Effects/PS Algorithm/4.jpg'
img=io.imread(file_name) img = img_as_float(img) img_out = img.copy() row, col, channel = img.shape 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) center_y = (row -1) / 2.0
center_x = (col -1) / 2.0 R = np.sqrt((x_mask - center_x) **2 + (y_mask - center_y) ** 2) angle = np.arctan2(y_mask - center_y , x_mask - center_x) Num = 20 arr = ( np.arange(Num) + 1 ) / 100.0 for i in range (row):
for j in range (col): T_angle = angle[i, j] + arr new_x = R[i, j] * np.cos(T_angle) + center_x
new_y = R[i, j] * np.sin(T_angle) + center_y int_x = new_x.astype(int)
int_y = new_y.astype(int) int_x[int_x > col-1] = col - 1
int_x[int_x < 0] = 0
int_y[int_y < 0] = 0
int_y[int_y > row -1] = row -1 img_out[i,j,0] = img[int_y, int_x, 0].sum()/Num
img_out[i,j,1] = img[int_y, int_x, 1].sum()/Num
img_out[i,j,2] = img[int_y, int_x, 2].sum()/Num plt.figure(1)
plt.imshow(img)
plt.axis('off') plt.figure(2)
plt.imshow(img_out)
plt.axis('off') plt.show()

最新文章

  1. css014 响应式web设计
  2. phpcms v9实现wap单页教程
  3. 三、oracle 体系结构
  4. Android数据的四种存储方式SharedPreferences、SQLite、Content Provider和File (一) —— 总览
  5. 什么是 db time
  6. LeetCode: Sqrt
  7. python 入门实践之网页数据抓取
  8. AD怎样画 board shape
  9. Web Api帮助页面或用户手册
  10. 18年最有&quot;钱&quot;途的专业就是它(文末有福利)
  11. VS2017开发的IDE扩展
  12. C#网络编程之进程管理
  13. 试安装pyQt5+eric6+python安装
  14. Jersey RESTful WebService框架学习(二)使用@PathParam
  15. SSIS 组件属性整理
  16. AMS1117稳压模块
  17. Spark(七)Spark内存调优
  18. Python入门2(Python与C语言语法的不同、Notepad++运行Python代码)
  19. WPF中Style文件引用另一个Style文件中的样式
  20. 自定义控件_VIewPager显示多个Item

热门文章

  1. Go语言_RPC_Go语言的RPC
  2. Android View 布局流程(Layout)完全解析
  3. 彻底搞懂oracle的标量子查询
  4. C#如何生成release版本的程序,生成debug版本的程序
  5. C++学习总结1
  6. redis 3.0.1 在CentOS上的安装
  7. bootstrap-data-target触发模态弹出窗元素的data使用 data-toggle与data-target的作用 深入ASP.NET MVC之九:Ajax支持 Asp.Net MVC4系列--进阶篇之AJAX
  8. 通过路由管理视图间切换 - AngularJS路由解析
  9. Canvas学习笔记——动画中摩擦力的运用
  10. leetCode(51):Valid Palindrome