morphology using Magick++
问题 I'm trying to perform morphology using Magick++ from a c++ program that I am writing. I can't find how to use the Morphology methods from c++ though. I am trying to perform the following (we are converting from perl): $q=Image::Magick->new; $q->Read("blah.jpg"); $q->Morphology(method => 'Close', kernel => 'Diamond:4'); Can this not be done with just Magick++ ? I have found this site, http://www.imagemagick.org/api/MagickCore/morphology_8h.html , but I am not sure if this is just the source