]> granicus.if.org Git - imagemagick/blob - magick/statistic.h
(no commit message)
[imagemagick] / magick / statistic.h
1 /*
2   Copyright 1999-2010 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 statistical methods.
17 */
18 #ifndef _MAGICKCORE_STATISTIC_H
19 #define _MAGICKCORE_STATISTIC_H
20
21 #if defined(__cplusplus) || defined(c_plusplus)
22 extern "C" {
23 #endif
24
25 typedef struct _ChannelStatistics
26 {
27   unsigned long
28     depth;
29
30   double
31     minima,
32     maxima,
33     mean, standard_deviation,
34     kurtosis,
35     skewness;
36 } ChannelStatistics;
37
38 typedef enum
39 {
40   UndefinedEvaluateOperator,
41   AddEvaluateOperator,
42   AndEvaluateOperator,
43   DivideEvaluateOperator,
44   LeftShiftEvaluateOperator,
45   MaxEvaluateOperator,
46   MinEvaluateOperator,
47   MultiplyEvaluateOperator,
48   OrEvaluateOperator,
49   RightShiftEvaluateOperator,
50   SetEvaluateOperator,
51   SubtractEvaluateOperator,
52   XorEvaluateOperator,
53   PowEvaluateOperator,
54   LogEvaluateOperator,
55   ThresholdEvaluateOperator,
56   ThresholdBlackEvaluateOperator,
57   ThresholdWhiteEvaluateOperator,
58   GaussianNoiseEvaluateOperator,
59   ImpulseNoiseEvaluateOperator,
60   LaplacianNoiseEvaluateOperator,
61   MultiplicativeNoiseEvaluateOperator,
62   PoissonNoiseEvaluateOperator,
63   UniformNoiseEvaluateOperator,
64   CosineEvaluateOperator,
65   SineEvaluateOperator,
66   AddModulusEvaluateOperator,
67   MeanEvaluateOperator
68 } MagickEvaluateOperator;
69
70 typedef enum
71 {
72   UndefinedFunction,
73   PolynomialFunction,
74   SinusoidFunction,
75   ArcsinFunction,
76   ArctanFunction
77 } MagickFunction;
78
79 extern MagickExport ChannelStatistics
80   *GetImageChannelStatistics(const Image *,ExceptionInfo *);
81
82 extern MagickExport Image
83   *AverageImages(const Image *,ExceptionInfo *),
84   *MaximumImages(const Image *,ExceptionInfo *),
85   *MinimumImages(const Image *,ExceptionInfo *);
86
87 extern MagickExport MagickBooleanType
88   EvaluateImage(Image *,const MagickEvaluateOperator,const double,
89     ExceptionInfo *),
90   EvaluateImageChannel(Image *,const ChannelType,const MagickEvaluateOperator,
91     const double,ExceptionInfo *),
92   FunctionImage(Image *,const MagickFunction,const unsigned long,const double *,
93     ExceptionInfo *),
94   FunctionImageChannel(Image *,const ChannelType,const MagickFunction,
95     const unsigned long,const double *,ExceptionInfo *),
96   GetImageChannelExtrema(const Image *,const ChannelType,unsigned long *,
97     unsigned long *,ExceptionInfo *),
98   GetImageChannelMean(const Image *,const ChannelType,double *,double *,
99     ExceptionInfo *),
100   GetImageChannelKurtosis(const Image *,const ChannelType,double *,double *,
101     ExceptionInfo *),
102   GetImageChannelRange(const Image *,const ChannelType,double *,double *,
103     ExceptionInfo *),
104   GetImageExtrema(const Image *,unsigned long *,unsigned long *,
105     ExceptionInfo *),
106   GetImageRange(const Image *,double *,double *,ExceptionInfo *),
107   GetImageMean(const Image *,double *,double *,ExceptionInfo *),
108   GetImageKurtosis(const Image *,double *,double *,ExceptionInfo *);
109
110 #if defined(__cplusplus) || defined(c_plusplus)
111 }
112 #endif
113
114 #endif