home *** CD-ROM | disk | FTP | other *** search
- /*
- ImageMagick Image Effects Methods.
- */
- #ifndef _MAGICK_EFFECT_H
- #define _MAGICK_EFFECT_H
-
- #if defined(__cplusplus) || defined(c_plusplus)
- extern "C" {
- #endif
-
- typedef enum
- {
- UndefinedNoise,
- UniformNoise,
- GaussianNoise,
- MultiplicativeGaussianNoise,
- ImpulseNoise,
- LaplacianNoise,
- PoissonNoise
- } NoiseType;
-
- extern MagickExport Image
- *AdaptiveThresholdImage(const Image *,const unsigned long,const unsigned long, const long,ExceptionInfo *),
- *AddNoiseImage(const Image *,const NoiseType,ExceptionInfo *),
- *BlurImage(const Image *,const double,const double,ExceptionInfo *),
- *BlurImageChannel(const Image *,const ChannelType channel,const double,
- const double,ExceptionInfo *),
- *DespeckleImage(const Image *,ExceptionInfo *),
- *EdgeImage(const Image *,const double,ExceptionInfo *),
- *EmbossImage(const Image *,const double,const double,ExceptionInfo *),
- *EnhanceImage(const Image *,ExceptionInfo *),
- *GaussianBlurImage(const Image *,const double,const double,ExceptionInfo *),
- *GaussianBlurImageChannel(const Image *,const ChannelType channel,
- const double,const double,ExceptionInfo *),
- *MedianFilterImage(const Image *,const double,ExceptionInfo *),
- *MotionBlurImage(const Image *,const double,const double,const double,
- ExceptionInfo *),
- *PreviewImage(const Image *,const PreviewType,ExceptionInfo *),
- *RadialBlurImage(const Image *,const double,ExceptionInfo *),
- *ReduceNoiseImage(const Image *,const double,ExceptionInfo *),
- *ShadeImage(const Image *,const unsigned int,const double,const double,
- ExceptionInfo *),
- *SharpenImage(const Image *,const double,const double,ExceptionInfo *),
- *SharpenImageChannel(const Image *,const ChannelType channel,const double,
- const double,ExceptionInfo *),
- *SpreadImage(const Image *,const double,ExceptionInfo *),
- *UnsharpMaskImage(const Image *,const double,const double,const double,
- const double,ExceptionInfo *);
-
- extern MagickExport unsigned int
- BlackThresholdImage(Image *,const char *),
- BilevelImage(Image *,const double),
- BilevelImageChannel(Image *,const ChannelType,const double),
- RandomThresholdImageChannel(Image *,const ChannelType,const char *,
- ExceptionInfo *),
- WhiteThresholdImage(Image *,const char *);
-
- #if defined(__cplusplus) || defined(c_plusplus)
- }
- #endif
-
- #endif
-