本文用 Python 实现 PS 滤镜中的碎片特效,这个特效简单来说就是将图像在 上,下,左,右 四个方向做平移,然后将四个方向的平移的图像叠加起来做平均.具体的效果图可以参考之前的博客 http://blog.csdn.net/matrix_space/article/details/29192819 from skimage import img_as_float import matplotlib.pyplot as plt from skimage import io file_name…