QuasimondoJS icon indicating copy to clipboard operation
QuasimondoJS copied to clipboard

Stack Blur in MATLAB

Open RoyiAvital opened this issue 10 years ago • 4 comments

Hello, Is there an implementation of Stack Blur in MATLAB?
Could it work with 16 BIT images / Floating Point?

I'm interested in it here: https://github.com/RoyiAvital/FastGuassianBlur

RoyiAvital avatar May 12 '15 14:05 RoyiAvital

Unfortunately I don't speak MATLAB but I am pretty sure it is possible to port it - the code just uses basic operations and no special native codes or additional libraries.

It could also work with 16 bit images or floats, but in that case the fast integer divison has to be replaced with a regular division and the handling of premultipled alpha should at least be considered as a potential place for errors.

Quasimondo avatar May 12 '15 16:05 Quasimondo

Hi, Where can I find a description of the algorithm? Thank You.

RoyiAvital avatar May 13 '15 06:05 RoyiAvital

https://github.com/Quasimondo/QuasimondoJS/blob/master/blur/stackblur.pdf

Quasimondo avatar May 13 '15 08:05 Quasimondo

Hi! I have written a slow, but correctly working implementation in Matlab recently. Click to download the .m file Click here to check the blur effect

Cabbagec avatar Jun 03 '18 16:06 Cabbagec