blob: 9fbb6f99c2bbe62a339f443601e94d851cca4387 [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 *),
cristy3ed852e2009-09-05 21:47:34 +000030 ColorDecisionListImage(Image *,const char *),
31 ContrastImage(Image *,const MagickBooleanType),
cristy50fbc382011-07-07 02:19:17 +000032 ContrastStretchImage(Image *,const double,const double),
cristy3ed852e2009-09-05 21:47:34 +000033 EqualizeImage(Image *image),
cristyb3e7c6c2011-07-24 01:43:55 +000034 GammaImage(Image *,const double,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000035 HaldClutImage(Image *,const Image *),
cristyf89cb1d2011-07-07 01:24:37 +000036 LevelImage(Image *,const double,const double,const double),
cristy308b4e62009-09-21 14:40:44 +000037 LevelizeImage(Image *,const double,const double,const double),
cristy490408a2011-07-07 14:42:05 +000038 LevelImageColors(Image *,const PixelInfo *,const PixelInfo *,
cristy308b4e62009-09-21 14:40:44 +000039 const MagickBooleanType),
cristy3ed852e2009-09-05 21:47:34 +000040 LinearStretchImage(Image *,const double,const double),
41 ModulateImage(Image *,const char *),
cristyb3e7c6c2011-07-24 01:43:55 +000042 NegateImage(Image *,const MagickBooleanType,ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +000043 NormalizeImage(Image *),
cristy9ee60942011-07-06 14:54:38 +000044 SigmoidalContrastImage(Image *,const MagickBooleanType,const double,
45 const double);
cristy3ed852e2009-09-05 21:47:34 +000046
47extern MagickExport Image
48 *EnhanceImage(const Image *,ExceptionInfo *);
49
50#if defined(__cplusplus) || defined(c_plusplus)
51}
52#endif
53
54#endif