The difference of Gaussian Blur between Gimp's and ImageMagick's.

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
2049651
Posts: 29
Joined: 2015-10-20T07:29:42-07:00
Authentication code: 1151

The difference of Gaussian Blur between Gimp's and ImageMagick's.

Post by 2049651 »

Hello Everyone,

Now, I'm trying to implement to apply Gaussian blur by using ImageMagick.
So, I am referring from Gimp Image manipulation tool's Gaussian Blur.
But I found that the output of the gimp's and ImageMagick's are so many different.
I don't know what the reason of the difference.
So I want to know that if I want to implement Gaussian Blur of Gimp's almost exactly by using Imagemagick, How do I supposed to do that? How do I implement Gaussian Blur of Gimp by using ImageMagicK?

Would you please help me?
Currently, I am using a code like in c++ "m_blurgray.gaussianBlur(20,val); //blur"
and I found what they are using like this code.
std_dev = sqrt (-(vert * vert) / (2 * log (1.0 / 255.0)));

what coefficients should I do to have the same output as gimp's in m_blurgray.gaussianBlur(????,????);
Are they each other have the same algorithms or mechanism?
Post Reply