Hacker News new | ask | show | jobs
by mkbosmans 574 days ago
It is the performance win for similar looking results that I find improbable. For a box blur to look like gaussian blur, you would need multiple passes. Even though each pass is now O(1) instead of O(n) (with n the blur radius), due to caching effects I think a gaussian kernel would still be faster, especially for the small blur radius as described in the article.
1 comments

The multi-pass box blur effect is the one I've seen in game engines.