📅  最后修改于: 2023-12-03 15:34:07.255000             🧑  作者: Mango
Python Wand 是一个基于 ImageMagick 的 Python 图像处理库,motion_blur() 是其中一个函数,可以用于在图像上创建运动模糊效果。
运动模糊,顾名思义,是指图像中物体在移动过程中造成的模糊效果。在摄影、电影、视频、游戏等媒体领域中,运动模糊经常被使用,可以使图像看起来更加真实、动态和生动。
motion_blur(radius, sigma, angle)
参数说明:
from wand.image import Image
with Image(filename='input.jpg') as image:
image.motion_blur(radius=10, sigma=5, angle=30)
image.save(filename='output.jpg')
上述代码使用 motion_blur() 函数将 input.jpg 图像应用运动模糊滤镜,并将结果保存到 output.jpg 文件中。