]> 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   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   AddEvaluateOperator,
48   AndEvaluateOperator,
49   DivideEvaluateOperator,
50   LeftShiftEvaluateOperator,
51   MaxEvaluateOperator,
52   MinEvaluateOperator,
53   MultiplyEvaluateOperator,
54   OrEvaluateOperator,
55   RightShiftEvaluateOperator,
56   SetEvaluateOperator,
57   SubtractEvaluateOperator,
58   XorEvaluateOperator,
59   PowEvaluateOperator,
60   LogEvaluateOperator,
61   ThresholdEvaluateOperator,
62   ThresholdBlackEvaluateOperator,
63   ThresholdWhiteEvaluateOperator,
64   GaussianNoiseEvaluateOperator,
65   ImpulseNoiseEvaluateOperator,
66   LaplacianNoiseEvaluateOperator,
67   MultiplicativeNoiseEvaluateOperator,
68   PoissonNoiseEvaluateOperator,
69   UniformNoiseEvaluateOperator,
70   CosineEvaluateOperator,
71   SineEvaluateOperator,
72   AddModulusEvaluateOperator,
73   MeanEvaluateOperator
74 } MagickEvaluateOperator;
75
76 typedef enum
77 {
78   UndefinedFunction,
79   PolynomialFunction,
80   SinusoidFunction,
81   ArcsinFunction,
82   ArctanFunction
83 } MagickFunction;
84
85 extern MagickExport ChannelStatistics
86   *GetImageChannelStatistics(const Image *,ExceptionInfo *);
87
88 extern MagickExport Image
89   *EvaluateImages(const Image *,const MagickEvaluateOperator,ExceptionInfo *);
90
91 extern MagickExport MagickBooleanType
92   EvaluateImage(Image *,const MagickEvaluateOperator,const double,
93     ExceptionInfo *),
94   EvaluateImageChannel(Image *,const ChannelType,const MagickEvaluateOperator,
95     const double,ExceptionInfo *),
96   FunctionImage(Image *,const MagickFunction,const size_t,const double *,
97     ExceptionInfo *),
98   FunctionImageChannel(Image *,const ChannelType,const MagickFunction,
99     const size_t,const double *,ExceptionInfo *),
100   GetImageChannelExtrema(const Image *,const ChannelType,size_t *,size_t *,
101     ExceptionInfo *),
102   GetImageChannelMean(const Image *,const ChannelType,double *,double *,
103     ExceptionInfo *),
104   GetImageChannelKurtosis(const Image *,const ChannelType,double *,double *,
105     ExceptionInfo *),
106   GetImageChannelRange(const Image *,const ChannelType,double *,double *,
107     ExceptionInfo *),
108   GetImageExtrema(const Image *,size_t *,size_t *,ExceptionInfo *),
109   GetImageRange(const Image *,double *,double *,ExceptionInfo *),
110   GetImageMean(const Image *,double *,double *,ExceptionInfo *),
111   GetImageKurtosis(const Image *,double *,double *,ExceptionInfo *);
112
113 #if defined(__cplusplus) || defined(c_plusplus)
114 }
115 #endif
116
117 #endif