blob: 95d00c8abe6e3c9b220b2b914438163c6b853014 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristy7e41fe82010-12-04 23:12:08 +00002 Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization
cristy3ed852e2009-09-05 21:47:34 +00003 dedicated to making software imaging solutions freely available.
4
5 You may not use this file except in compliance with the License.
6 obtain a copy of the License at
7
8 http://www.imagemagick.org/script/license.php
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 MagickCore image enhance methods.
17*/
18#ifndef _MAGICKCORE_ENHANCE_H
19#define _MAGICKCORE_ENHANCE_H
20
21#if defined(__cplusplus) || defined(c_plusplus)
22extern "C" {
23#endif
24
25extern MagickExport MagickBooleanType
26 AutoGammaImage(Image *),
cristy3ed852e2009-09-05 21:47:34 +000027 AutoLevelImage(Image *),
cristya28d6b82010-01-11 20:03:47 +000028 BrightnessContrastImage(Image *,const double,const double),
cristy3ed852e2009-09-05 21:47:34 +000029 ClutImage(Image *,const Image *),
30 ClutImageChannel(Image *,const ChannelType,const Image *),
31 ColorDecisionListImage(Image *,const char *),
32 ContrastImage(Image *,const MagickBooleanType),
33 ContrastStretchImage(Image *,const char *),
34 ContrastStretchImageChannel(Image *,const ChannelType,const double,
35 const double),
36 EqualizeImage(Image *image),
37 EqualizeImageChannel(Image *image,const ChannelType),
38 GammaImage(Image *,const char *),
39 GammaImageChannel(Image *,const ChannelType,const double),
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),
cristy308b4e62009-09-21 14:40:44 +000045 LevelizeImage(Image *,const double,const double,const double),
cristy3ed852e2009-09-05 21:47:34 +000046 LevelizeImageChannel(Image *,const ChannelType,const double,const double,
47 const double),
cristy4c08aed2011-07-01 19:47:50 +000048 LevelColorsImage(Image *,const PixelInfo *,const PixelInfo *,
cristy308b4e62009-09-21 14:40:44 +000049 const MagickBooleanType),
cristy4c08aed2011-07-01 19:47:50 +000050 LevelColorsImageChannel(Image *,const ChannelType,const PixelInfo *,
51 const PixelInfo *,const MagickBooleanType),
cristy3ed852e2009-09-05 21:47:34 +000052 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),
cristy9ee60942011-07-06 14:54:38 +000058 SigmoidalContrastImage(Image *,const MagickBooleanType,const double,
59 const double);
cristy3ed852e2009-09-05 21:47:34 +000060
61extern MagickExport Image
62 *EnhanceImage(const Image *,ExceptionInfo *);
63
64#if defined(__cplusplus) || defined(c_plusplus)
65}
66#endif
67
68#endif