blob: c0dd09ba5a3d15787d45f91d5731ab2b2cee82cd [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2 Copyright 1999-2009 ImageMagick Studio LLC, a non-profit organization
3 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 *),
27 AutoGammaImageChannel(Image *,const ChannelType),
28 AutoLevelImage(Image *),
29 AutoLevelImageChannel(Image *,const ChannelType),
30 ClutImage(Image *,const Image *),
31 ClutImageChannel(Image *,const ChannelType,const Image *),
32 ColorDecisionListImage(Image *,const char *),
33 ContrastImage(Image *,const MagickBooleanType),
34 ContrastStretchImage(Image *,const char *),
35 ContrastStretchImageChannel(Image *,const ChannelType,const double,
36 const double),
37 EqualizeImage(Image *image),
38 EqualizeImageChannel(Image *image,const ChannelType),
39 GammaImage(Image *,const char *),
40 GammaImageChannel(Image *,const ChannelType,const double),
41 HaldClutImage(Image *,const Image *),
42 HaldClutImageChannel(Image *,const ChannelType,const Image *),
43 LevelImage(Image *,const char *),
44 LevelImageChannel(Image *,const ChannelType,const double,const double,
45 const double),
cristy308b4e62009-09-21 14:40:44 +000046 LevelizeImage(Image *,const double,const double,const double),
cristy3ed852e2009-09-05 21:47:34 +000047 LevelizeImageChannel(Image *,const ChannelType,const double,const double,
48 const double),
cristy308b4e62009-09-21 14:40:44 +000049 LevelColorsImage(Image *,const MagickPixelPacket *,const MagickPixelPacket *,
50 const MagickBooleanType),
51 LevelColorsImageChannel(Image *,const ChannelType,const MagickPixelPacket *,
cristyee0f8d72009-09-19 00:58:29 +000052 const MagickPixelPacket *,const MagickBooleanType),
cristy3ed852e2009-09-05 21:47:34 +000053 LinearStretchImage(Image *,const double,const double),
54 ModulateImage(Image *,const char *),
55 NegateImage(Image *,const MagickBooleanType),
56 NegateImageChannel(Image *,const ChannelType,const MagickBooleanType),
57 NormalizeImage(Image *),
58 NormalizeImageChannel(Image *,const ChannelType),
59 SigmoidalContrastImage(Image *,const MagickBooleanType,const char *),
60 SigmoidalContrastImageChannel(Image *,const ChannelType,
61 const MagickBooleanType,const double,const double);
62
63extern MagickExport Image
64 *EnhanceImage(const Image *,ExceptionInfo *);
65
66#if defined(__cplusplus) || defined(c_plusplus)
67}
68#endif
69
70#endif