Reputation: 3709
I think StackBlur is a great library to use, especially on its ability to blur an image as the way you want. I have not used GPUImage library, but coworker said that StackBlur is slower than GPUImage. I dont find any information on the web. Anyone has insight on this? Thanks!
Upvotes: 1
Views: 1187
Reputation: 197
We were using GPUImage to apply blur effect to our images and decided to try stackblur to see if we can get better performance from it.
After the implementation, we first did simulator tests and stackblur did have better performance, especially with larger images. But when we tried it on actual devices the performance was much worse than GPUImage
Upvotes: 3