]> granicus.if.org Git - imagemagick/blob - MagickCore/statistic.h
(no commit message)
[imagemagick] / MagickCore / statistic.h
1 /*
2   Copyright 1999-2012 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   size_t
28     depth;
29
30   double
31     minima,
32     maxima,
33     sum,
34     sum_squared,
35     sum_cubed,
36     sum_fourth_power,
37     mean,
38     variance,
39     standard_deviation,
40     kurtosis,
41     skewness;
42 } ChannelStatistics;
43
44 typedef enum
45 {
46   UndefinedEvaluateOperator,
47   AbsEvaluateOperator,
48   AddEvaluateOperator,
49   AddModulusEvaluateOperator,
50   AndEvaluateOperator,
51   CosineEvaluateOperator,
52   DivideEvaluateOperator,
53   ExponentialEvaluateOperator,
54   GaussianNoiseEvaluateOperator,
55   ImpulseNoiseEvaluateOperator,
56   LaplacianNoiseEvaluateOperator,
57   LeftShiftEvaluateOperator,
58   LogEvaluateOperator,
59   MaxEvaluateOperator,
60   MeanEvaluateOperator,
61   MedianEvaluateOperator,
62   MinEvaluateOperator,
63   MultiplicativeNoiseEvaluateOperator,
64   MultiplyEvaluateOperator,
65   OrEvaluateOperator,
66   PoissonNoiseEvaluateOperator,
67   PowEvaluateOperator,
68   RightShiftEvaluateOperator,
69   SetEvaluateOperator,
70   SineEvaluateOperator,
71   SubtractEvaluateOperator,
72   SumEvaluateOperator,
73   ThresholdBlackEvaluateOperator,
74   ThresholdEvaluateOperator,
75   ThresholdWhiteEvaluateOperator,
76   UniformNoiseEvaluateOperator,
77   XorEvaluateOperator
78 } MagickEvaluateOperator;
79
80 typedef enum
81 {
82   UndefinedFunction,
83   PolynomialFunction,
84   SinusoidFunction,
85   ArcsinFunction,
86   ArctanFunction
87 } MagickFunction;
88
89 typedef enum
90 {
91   UndefinedStatistic,
92   GradientStatistic,
93   MaximumStatistic,
94   MeanStatistic,
95   MedianStatistic,
96   MinimumStatistic,
97   ModeStatistic,
98   NonpeakStatistic,
99   StandardDeviationStatistic
100 } StatisticType;
101
102 extern MagickExport ChannelStatistics
103   *GetImageStatistics(const Image *,ExceptionInfo *);
104
105 extern MagickExport Image
106   *EvaluateImages(const Image *,const MagickEvaluateOperator,ExceptionInfo *),
107   *StatisticImage(const Image *,const StatisticType,const size_t,const size_t,
108     ExceptionInfo *);
109
110 extern MagickExport MagickBooleanType
111   EvaluateImage(Image *,const MagickEvaluateOperator,const double,
112     ExceptionInfo *),
113   FunctionImage(Image *,const MagickFunction,const size_t,const double *,
114     ExceptionInfo *),
115   GetImageExtrema(const Image *,size_t *,size_t *,ExceptionInfo *),
116   GetImageMean(const Image *,double *,double *,ExceptionInfo *),
117   GetImageKurtosis(const Image *,double *,double *,ExceptionInfo *),
118   GetImageRange(const Image *,double *,double *,ExceptionInfo *);
119
120 #if defined(__cplusplus) || defined(c_plusplus)
121 }
122 #endif
123
124 #endif