I have an image that is stored a RGBA format in memory. I've written a blur routine that works fine for small blur radii, however big ones like 16 point take forever. Is there an efficient way using CoreImage etc to blur an image? Will using it cause any loss in image quality?
Asked
Active
Viewed 435 times
0
-
This link here analyses all the possible methods. http://five.agency/how-to-create-an-interactive-blur-effect-in-ios8/ – Gurdeep Sep 23 '16 at 05:37
1 Answers
0
Have you tried the built-in CIGaussianBlur? One thing you could do to improve your performance is the following:
- Use the CILanczosScaleTransform filter to scale-down your image.
- Perform a low-radius blur using CIGaussianBlur.
- Use CILanczosScaleTransform to scale-up your image.

joelg
- 1,094
- 9
- 19