enhance.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. Copyright 1999 ImageMagick Studio LLC, a non-profit organization
  3. dedicated to making software imaging solutions freely available.
  4. You may not use this file except in compliance with the License. You may
  5. obtain a copy of the License at
  6. https://imagemagick.org/script/license.php
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. MagickCore image enhance methods.
  13. */
  14. #ifndef MAGICKCORE_ENHANCE_H
  15. #define MAGICKCORE_ENHANCE_H
  16. #include "magick/pixel.h"
  17. #if defined(__cplusplus) || defined(c_plusplus)
  18. extern "C" {
  19. #endif
  20. extern MagickExport MagickBooleanType
  21. AutoGammaImage(Image *),
  22. AutoGammaImageChannel(Image *,const ChannelType),
  23. AutoLevelImage(Image *),
  24. AutoLevelImageChannel(Image *,const ChannelType),
  25. BrightnessContrastImage(Image *,const double,const double),
  26. BrightnessContrastImageChannel(Image *,const ChannelType,const double,
  27. const double),
  28. ClutImage(Image *,const Image *),
  29. ClutImageChannel(Image *,const ChannelType,const Image *),
  30. ColorDecisionListImage(Image *,const char *),
  31. ContrastImage(Image *,const MagickBooleanType),
  32. ContrastStretchImage(Image *,const char *),
  33. ContrastStretchImageChannel(Image *,const ChannelType,const double,
  34. const double),
  35. EqualizeImage(Image *image),
  36. EqualizeImageChannel(Image *image,const ChannelType),
  37. GammaImage(Image *,const char *),
  38. GammaImageChannel(Image *,const ChannelType,const double),
  39. GrayscaleImage(Image *,const PixelIntensityMethod),
  40. HaldClutImage(Image *,const Image *),
  41. HaldClutImageChannel(Image *,const ChannelType,const Image *),
  42. LevelImage(Image *,const char *),
  43. LevelImageChannel(Image *,const ChannelType,const double,const double,
  44. const double),
  45. LevelizeImage(Image *,const double,const double,const double),
  46. LevelizeImageChannel(Image *,const ChannelType,const double,const double,
  47. const double),
  48. LevelColorsImage(Image *,const MagickPixelPacket *,const MagickPixelPacket *,
  49. const MagickBooleanType),
  50. LevelColorsImageChannel(Image *,const ChannelType,const MagickPixelPacket *,
  51. const MagickPixelPacket *,const MagickBooleanType),
  52. LinearStretchImage(Image *,const double,const double),
  53. ModulateImage(Image *,const char *),
  54. NegateImage(Image *,const MagickBooleanType),
  55. NegateImageChannel(Image *,const ChannelType,const MagickBooleanType),
  56. NormalizeImage(Image *),
  57. NormalizeImageChannel(Image *,const ChannelType),
  58. SigmoidalContrastImage(Image *,const MagickBooleanType,const char *),
  59. SigmoidalContrastImageChannel(Image *,const ChannelType,
  60. const MagickBooleanType,const double,const double);
  61. extern MagickExport Image
  62. *EnhanceImage(const Image *,ExceptionInfo *);
  63. #if defined(__cplusplus) || defined(c_plusplus)
  64. }
  65. #endif
  66. #endif