-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmorphology.cpp
More file actions
executable file
·282 lines (247 loc) · 5.75 KB
/
morphology.cpp
File metadata and controls
executable file
·282 lines (247 loc) · 5.75 KB
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#include "stdafx.h"
#include "morphology.h"
void Terode(LPBYTE lpIn,LPBYTE lpOut,int imgWidth,int imgHeight,int *mask)
//二值形态学腐蚀运算,背景为黑色,白色为目标
{
int i,j,k,l;
int lineByte=(imgWidth+3)/4*4;
int dis,dis0,judge;
for(i=0;i<imgHeight;i++)//全图copy
{
for(j=0;j<lineByte;j++)
{
*(lpOut+i*lineByte+j)=*(lpIn+i*lineByte+j);
}
}
for(i=2;i<imgHeight-2;i++)
{
for(j=2;j<imgWidth-2;j++)
{
judge=1;
for(k=-2;k<3;k++)
{
for(l=-2;l<3;l++)
{
if(mask[5*(2+k)+l+2])
{
dis=(i+k)*lineByte+j+l;
if(!*(lpIn+dis))
judge=0; //标志结构元素不匹配
}
}
}
dis0=i*lineByte+j;
if(judge)
*(lpOut+dis0)=255;
else
*(lpOut+dis0)=0;
}
}
}
void Texpand(LPBYTE lpIn,LPBYTE lpOut,int imgWidth,int imgHeight,int *mask)
//二值形态学膨胀,背景为黑色,白色为目标
{
int i,j,k,l;
int lineByte=(imgWidth+3)/4*4;
int dis,tmp;
for(i=0;i<imgHeight;i++)//全图copy
{
for(j=0;j<lineByte;j++)
{
*(lpOut+i*lineByte+j)=*(lpIn+i*lineByte+j);
}
}
for(i=2;i<imgHeight-2;i++)
{
for(j=2;j<imgWidth-2;j++)
{
tmp=*(lpIn+i*lineByte+j);
if(tmp)
{
for(k=-2;k<3;k++)
{
for(l=-2;l<3;l++)
{
if(mask[5*(2+k)+l+2])
{
dis=(i+k)*lineByte+j+l;
*(lpOut+dis)=255;
}
}
}
}
}
}
}
void GrayErosion(LPBYTE lpIn,LPBYTE lpOut,int imgWidth,int imgHeight,int *mask)
//灰度腐蚀运算
{
int i,j,k,l;
int lineByte=(imgWidth+3)/4*4;
int gray,tmp;
unsigned char *lpTmp=new unsigned char [(imgHeight+4)*(lineByte+4)];
for(i=0;i<imgHeight+4;i++)//全图copy,加2像素的灰度为255的亮边
{
for(j=0;j<lineByte+4;j++)
{
if(i<3||i>imgHeight+1||j<3||j>lineByte+1)
*(lpTmp+i*(lineByte+4)+j)=255;
else
*(lpTmp+i*(lineByte+4)+j)=*(lpIn+(i-2)*lineByte+j-2);
}
}
for(i=2;i<imgHeight+2;i++)
{
for(j=2;j<lineByte+2;j++)
{
gray=255;
for(k=-2;k<3;k++)
{
for(l=-2;l<3;l++)
{
if(mask[5*(2+k)+l+2])
{
tmp=*(lpTmp+(i+k)*(lineByte+4)+j+l)-mask[5*(2+k)+l+2];
if(tmp<gray) //找最小值
gray=tmp;
}
}
}
if(gray<0)
*(lpOut+(i-2)*lineByte+j-2)=0;
else
*(lpOut+(i-2)*lineByte+j-2)=gray;
}
}
delete []lpTmp;
}
void GrayDilation(LPBYTE lpIn,LPBYTE lpOut,int imgWidth,int imgHeight,int *mask)
//灰度膨胀运算
{
int i,j,k,l;
int lineByte=(imgWidth+3)/4*4;
int gray,tmp;
unsigned char *lpTmp=new unsigned char [(imgHeight+4)*(lineByte+4)];
for(i=0;i<imgHeight+4;i++)//全图copy,加2像素的灰度为0的黑边
{
for(j=0;j<lineByte+4;j++)
{
if(i<3||i>imgHeight+1||j<3||j>lineByte+1)
*(lpTmp+i*(lineByte+4)+j)=0;
else
*(lpTmp+i*(lineByte+4)+j)=*(lpIn+(i-2)*lineByte+j-2);
}
}
for(i=2;i<imgHeight+2;i++)
{
for(j=2;j<imgWidth+2;j++)
{
gray=0;
for(k=-2;k<3;k++)
{
for(l=-2;l<3;l++)
{
if(mask[5*(2+k)+l+2])
{
tmp=*(lpTmp+(i+k)*(lineByte+4)+j+l)+mask[5*(2+k)+l+2];
if(tmp>gray) //找最大值
gray=tmp;
}
}
}
if(gray>255)
*(lpOut+(i-2)*lineByte+j-2)=255;
else
*(lpOut+(i-2)*lineByte+j-2)=gray;
}
}
delete []lpTmp;
}
void MorphGrad(LPBYTE lpIn,LPBYTE lpOut,int imgWidth,int imgHeight,int *mask)
{
int i,j;
int lineByte=(imgWidth+3)/4*4;
int dis,result;
unsigned char *lpGrad1=new unsigned char [imgHeight*lineByte];
unsigned char *lpGrad2=new unsigned char [imgHeight*lineByte];
//腐蚀运算
GrayErosion((LPBYTE)lpIn,(LPBYTE)lpGrad1,imgWidth,imgHeight,mask);
//膨胀运算
GrayDilation((LPBYTE)lpIn,(LPBYTE)lpGrad2,imgWidth,imgHeight,mask);
for(i=0;i<imgHeight;i++)//计算形态学梯度
{
for(j=0;j<lineByte;j++)
{
dis=i*lineByte+j;
result=*(lpGrad2+dis)-*(lpGrad1+dis);
if(result)
*(lpOut+dis)=result;
else
*(lpOut+dis)=0;
}
}
delete []lpGrad1;
delete []lpGrad2;
}
void TopHatPeak(LPBYTE lpIn,LPBYTE lpOut,int imgWidth,int imgHeight,int *mask)
{
int i,j;
int lineByte=(imgWidth+3)/4*4;
int dis,result;
unsigned char *lpGrad=new unsigned char [imgHeight*lineByte];
//腐蚀运算
GrayErosion((LPBYTE)lpIn,(LPBYTE)lpGrad,imgWidth,imgHeight,mask);
GrayDilation((LPBYTE)lpGrad,(LPBYTE)lpOut,imgWidth,imgHeight,mask);
for(i=0;i<imgHeight;i++)//计算波峰
{
for(j=0;j<lineByte;j++)
{
dis=i*lineByte+j;
*(lpOut+dis)=*(lpIn+dis)-*(lpOut+dis);
}
}
delete[]lpGrad;
}
void TopHatVally(LPBYTE lpIn,LPBYTE lpOut,int imgWidth,int imgHeight,int *mask)
{
int i,j;
int lineByte=(imgWidth+3)/4*4;
int dis,result;
unsigned char *lpGrad=new unsigned char [imgHeight*lineByte];
//腐蚀运算
GrayDilation((LPBYTE)lpIn,(LPBYTE)lpGrad,imgWidth,imgHeight,mask);
GrayErosion((LPBYTE)lpGrad,(LPBYTE)lpOut,imgWidth,imgHeight,mask);
for(i=0;i<imgHeight;i++)//计算波峰
{
for(j=0;j<lineByte;j++)
{
dis=i*lineByte+j;
*(lpOut+dis)=*(lpOut+dis)-*(lpIn+dis);
}
}
delete[]lpGrad;
}
void TopHatPeakVally(LPBYTE lpIn,LPBYTE lpOut,int imgWidth,int imgHeight,int *mask)
{
int i,j;
int lineByte=(imgWidth+3)/4*4;
int dis,result;
unsigned char *lpGrad1=new unsigned char [imgHeight*lineByte];
unsigned char *lpGrad2=new unsigned char [imgHeight*lineByte];
//闭运算
GrayDilation((LPBYTE)lpIn,(LPBYTE)lpGrad1,imgWidth,imgHeight,mask);
GrayErosion((LPBYTE)lpGrad1,(LPBYTE)lpOut,imgWidth,imgHeight,mask);
//开运算
GrayErosion((LPBYTE)lpIn,(LPBYTE)lpGrad1,imgWidth,imgHeight,mask);
GrayDilation((LPBYTE)lpGrad1,(LPBYTE)lpGrad2,imgWidth,imgHeight,mask);
for(i=0;i<imgHeight;i++)//计算波峰
{
for(j=0;j<lineByte;j++)
{
dis=i*lineByte+j;
*(lpOut+dis)=*(lpOut+dis)-*(lpGrad2+dis);
}
}
delete[]lpGrad1;
delete[]lpGrad2;
}