-
Notifications
You must be signed in to change notification settings - Fork 4
/
Morph.cpp
459 lines (353 loc) · 10.7 KB
/
Morph.cpp
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
// Morph.cpp: implementation of the CMorphology class.
//
//////////////////////////////////////////////////////////////////////
#include "Morph.h"
#include "Pixel.h"
#include "Util.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CMorph::CMorph()
{
}
CMorph::~CMorph()
{
}
// 모폴로지 스무딩 연산
cv::Mat CMorph::GS_smoothing(cv::Mat src_image, int type, int method)
{
CPixel cPixel;
if (src_image.channels() != 1) return cv::Mat();
// 열림 연산 수행
cv::Mat opening_image = GS_opening(src_image, type, method);
// 닫힘 연산 수행
cv::Mat dst_image = GS_closing(opening_image, type, method);
// 할당한 메모리 해제
opening_image.release();
return dst_image;
}
// 모폴로지 그래디언트 연산
cv::Mat CMorph::GS_gradient(cv::Mat src_image, int type, int method)
{
CPixel cPixel;
CUtil cUtil;
cv::Mat tmp_image;
// 초기화
cv::Mat dst_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
if (dst_image.channels() != 1) return dst_image;
cv::Mat dilate_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
// 이진 영상으로 변환
if (method == 0)
{
double threshold = 255.0;
double max_value = 255.0;
int threshold_type = cv::THRESH_OTSU;
// otsu 알고리즘을 이용한 이진 영상 변환
cv::Mat binary_image = cPixel.GS_threshold(src_image, threshold,
max_value, threshold_type);
tmp_image = binary_image.clone();
binary_image.release();
}
// 명암도 영상이면 복사
else if (method == 1)
{
tmp_image = src_image.clone();
}
// 구조화 요소 생성
cv::Mat kernel = cv::getStructuringElement(type, cv::Size(3, 3), cv::Point(1, 1));
// 모폴로지 그래디언트 연산
cv::morphologyEx(tmp_image, dst_image, cv::MORPH_GRADIENT, kernel);
/*
// cvMorphologyEx() 함수를 사용하지 않고 직접 구현.
// 팽창 연산 수행
IplImage *dilate_image = GS_dilate( src_image, type, method );
// 침식 연산 수행
IplImage *erode_image = GS_erode( src_image, type, method );
// 팽창 연산과 침식 연산 수행 결과를 차 연산
IplImage *dst_image = cPixel.GS_subtract_image( dilate_image, erode_image );
// 할당한 메모리 해제
cvReleaseImage( &erode_image );
*/
// 할당한 메모리 해제
dilate_image.release();
tmp_image.release();
kernel.release();
return dst_image;
}
// 웰 연산 후 명암대비 증가
cv::Mat CMorph::GS_well_contrast(cv::Mat src_image, int type)
{
CPixel cPixel;
CUtil cUtil;
int i, j, ret_var;
double var, tophat_var, well_var;
// 초기화
int height = src_image.rows;
int width = src_image.cols;
cv::Mat dst_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
if (dst_image.channels() != 1) return dst_image;
// 탑-햇 연산
cv::Mat tophat_image = GS_topHat(src_image, type);
// 웰 연산
cv::Mat well_image = GS_well(src_image, type);
for (i = 0; i<height; i++)
{
for (j = 0; j<width; j++)
{
var = src_image.at<float>(i, j); // float? uchar? lets figure it out.
tophat_var = tophat_image.at<float>(i, j);// float? uchar? lets figure it out.
well_var = well_image.at<float>(i, j);// float? uchar? lets figure it out.
ret_var = cUtil.GS_clamping((var + tophat_var) - well_var);
//cvSetReal2D(dst_image, i, j, ret_var);
dst_image.at<float>(i, j) = ret_var;
}
}
// 할당한 메모리 해제
tophat_image.release();
return dst_image;
}
// 웰 연산
cv::Mat CMorph::GS_well(cv::Mat src_image, int type)
{
CPixel cPixel;
CUtil cUtil;
// 초기화
cv::Mat dst_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
if (dst_image.channels() != 1) return dst_image;
cv::Mat closing_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
// 구조화 요소 생성
cv::Mat kernel = cv::getStructuringElement(type, cv::Size(3, 3), cv::Point(1, 1));
// 웰 연산
cv::morphologyEx(src_image, dst_image, cv::MORPH_BLACKHAT, kernel);
/*
// cvMorphologyEx() 함수를 사용하지 않고 직접 구현.
// 원 명암도 영상에 대한 닫힘 연산 수행
IplImage *closing_image = GS_closing( src_image, type, 1 );
// 초기화
IplImage *dst_image = cUtil.GS_createImage( cvGetSize(src_image), src_image->nChannels );
// 원 명암도 영상과 닫힘 연산 수행 영상을 차 연산
double ret_var;
for(int i=0; i<src_image->height; i++)
{
for(int j=0; j<src_image->width; j++)
{
// 차 연산
ret_var = cvGetReal2D( src_image, i, j ) - cvGetReal2D( closing_image, i, j );
// 절대값 구한 후 클램핑
ret_var = cUtil.GS_clamping( fabs(ret_var) );
cvSetReal2D( dst_image, i, j, ret_var );
}
}
*/
// 할당한 메모리 해제
closing_image.release();
kernel.release();
return dst_image;
}
// 탑-햇 연산 후 명암대비 증가
cv::Mat CMorph::GS_topHat_contrast(cv::Mat src_image, int type, double contrast, int brightness)
{
CPixel cPixel;
if (src_image.channels() != 1) return cv::Mat(); // NULL을 어떻게 return 할것인가
// 탑-햇 연산
cv::Mat tophat_image = GS_topHat(src_image, type);
// 밝기 조절 + 명암대비 조절
cv::Mat dst_image
= cPixel.GS_LUT_basic_contrast_brightness(tophat_image, contrast, brightness);
// 할당한 메모리 해제
tophat_image.release();
return dst_image;
}
// 탑-햇 연산
cv::Mat CMorph::GS_topHat(cv::Mat src_image, int type)
{
CUtil cUtil;
// 초기화
cv::Mat dst_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
if (dst_image.channels()!= 1) return dst_image;
cv::Mat opening_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
// 구조화 요소 생성
// cv::Mat kernel = cv::getStructuringElement(type, cv::Size(3, 3), cv::Point(1, 1));
cv::Mat kernel = cv::getStructuringElement(type, cv::Size(11, 11), cv::Point());
// 탑-햇 연산
cv::morphologyEx(src_image, dst_image, cv::MORPH_TOPHAT, kernel);
/*
// cvMorphologyEx() 함수를 사용하지 않고 직접 구현.
CPixel cPixel;
// 원 명암도 영상에 대한 열림 연산 수행
IplImage *opening_image = GS_opening( src_image, type, 1 );
// 원 명암도 영상과 열림 연산 수행 영상을 차 연산
IplImage *dst_image = cPixel.GS_subtract_image( src_image, opening_image );
*/
// 할당한 메모리 해제
opening_image.release();
kernel.release();
return dst_image;
}
// 닫힘 연산
cv::Mat CMorph::GS_closing(cv::Mat src_image, int type, int method)
{
CPixel cPixel;
CUtil cUtil;
cv::Mat tmp_image;
// 초기화
cv::Mat dst_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
if (dst_image.channels() != 1) return dst_image;
cv::Mat dilate_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
// 이진 영상으로 변환
if (method == 0)
{
double threshold = 255.0;
double max_value = 255.0;
int threshold_type = cv::THRESH_OTSU;
// otsu 알고리즘을 이용한 이진 영상 변환
cv::Mat binary_image = cPixel.GS_threshold(src_image, threshold,
max_value, threshold_type);
tmp_image = binary_image.clone();
binary_image.release();
}
// 명암도 영상이면 복사
else if (method == 1)
{
tmp_image = src_image.clone();
}
// 구조화 요소 생성
/* Type = cv::Morphshape
MORPH_RECT / MORPH_ELLIPSE / MORPH_CROSS */
cv::Mat kernel = cv::getStructuringElement(type, cv::Size(3, 3), cv::Point(1, 1));
// 닫힘 연산 src dst temp element operation
cv::morphologyEx(tmp_image, dst_image, cv::MORPH_CLOSE, kernel);
/*
// cvMorphologyEx() 함수를 사용하지 않고 직접 구현.
// 팽창 연산
cvDilate( tmp_image, dilate_image, element, 1 );
// 침식 연산
cvErode( dilate_image, dst_image, element, 1 );
*/
// 할당한 메모리 해제
dilate_image.release();
tmp_image.release();
kernel.release();
return dst_image;
}
// 열림 연산
cv::Mat CMorph::GS_opening(cv::Mat src_image, int type, int method)
{
CPixel cPixel;
CUtil cUtil;
cv::Mat tmp_image;
// 초기화
cv::Mat dst_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
if (dst_image.channels() != 1) return dst_image;
cv::Mat erode_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
// 이진 영상으로 변환
if (method == 0)
{
double threshold = 255.0;
double max_value = 255.0;
int threshold_type = cv::THRESH_OTSU;
// otsu 알고리즘을 이용한 이진 영상 변환
cv::Mat binary_image = cPixel.GS_threshold(src_image, threshold,
max_value, threshold_type);
tmp_image = binary_image.clone();
binary_image.release();
}
// 명암도 영상이면 복사
else if (method == 1)
{
tmp_image = src_image.clone();
}
// 구조화 요소 생성
cv::Mat kernel = cv::getStructuringElement(type, cv::Size(3, 3), cv::Point(1, 1));
// 열림 연산 morphologyEX(source, destination, operation, kernel)
cv::morphologyEx(tmp_image, dst_image, cv::MORPH_OPEN, kernel);
/*
// cvMorphologyEx() 함수를 사용하지 않고 직접 구현.
// 침식 연산
cvErode( tmp_image, erode_image, element );
// 팽창 연산
cvDilate( erode_image, dst_image, element );
*/
// 할당한 메모리 해제
erode_image.release();
tmp_image.release();
kernel.release();
return dst_image;
}
// 팽창 연산
cv::Mat CMorph::GS_dilate(cv::Mat src_image, int type, int method)
{
CPixel cPixel;
CUtil cUtil;
cv::Mat tmp_image;
// 초기화
cv::Mat dst_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
if (dst_image.channels() != 1) return dst_image;
// 이진 영상으로 변환
if (method == 0)
{
double threshold = 255.0;
double max_value = 255.0;
int threshold_type = cv::THRESH_OTSU;
// otsu 알고리즘을 이용한 이진 영상 변환
cv::Mat binary_image = cPixel.GS_threshold(src_image, threshold,
max_value, threshold_type);
// 이진 영상 변환 결과 복사
tmp_image = binary_image.clone();
binary_image.release();
}
// 명암도 영상이면 복사
else if (method == 1)
{
tmp_image = src_image.clone();
}
// 구조화 요소 생성
cv::Mat kernel = cv::getStructuringElement(type, cv::Size(3, 3), cv::Point(1, 1));
// 팽창 연산
cv::dilate(tmp_image, dst_image, kernel);
// 할당한 메모리 해제
tmp_image.release();
kernel.release();
return dst_image;
}
// 침식 연산
cv::Mat CMorph::GS_erode(cv::Mat src_image, int type, int method)
{
CPixel cPixel;
CUtil cUtil;
cv::Mat tmp_image;
// 초기화
cv::Mat dst_image = cUtil.GS_createImage(src_image.size(), src_image.channels());
if (dst_image.channels() != 1) return dst_image;
// 이진 영상으로 변환
if (method == 0)
{
double threshold = 255.0;
double max_value = 255.0;
int threshold_type = cv::THRESH_OTSU;
// otsu 알고리즘을 이용한 이진 영상 변환
cv::Mat binary_image = cPixel.GS_threshold(src_image, threshold,
max_value, threshold_type);
// 이진 영상 변환 결과 복사
tmp_image = binary_image.clone();
binary_image.release();
}
// 명암도 영상이면 복사
else if (method == 1)
{
tmp_image = src_image.clone();
}
// 구조화 요소 생성
cv::Mat kernel = cv::getStructuringElement(type, cv::Size(3, 3), cv::Point(1, 1));
// 침식 연산
cv::erode(tmp_image, dst_image, kernel);
// 할당한 메모리 해제
tmp_image.release();
kernel.release();
return dst_image;
}