root / ImageMagick / branches / ImageMagick-6.3.5 / magick / enhance.h

Revision 7711, 1.9 kB (checked in by cristy, 15 months ago)
Line 
1/*
2  Copyright 1999-2007 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  ClutImage(Image *,const Image *),
27  ClutImageChannel(Image *,const ChannelType,const Image *),
28  ContrastImage(Image *,const MagickBooleanType),
29  ContrastStretchImage(Image *,const char *),
30  ContrastStretchImageChannel(Image *,const ChannelType,const double,
31    const double),
32  EqualizeImage(Image *image),
33  GammaImage(Image *,const char *),
34  GammaImageChannel(Image *,const ChannelType,const double),
35  LevelImage(Image *,const char *),
36  LevelImageChannel(Image *,const ChannelType,const double,const double,
37    const double),
38  LinearStretchImage(Image *,const double,const double),
39  ModulateImage(Image *,const char *),
40  NegateImage(Image *,const MagickBooleanType),
41  NegateImageChannel(Image *,const ChannelType,const MagickBooleanType),
42  NormalizeImage(Image *),
43  NormalizeImageChannel(Image *,const ChannelType),
44  SigmoidalContrastImage(Image *,const MagickBooleanType,const char *),
45  SigmoidalContrastImageChannel(Image *,const ChannelType,
46    const MagickBooleanType,const double,const double);
47
48extern MagickExport Image
49  *EnhanceImage(const Image *,ExceptionInfo *);
50
51#if defined(__cplusplus) || defined(c_plusplus)
52}
53#endif
54
55#endif
Note: See TracBrowser for help on using the browser.