cristy | e110189 | 2013-08-18 00:53:18 +0000 | [diff] [blame] | 1 | /* |
Cristy | 7ce65e7 | 2015-12-12 18:03:16 -0500 | [diff] [blame] | 2 | Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization |
cristy | e110189 | 2013-08-18 00:53:18 +0000 | [diff] [blame] | 3 | dedicated to making software imaging solutions freely available. |
cristy | f034abb | 2013-11-24 14:16:14 +0000 | [diff] [blame] | 4 | |
cristy | e110189 | 2013-08-18 00:53:18 +0000 | [diff] [blame] | 5 | You may not use this file except in compliance with the License. |
| 6 | obtain a copy of the License at |
cristy | f034abb | 2013-11-24 14:16:14 +0000 | [diff] [blame] | 7 | |
cristy | e110189 | 2013-08-18 00:53:18 +0000 | [diff] [blame] | 8 | http://www.imagemagick.org/script/license.php |
cristy | f034abb | 2013-11-24 14:16:14 +0000 | [diff] [blame] | 9 | |
cristy | e110189 | 2013-08-18 00:53:18 +0000 | [diff] [blame] | 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 | |
cristy | f034abb | 2013-11-24 14:16:14 +0000 | [diff] [blame] | 16 | MagickCore private methods for accelerated functions. |
cristy | e110189 | 2013-08-18 00:53:18 +0000 | [diff] [blame] | 17 | */ |
cristy | f034abb | 2013-11-24 14:16:14 +0000 | [diff] [blame] | 18 | |
Cristy | 83bceaa | 2016-06-03 20:39:35 -0400 | [diff] [blame] | 19 | #ifndef MAGICKCORE_ACCELERATE_PRIVATE_H |
| 20 | #define MAGICKCORE_ACCELERATE_PRIVATE_H |
cristy | e110189 | 2013-08-18 00:53:18 +0000 | [diff] [blame] | 21 | |
dirk | eeec14f | 2016-05-29 10:37:29 +0200 | [diff] [blame] | 22 | #include "MagickCore/fx.h" |
| 23 | #include "MagickCore/morphology.h" |
| 24 | #include "MagickCore/resample.h" |
| 25 | #include "MagickCore/resize.h" |
| 26 | #include "MagickCore/statistic.h" |
| 27 | |
cristy | e110189 | 2013-08-18 00:53:18 +0000 | [diff] [blame] | 28 | #if defined(__cplusplus) || defined(c_plusplus) |
| 29 | extern "C" { |
| 30 | #endif |
| 31 | |
dirk | 21dc031 | 2016-06-13 22:30:26 +0200 | [diff] [blame] | 32 | #if defined(MAGICKCORE_OPENCL_SUPPORT) |
| 33 | |
dirk | eeec14f | 2016-05-29 10:37:29 +0200 | [diff] [blame] | 34 | extern MagickPrivate Image |
| 35 | *AccelerateAddNoiseImage(const Image*,const NoiseType,ExceptionInfo *), |
| 36 | *AccelerateBlurImage(const Image *,const double,const double,ExceptionInfo *), |
| 37 | *AccelerateConvolveImage(const Image *,const KernelInfo *,ExceptionInfo *), |
| 38 | *AccelerateDespeckleImage(const Image *,ExceptionInfo *), |
| 39 | *AccelerateLocalContrastImage(const Image *,const double,const double, |
| 40 | ExceptionInfo *), |
| 41 | *AccelerateMotionBlurImage(const Image*,const double*,const size_t, |
| 42 | const OffsetInfo*,ExceptionInfo*), |
| 43 | *AccelerateResizeImage(const Image *,const size_t,const size_t, |
| 44 | const ResizeFilter *,ExceptionInfo *), |
| 45 | *AccelerateRotationalBlurImage(const Image *,const double,ExceptionInfo *), |
| 46 | *AccelerateUnsharpMaskImage(const Image *,const double,const double, |
| 47 | const double,const double,ExceptionInfo *), |
| 48 | *AccelerateWaveletDenoiseImage(const Image *,const double,ExceptionInfo *); |
| 49 | |
| 50 | extern MagickPrivate MagickBooleanType |
dirk | eeec14f | 2016-05-29 10:37:29 +0200 | [diff] [blame] | 51 | AccelerateContrastImage(Image *,const MagickBooleanType,ExceptionInfo *), |
| 52 | AccelerateContrastStretchImage(Image *,const double,const double, |
| 53 | ExceptionInfo*), |
| 54 | AccelerateEqualizeImage(Image *,ExceptionInfo *), |
| 55 | AccelerateFunctionImage(Image *,const MagickFunction,const size_t, |
| 56 | const double *,ExceptionInfo *), |
| 57 | AccelerateGrayscaleImage(Image *,const PixelIntensityMethod, |
| 58 | ExceptionInfo *), |
| 59 | AccelerateModulateImage(Image *,const double,const double,const double, |
| 60 | const ColorspaceType, ExceptionInfo*); |
| 61 | |
dirk | 21dc031 | 2016-06-13 22:30:26 +0200 | [diff] [blame] | 62 | #endif /* MAGICKCORE_OPENCL_SUPPORT */ |
| 63 | |
cristy | e110189 | 2013-08-18 00:53:18 +0000 | [diff] [blame] | 64 | #if defined(__cplusplus) || defined(c_plusplus) |
| 65 | } |
| 66 | #endif |
| 67 | |
dirk | 21dc031 | 2016-06-13 22:30:26 +0200 | [diff] [blame] | 68 | #endif /* MAGICKCORE_ACCELERATE_PRIVATE_H */ |