-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocate.cpp
467 lines (422 loc) · 9.1 KB
/
locate.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
460
461
462
463
464
465
466
467
#include<iostream>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/core/utility.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/imgcodecs.hpp"
#include "opencv2/highgui.hpp"
#include <vector>
#include <iostream>
#include <QMessageBox>
using namespace cv;
using namespace std;
void show(Mat img);
Point centerpoint(vector<Point> input);
void pointinsert(vector<Point>* result, Point input, int ref_lenth);
int linetest(Point a, Point b, Mat source);
void lrlu(Point a, Point b, Point c, Point d, Point* r);
Point closeto(vector<Point>index, Point a);
vector<Point> sortpoint(vector<Point> input);
vector<Point2f> topoint2f(vector<Point> input);
vector<Point> topoint(vector<Point2f> input);
vector<vector<Point>> findsymbal(Mat source);
Mat picreduce(Mat source, int width, int height, int type);
Mat color_balance(Mat input);
Mat kernal = getStructuringElement(MORPH_RECT, Size(2, 2));
int tag = 0;
Mat locate(Mat pic) {
Mat source = pic;
if ((source.size()).width > 1000)
{
source = picreduce(source, (source.size()).width, (source.size()).height, 1);
}
if ((source.size()).height > 1000)
{
source = picreduce(source, (source.size()).width, (source.size()).height, 0);
}
if (tag)
{
system("del temp.jpg");
}
int ref_lenth = (source.size()).width * (source.size()).height *0.005;
Mat temp;
cvtColor(source, temp, CV_BGR2GRAY);
GaussianBlur(temp, temp, Size(3, 3), 3, 3);
morphologyEx(temp, temp, MORPH_CLOSE, kernal);
morphologyEx(temp, temp, MORPH_OPEN, kernal);
Canny(temp, temp, 30, 40);
vector<vector<Point>>result = findsymbal(temp);
Mat cts = source.clone();
vector<Point> centerpoints;
for (int i = 0; i < result.size(); i++)
{
pointinsert(¢erpoints, centerpoint(result[i]), ref_lenth);
}
int plenth = centerpoints.size();
if (centerpoints.size() != 4)
{
QMessageBox msgBox;
msgBox.setText("error: fail to locate");
msgBox.exec();
Mat result;
return result;
}
vector<Point> receivepoints = sortpoint(centerpoints);
Point2f found_corners[4];
for (int i = 0; i < 4; i++)
{
found_corners[i] = receivepoints[i];
}
Point2f stand_corners[4];
stand_corners[0] = Point(0, 0);
stand_corners[1] = Point(0, 560);
stand_corners[2] = Point(560, 0);
stand_corners[3] = Point(560, 560);
Mat transform = getPerspectiveTransform(found_corners, stand_corners);
Mat converted;
Size targetsize(560, 560);
warpPerspective(cts, converted, transform, targetsize);
vector<Point2f> converttemp;
vector<Point2f> temppoints = topoint2f(centerpoints);
perspectiveTransform(temppoints, converttemp, transform);
centerpoints = topoint(converttemp);
cts = color_balance(converted.clone());
vector<vector<Point>> targetset;
vector<Point> temp0;
for (int i = 0; i < plenth; i++)
{
for (int j = i + 1; j < plenth; j++)
{
Point vector = centerpoints[i] - centerpoints[j];
int temp = vector.x;
vector.x = vector.y;
vector.y = -temp;
Point newpoint[4];
newpoint[0] = centerpoints[i] + vector * 3 / 28;
newpoint[1] = centerpoints[i] - vector * 3 / 28;
newpoint[2] = centerpoints[j] + vector * 3 / 28;
newpoint[3] = centerpoints[j] - vector * 3 / 28;
if (linetest(newpoint[0], newpoint[2], cts) == 1)
{
temp0.insert(temp0.end(), newpoint[0]);
temp0.insert(temp0.end(), newpoint[2]);
targetset.insert(targetset.end(), temp0);
temp0.clear();
}
if (linetest(newpoint[1], newpoint[3], cts) == 1)
{
temp0.insert(temp0.end(), newpoint[1]);
temp0.insert(temp0.end(), newpoint[3]);
targetset.insert(targetset.end(), temp0);
temp0.clear();
}
}
}
if (targetset.size() < 2)
{
QMessageBox msgBox;
msgBox.setText("error: not enough tags");
msgBox.exec();
Mat result;
return result;
}
Point lru[3];
lrlu(closeto(centerpoints, targetset[0][0]), closeto(centerpoints, targetset[0][1]), closeto(centerpoints, targetset[1][0]), closeto(centerpoints, targetset[1][1]), lru);
Point h_axis = lru[0] - lru[2];
Point v_axis = lru[0] - lru[1];
Point frame[4];
frame[0] = lru[0];
frame[1] = lru[2];
frame[2] = lru[1];
frame[3] = frame[1] - v_axis;
cts = converted.clone();
Point2f rotate[4];
for (int i = 0; i < 4; i++)
{
rotate[i] = frame[i];
}
Mat transform2 = getPerspectiveTransform(rotate, stand_corners);
warpPerspective(cts, cts, transform2, targetsize);
return cts;
}
void show(Mat img)
{
imshow("demo", img);
waitKey(0);
}
Point centerpoint(vector<Point> input)
{
Moments temp;
temp = moments(input);
int x_center = temp.m10 / temp.m00;
int y_center = temp.m01 / temp.m00;
Point result(x_center, y_center);
return result;
}
int pointcmp(Point a, Point b, int ref_lenth)
{
Point c = a - b;
int result = c.dot(c);
if (result < ref_lenth)
{
return 1;
}
else
{
return 0;
}
}
void pointinsert(vector<Point>* result, Point input, int ref_lenth)
{
int lenth = result->size();
for (int i = 0; i < lenth; i++)
{
if (pointcmp((*result)[i], input, ref_lenth))
{
return;
}
}
result->insert(result->end(), input);
}
int linetest(Point a, Point b, Mat source)
{
if (a.x < 0 || a.x>560 || a.y < 0 || a.y>560 || b.x < 0 || b.x>560 || b.y < 0 || b.y>560)
{
return 0;
}
Point a_ori = a;
Mat cts = source.clone();
Point vector = b - a;
int result[600] = { 0 };
int lenth = 0;
for (int i = 0; (b-a).dot(vector)>0 && i<600; i++)
{
a = a + vector / 200;
lenth++;
uchar test = source.at<uchar>(a);
int j = int(test);
if (j > 200)
{
result[i] = 1;
}
else
{
result[i] = 0;
}
}
int count = 0;
int times = 0;
for (int i = 0; i < 600 - 1; i++)
{
if (result[i] == result[i + 1])
{
count++;
}
else
{
if (count >= lenth/28 - 3 && count <= lenth / 28 + 3)
{
times++;
}
count = 0;
}
}
if (times >= 15)
{
return 1;
}
else
{
return 0;
}
}
void lrlu(Point a, Point b, Point c, Point d, Point* r)
{
Point lu;
Point ll;
Point ru;
if (a == c)
{
Point j1 = a - b;
Point j2 = a - d;
lu = a;
if (j1.cross(j2) <0)
{
ru = b;
ll = d;
}
else
{
ll = b;
ru = d;
}
}
else if (a == d)
{
Point j1 = a - b;
Point j2 = a - c;
lu = a;
if (j1.cross(j2) < 0)
{
ru = b;
ll = c;
}
else
{
ll = b;
ru = c;
}
}
else if (b == c)
{
Point j1 = b - a;
Point j2 = b - d;
lu = b;
if (j1.cross(j2) < 0)
{
ru = a;
ll = d;
}
else
{
ll = a;
ru = d;
}
}
else if(b == d)
{
Point j1 = b - a;
Point j2 = b - c;
lu = b;
if (j1.cross(j2) < 0)
{
ru = a;
ll = c;
}
else
{
ll = a;
ru = c;
}
}
r[0] = lu;
r[1] = ll;
r[2] = ru;
}
Point closeto(vector<Point>index, Point a)
{
int lenth = index.size();
Point result;
int dis = INT_MAX;
for (int i = 0; i < lenth; i++)
{
int temp = (a - index[i]).dot(a - index[i]);
if (temp < dis)
{
result = index[i];
dis = temp;
}
}
return result;
}
vector<Point> sortpoint(vector<Point> input)
{
vector<Point> tempinput = input;
vector<Point> result;
int minlenth = 0;
int order = 0;
int lenth = 0;
for (int i = 0; i < 4; i++)
{
minlenth = INT_MAX;
order = 0;
for (int j = 0; j < tempinput.size(); j++)
{
lenth = tempinput[j].x * tempinput[j].x + tempinput[j].y * tempinput[j].y;
if (lenth < minlenth)
{
minlenth = lenth;
order = j;
}
}
result.insert(result.end(), tempinput[order]);
vector<Point>::iterator k = tempinput.begin() + order;
tempinput.erase(k);
}
Point vector1 = result[1] - result[0];
Point vector2 = result[2] - result[0];
if (vector1.cross(vector2) > 0)
{
Point temp = result[1];
result[1] = result[2];
result[2] = temp;
}
return result;
}
vector<Point2f> topoint2f(vector<Point> input)
{
vector<Point2f> result;
for (int i = 0; i < 4; i++)
{
result.insert(result.end(), (Point2f)input[i]);
}
return result;
}
vector<Point> topoint(vector<Point2f> input)
{
vector<Point> result;
for (int i = 0; i < 4; i++)
{
result.insert(result.end(), (Point)input[i]);
}
return result;
}
vector<vector<Point>> findsymbal(Mat source)
{
vector<vector<Point>> contours(2500);
vector<Vec4i> hierarchy(2500);
findContours(source, contours, hierarchy, RETR_TREE, CHAIN_APPROX_TC89_KCOS);
int lenth = contours.size();
vector<vector<Point>> result;
for (int i = 0; i < lenth; i++)
{
int level = 0;
int tempptr = i;
while (hierarchy[tempptr][3] != -1)
{
tempptr = hierarchy[tempptr][3];
level++;
if (level == 4)
{
break;
}
}
if (level >= 4)
{
result.insert(result.end(), contours[tempptr]);
}
}
return result;
}
Mat picreduce(Mat source, int width, int height, int type)
{
Mat result;
Point2f origin[4];
Point2f aim[4];
int multi = type ? width / 1000 : height / 1000;
Size targetsize(int(width / multi), int(height / multi));
resize(source, result, targetsize, 0, 0, INTER_AREA);
imwrite("temp.jpg", result);
result = imread("temp.jpg");
tag = 1;
return result;
}
Mat color_balance(Mat input)
{
Mat result;
GaussianBlur(input, result, Size(3, 3), 11, 11);
cvtColor(result, result, CV_BGR2GRAY);
adaptiveThreshold(result, result, 255, CV_ADAPTIVE_THRESH_MEAN_C, CV_THRESH_BINARY, 31, 0);
morphologyEx(result, result, MORPH_CLOSE, kernal);
return result;
}