summaryrefslogtreecommitdiff
path: root/dmagick/c/morphology.d
blob: 4a304955cc24659b5c228814f7049dcd1f407812 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
module dmagick.c.morphology;

import dmagick.c.exception;
import dmagick.c.geometry;
import dmagick.c.image;
import dmagick.c.magickType;
import dmagick.c.magickVersion;

alias ptrdiff_t ssize_t;

extern(C)
{
	mixin(
	{
		string info = "enum KernelInfoType
		{
			UndefinedKernel,    /* equivelent to UnityKernel */";

			static if ( MagickLibVersion >= 0x662 )
			{
				info ~= "UnityKernel,        /* The no-op or 'original image' kernel */";
			}

			info ~= "GaussianKernel,     /* Convolution Kernels, Gaussian Based */";

			static if ( MagickLibVersion >= 0x662 )
			{
				info ~= "DoGKernel,
				         LoGKernel,";
			}

			info ~= "BlurKernel,";

			static if ( MagickLibVersion == 0x662 )
			{
				info ~= "DOBKernel,";
			}

			info ~= "CometKernel,
			         LaplacianKernel,    /* Convolution Kernels, by Name */";

			static if ( MagickLibVersion < 0x662 )
			{
				info ~= "DoGKernel,
				         LoGKernel,
				         RectangleKernel      /* Shape Kernels */,
				         SquareKernel,
				         DiamondKernel,";
			}

			static if ( MagickLibVersion >= 0x662 )
			{
				info ~= "SobelKernel,
				         FreiChenKernel,
				         RobertsKernel,
				         PrewittKernel,
				         CompassKernel,
				         KirschKernel,
				         DiamondKernel,     /* Shape Kernels */
				         SquareKernel,
				         RectangleKernel,";
			}

			static if ( MagickLibVersion >= 0x670 )
			{
				info ~= "OctagonKernel,";
			}

			info ~= "DiskKernel,
			         PlusKernel,";

			static if ( MagickLibVersion >= 0x662 )
			{
				info ~= "CrossKernel,
				         RingKernel,
				         PeaksKernel,      /* Hit And Miss Kernels */
				         EdgesKernel,
				         CornersKernel,";
			}

			static if ( MagickLibVersion < 0x663 )
			{
				info ~= "RidgesKernel";
			}
			static if ( MagickLibVersion >= 0x663 )
			{
				info ~= "ThinDiagonalsKernel,";
			}

			static if ( MagickLibVersion >= 0x662 )
			{
				info ~= "LineEndsKernel,
				         LineJunctionsKernel,";
			}

			static if ( MagickLibVersion >= 0x663 )
			{
				info ~= "RidgesKernel,";
			}

			static if ( MagickLibVersion >= 0x662 )
			{
				info ~= "ConvexHullKernel,
				         SkeletonKernel,";
			}

			info ~= "ChebyshevKernel,    /* Distance Measuring Kernels */
			         ManhattanKernel,
			         EuclideanKernel,
			         UserDefinedKernel,   /* User Specified Kernel Array */";

			static if ( MagickLibVersion >= 0x679 )
			{
				info ~= "BinomialKernel";
			}		
		info ~= "}";

		return info;
	}());

	mixin(
	{
		string method = "enum MorphologyMethod
		{
			UndefinedMorphology,

			/* Convolve / Correlate weighted sums */
			ConvolveMorphology,          /* Weighted Sum with reflected kernel */
			CorrelateMorphology,         /* Weighted Sum using a sliding window */

			/* Low-level Morphology methods */
			ErodeMorphology,             /* Minimum Value in Neighbourhood */
			DilateMorphology,            /* Maximum Value in Neighbourhood */
			ErodeIntensityMorphology,    /* Pixel Pick using GreyScale Erode */
			DilateIntensityMorphology,   /* Pixel Pick using GreyScale Dialate */
			DistanceMorphology,          /* Add Kernel Value, take Minimum */

			/* Second-level Morphology methods */
			OpenMorphology,              /* Dilate then Erode */
			CloseMorphology,             /* Erode then Dilate */
			OpenIntensityMorphology,     /* Pixel Pick using GreyScale Open */
			CloseIntensityMorphology,    /* Pixel Pick using GreyScale Close */";

			static if ( MagickLibVersion >= 0x662 )
			{
				method ~= "SmoothMorphology, /* Open then Close */";
			}

			method ~= "
			/* Difference Morphology methods */
			EdgeInMorphology,            /* Dilate difference from Original */
			EdgeOutMorphology,           /* Erode difference from Original */
			EdgeMorphology,              /* Dilate difference with Erode */
			TopHatMorphology,            /* Close difference from Original */
			BottomHatMorphology,         /* Open difference from Original */

			/* Recursive Morphology methods */
			HitAndMissMorphology,        /* Foreground/Background pattern matching */
			ThinningMorphology,          /* Remove matching pixels from image */
			ThickenMorphology,           /* Add matching pixels from image */

			/* Experimental Morphology methods */
			VoronoiMorphology,           /* distance matte channel copy nearest color */
			IterativeDistanceMorphology  /* Add Kernel Value, take Minimum */
		}";

		return method;
	}());

	struct KernelInfo
	{
		KernelInfoType
			type;

		size_t
			width,
			height;

		ssize_t
			x,
			y;

		double* values;

		double
			minimum,
			maximum,
			negative_range,
			positive_range;

		static if ( MagickLibVersion >= 0x662 )
		{
			double
				angle;

			KernelInfo*
				next;
		}

		size_t
			signature;
	}


	KernelInfo* AcquireKernelInfo(const(char)*);
	KernelInfo* AcquireKernelBuiltIn(const KernelInfoType, const(GeometryInfo)*);

	static if ( MagickLibVersion >= 0x661 )
	{
		KernelInfo* CloneKernelInfo(const(KernelInfo)*);
	}

	KernelInfo* DestroyKernelInfo(KernelInfo*);

	Image* MorphologyImage(const(Image)*, const MorphologyMethod, const ssize_t, const(KernelInfo)*, ExceptionInfo*);
	Image* MorphologyImageChannel(const(Image)*, const ChannelType, const MorphologyMethod, const ssize_t, const(KernelInfo)*, ExceptionInfo*);

	static if ( MagickLibVersion >= 0x662 )
	{
		void ScaleGeometryKernelInfo(KernelInfo*, const(char)*);
	}
	static if ( MagickLibVersion == 0x661 || MagickLibVersion >= 0x691 )
	{
		void ScaleKernelInfo(KernelInfo*, const double, const GeometryFlags);
	}

	void ShowKernelInfo(const(KernelInfo)*);

	static if ( MagickLibVersion >= 0x691 )
	{
		void UnityAddKernelInfo(KernelInfo*, const double);
	}
}