diff options
Diffstat (limited to 'dmagick/c/effect.d')
| -rw-r--r-- | dmagick/c/effect.d | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dmagick/c/effect.d b/dmagick/c/effect.d index 3e4e112..7932ba2 100644 --- a/dmagick/c/effect.d +++ b/dmagick/c/effect.d @@ -51,12 +51,6 @@ extern(C) Image* AdaptiveSharpenImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); Image* BlurImage(const(Image)*, const double, const double, ExceptionInfo*); Image* BlurImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); - - static if ( MagickLibVersion >= 0x689 ) - { - Image* CannyEdgeImage(const(Image)*, const double, const double, const double, const double, ExceptionInfo*); - } - Image* ConvolveImage(const(Image)*, const size_t, const(double)*, ExceptionInfo*); Image* ConvolveImageChannel(const(Image)*, const ChannelType, const size_t, const(double)*, ExceptionInfo*); Image* DespeckleImage(const(Image)*, ExceptionInfo*); @@ -67,6 +61,12 @@ extern(C) Image* GaussianBlurImage(const(Image)*, const double, const double, ExceptionInfo*); Image* GaussianBlurImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); + static if ( MagickLibVersion >= 0x689 ) + { + Image* KuwaharaImage(const(Image)*, const double, const double, ExceptionInfo*); + Image* KuwaharaImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); + } + static if ( MagickLibVersion < 0x669 ) { Image* MedianFilterImage(const(Image)*, const double, ExceptionInfo*); |
