I'm using graphics/ImageMagick7 to blur an image in a shell script. This is a pretty slow process (it's CPU only and inherently slow that way).
Are there any utilities available that can be utilized to blur an image using GPU acceleration?
As for ImageMagick: For most use cases, the recommendation is to use
I'd like to know whether there are other off-the-shelf solutions I can employ or whether I have to roll my own (which I'd rather not).
Are there any utilities available that can be utilized to blur an image using GPU acceleration?
As for ImageMagick: For most use cases, the recommendation is to use
-blur
instead of -gaussian-blur
(which I do) and for large images to scale them down and back up again. However, this is not an option in my particular situation.I'd like to know whether there are other off-the-shelf solutions I can employ or whether I have to roll my own (which I'd rather not).