Help: what is the C++ API function for adaptive-blur

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
xinito

Help: what is the C++ API function for adaptive-blur

Post by xinito »

Please help. I only find the API for blur, but not adpative-blur. I would like to preserve the edges when bluring the image.
Thanks.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Help: what is the C++ API function for adaptive-blur

Post by magick »

We added adaptiveBlur to ImageMagick 6.3.5-7 Beta available sometime tomorrow. In the mean-time you can access it with MagickLib::AdaptiveBlurImage().
xinito

Re: Help: what is the C++ API function for adaptive-blur

Post by xinito »

Could you please tell me how I use MagickLib::AdaptiveBlurImage in C++ API?

For example, I had done regular blur like this:

Magick::Image img;
img.blur(radius,sigmoid);

then I tried to compile
img.MagickLib::AdaptiveBlurImage(radius,sigmoid)
but failed.
Post Reply