MagickCore 6.9.11-60
Convert, Edit, Or Compose Bitmap Images
feature.h
Go to the documentation of this file.
1/*
2 Copyright 1999-2021 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. You may
6 obtain a copy of the License at
7
8 https://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 feature methods.
17*/
18#ifndef MAGICKCORE_FEATURE_H
19#define MAGICKCORE_FEATURE_H
20
21#if defined(__cplusplus) || defined(c_plusplus)
22extern "C" {
23#endif
24
25/*
26 Haralick texture features.
27*/
28typedef struct _ChannelFeatures
29{
30 double
46
48 *GetImageChannelFeatures(const Image *,const size_t,ExceptionInfo *);
49
51 *CannyEdgeImage(const Image *,const double,const double,const double,
52 const double,ExceptionInfo *),
53 *HoughLineImage(const Image *,const size_t,const size_t,const size_t,
55 *MeanShiftImage(const Image *,const size_t,const size_t,const double,
57
58#if defined(__cplusplus) || defined(c_plusplus)
59}
60#endif
61
62#endif
struct _ChannelFeatures ChannelFeatures
MagickExport ChannelFeatures * GetImageChannelFeatures(const Image *, const size_t, ExceptionInfo *)
Definition feature.c:630
MagickExport Image * CannyEdgeImage(const Image *, const double, const double, const double, const double, ExceptionInfo *)
MagickExport Image * MeanShiftImage(const Image *, const size_t, const size_t, const double, ExceptionInfo *)
Definition feature.c:2184
MagickExport Image * HoughLineImage(const Image *, const size_t, const size_t, const size_t, ExceptionInfo *)
#define MagickExport
Definition method-attribute.h:80
Definition feature.h:29
double measure_of_correlation_2[4]
Definition feature.h:43
double contrast[4]
Definition feature.h:32
double variance_sum_of_squares[4]
Definition feature.h:34
double inverse_difference_moment[4]
Definition feature.h:35
double angular_second_moment[4]
Definition feature.h:31
double difference_entropy[4]
Definition feature.h:41
double entropy[4]
Definition feature.h:39
double maximum_correlation_coefficient[4]
Definition feature.h:44
double difference_variance[4]
Definition feature.h:40
double sum_variance[4]
Definition feature.h:37
double measure_of_correlation_1[4]
Definition feature.h:42
double correlation[4]
Definition feature.h:33
double sum_average[4]
Definition feature.h:36
double sum_entropy[4]
Definition feature.h:38
Definition exception.h:103
Definition image.h:153