blob: b30fdfdf82d566a8304c06e70b3f6d32f493a614 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
Cristyf6ff9ea2016-12-05 09:53:35 -05002 Copyright 1999-2017 ImageMagick Studio LLC, a non-profit organization
cristy3ed852e2009-09-05 21:47:34 +00003 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
Cristyf19d4142017-04-24 11:34:30 -04008 https://www.imagemagick.org/script/license.php
cristy3ed852e2009-09-05 21:47:34 +00009
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 image distortion methods.
17*/
Cristy83bceaa2016-06-03 20:39:35 -040018#ifndef MAGICKCORE_DISTORT_H
19#define MAGICKCORE_DISTORT_H
cristy3ed852e2009-09-05 21:47:34 +000020
21#if defined(__cplusplus) || defined(c_plusplus)
22extern "C" {
23#endif
24
cristy3ed852e2009-09-05 21:47:34 +000025/*
26 These two enum are linked, with common enumerated values. Both
cristy39052ff2010-01-10 15:38:47 +000027 DistortImages() and SparseColor() often share code to determine functional
28 coefficients for common methods.
cristy3ed852e2009-09-05 21:47:34 +000029
30 Caution should be taken to ensure that only the common methods contain the
31 same enumerated value, while all others remain unique across both
32 enumerations.
33*/
34typedef enum
35{
36 UndefinedDistortion,
37 AffineDistortion,
38 AffineProjectionDistortion,
39 ScaleRotateTranslateDistortion,
40 PerspectiveDistortion,
41 PerspectiveProjectionDistortion,
42 BilinearForwardDistortion,
43 BilinearDistortion = BilinearForwardDistortion,
44 BilinearReverseDistortion,
45 PolynomialDistortion,
46 ArcDistortion,
47 PolarDistortion,
48 DePolarDistortion,
anthonye0d9bbd2011-06-15 01:05:57 +000049 Cylinder2PlaneDistortion,
50 Plane2CylinderDistortion,
cristy3ed852e2009-09-05 21:47:34 +000051 BarrelDistortion,
52 BarrelInverseDistortion,
53 ShepardsDistortion,
anthony2029ddc2011-03-30 12:13:27 +000054 ResizeDistortion,
cristy3ed852e2009-09-05 21:47:34 +000055 SentinelDistortion
dirk827944d2016-02-01 22:34:39 +010056} DistortMethod;
cristy3ed852e2009-09-05 21:47:34 +000057
cristy3ed852e2009-09-05 21:47:34 +000058typedef enum
59{
60 UndefinedColorInterpolate = UndefinedDistortion,
61 BarycentricColorInterpolate = AffineDistortion,
62 BilinearColorInterpolate = BilinearReverseDistortion,
63 PolynomialColorInterpolate = PolynomialDistortion,
64 ShepardsColorInterpolate = ShepardsDistortion,
cristy39052ff2010-01-10 15:38:47 +000065 /*
66 Methods unique to SparseColor().
67 */
anthony09d867c2011-04-26 08:28:41 +000068 VoronoiColorInterpolate = SentinelDistortion,
Eric McConville04bb72a2015-09-24 13:33:45 -050069 InverseColorInterpolate,
70 ManhattanColorInterpolate
cristy3ed852e2009-09-05 21:47:34 +000071} SparseColorMethod;
72
73extern MagickExport Image
cristy987feef2011-11-17 12:24:56 +000074 *AffineTransformImage(const Image *,const AffineMatrix *,ExceptionInfo *),
dirk827944d2016-02-01 22:34:39 +010075 *DistortImage(const Image *,const DistortMethod,const size_t,
cristy3ed852e2009-09-05 21:47:34 +000076 const double *,MagickBooleanType,ExceptionInfo *exception),
anthony2029ddc2011-03-30 12:13:27 +000077 *DistortResizeImage(const Image *,const size_t,const size_t,ExceptionInfo *),
cristy987feef2011-11-17 12:24:56 +000078 *RotateImage(const Image *,const double,ExceptionInfo *),
cristy3884f692011-07-08 18:00:18 +000079 *SparseColorImage(const Image *,const SparseColorMethod,const size_t,
80 const double *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000081
82#if defined(__cplusplus) || defined(c_plusplus)
83}
84#endif
85
86#endif