]> granicus.if.org Git - imagemagick/blob - MagickCore/accelerate.h
(no commit message)
[imagemagick] / MagickCore / accelerate.h
1 /*
2   Copyright 1999-2014 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 acceleration methods.
17 */
18 #ifndef _MAGICKCORE_ACCELERATE_H
19 #define _MAGICKCORE_ACCELERATE_H
20
21 #include "MagickCore/fx.h"
22 #include "MagickCore/morphology.h"
23 #include "MagickCore/resample.h"
24 #include "MagickCore/resize.h"
25 #include "MagickCore/statistic.h"
26
27 #if defined(__cplusplus) || defined(c_plusplus)
28 extern "C" {
29 #endif
30
31 extern MagickExport MagickBooleanType
32   AccelerateCompositeImage(Image *,const ChannelType,const CompositeOperator,
33     const Image *,const ssize_t,const ssize_t,const float,const float,ExceptionInfo *),
34   AccelerateContrastImage(Image *,const MagickBooleanType,ExceptionInfo *),
35   AccelerateConvolveImage(const Image *,const KernelInfo *,Image *,
36     ExceptionInfo *),
37   AccelerateContrastStretchImageChannel(Image *, const ChannelType, const double, const double, 
38     ExceptionInfo*),
39   AccelerateEqualizeImage(Image *,const ChannelType,ExceptionInfo *),
40   AccelerateFunctionImage(Image *,const ChannelType,const MagickFunction,
41     const size_t,const double *,ExceptionInfo *),
42   AccelerateGrayscaleImage(Image*, const PixelIntensityMethod,
43     ExceptionInfo *),
44   AccelerateModulateImage(Image*, double, double, double, 
45     ColorspaceType, ExceptionInfo*),
46   AccelerateNegateImageChannel(Image*, const ChannelType, const MagickBooleanType,
47     ExceptionInfo *),
48   AccelerateRandomImage(Image*, ExceptionInfo*);
49
50 extern MagickExport Image
51   *AccelerateAddNoiseImage(const Image*,const ChannelType,const NoiseType,
52     ExceptionInfo *),
53   *AccelerateBlurImage(const Image *,const ChannelType,const double,
54     const double,ExceptionInfo *),
55   *AccelerateConvolveImageChannel(const Image *,const ChannelType,
56     const KernelInfo *,ExceptionInfo *),
57   *AccelerateDespeckleImage(const Image *,ExceptionInfo *),
58   *AccelerateMotionBlurImage(const Image*, const ChannelType,
59     const double*,const size_t,const OffsetInfo*,ExceptionInfo*),
60   *AccelerateResizeImage(const Image *,const size_t,const size_t,
61     const ResizeFilter *,ExceptionInfo *),
62   *AccelerateRotationalBlurImage(const Image *,const ChannelType,const double,
63     ExceptionInfo *),
64   *AccelerateUnsharpMaskImage(const Image *,const ChannelType,const double,
65     const double,const double,const double,ExceptionInfo *);
66
67 #if defined(__cplusplus) || defined(c_plusplus)
68 }
69 #endif
70
71 #endif