]> 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     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   *EvaluateImages(const Image *,const MagickEvaluateOperator,ExceptionInfo *);
84
85 extern MagickExport MagickBooleanType
86   EvaluateImage(Image *,const MagickEvaluateOperator,const double,
87     ExceptionInfo *),
88   EvaluateImageChannel(Image *,const ChannelType,const MagickEvaluateOperator,
89     const double,ExceptionInfo *),
90   FunctionImage(Image *,const MagickFunction,const size_t,const double *,
91     ExceptionInfo *),
92   FunctionImageChannel(Image *,const ChannelType,const MagickFunction,
93     const size_t,const double *,ExceptionInfo *),
94   GetImageChannelExtrema(const Image *,const ChannelType,size_t *,size_t *,
95     ExceptionInfo *),
96   GetImageChannelMean(const Image *,const ChannelType,double *,double *,
97     ExceptionInfo *),
98   GetImageChannelKurtosis(const Image *,const ChannelType,double *,double *,
99     ExceptionInfo *),
100   GetImageChannelRange(const Image *,const ChannelType,double *,double *,
101     ExceptionInfo *),
102   GetImageExtrema(const Image *,size_t *,size_t *,ExceptionInfo *),
103   GetImageRange(const Image *,double *,double *,ExceptionInfo *),
104   GetImageMean(const Image *,double *,double *,ExceptionInfo *),
105   GetImageKurtosis(const Image *,double *,double *,ExceptionInfo *);
106
107 #if defined(__cplusplus) || defined(c_plusplus)
108 }
109 #endif
110
111 #endif