cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
cristy | 7e41fe8 | 2010-12-04 23:12:08 +0000 | [diff] [blame] | 2 | Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 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) |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
| 25 | extern MagickExport MagickBooleanType |
| 26 | AutoGammaImage(Image *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 27 | AutoLevelImage(Image *), |
cristy | a28d6b8 | 2010-01-11 20:03:47 +0000 | [diff] [blame] | 28 | BrightnessContrastImage(Image *,const double,const double), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 29 | ClutImage(Image *,const Image *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 30 | ColorDecisionListImage(Image *,const char *), |
| 31 | ContrastImage(Image *,const MagickBooleanType), |
cristy | 50fbc38 | 2011-07-07 02:19:17 +0000 | [diff] [blame] | 32 | ContrastStretchImage(Image *,const double,const double), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 33 | EqualizeImage(Image *image), |
cristy | b3e7c6c | 2011-07-24 01:43:55 +0000 | [diff] [blame^] | 34 | GammaImage(Image *,const double,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 35 | HaldClutImage(Image *,const Image *), |
cristy | f89cb1d | 2011-07-07 01:24:37 +0000 | [diff] [blame] | 36 | LevelImage(Image *,const double,const double,const double), |
cristy | 308b4e6 | 2009-09-21 14:40:44 +0000 | [diff] [blame] | 37 | LevelizeImage(Image *,const double,const double,const double), |
cristy | 490408a | 2011-07-07 14:42:05 +0000 | [diff] [blame] | 38 | LevelImageColors(Image *,const PixelInfo *,const PixelInfo *, |
cristy | 308b4e6 | 2009-09-21 14:40:44 +0000 | [diff] [blame] | 39 | const MagickBooleanType), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 40 | LinearStretchImage(Image *,const double,const double), |
| 41 | ModulateImage(Image *,const char *), |
cristy | b3e7c6c | 2011-07-24 01:43:55 +0000 | [diff] [blame^] | 42 | NegateImage(Image *,const MagickBooleanType,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 43 | NormalizeImage(Image *), |
cristy | 9ee6094 | 2011-07-06 14:54:38 +0000 | [diff] [blame] | 44 | SigmoidalContrastImage(Image *,const MagickBooleanType,const double, |
| 45 | const double); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 46 | |
| 47 | extern MagickExport Image |
| 48 | *EnhanceImage(const Image *,ExceptionInfo *); |
| 49 | |
| 50 | #if defined(__cplusplus) || defined(c_plusplus) |
| 51 | } |
| 52 | #endif |
| 53 | |
| 54 | #endif |