-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangeDetectionLib.h
executable file
·511 lines (429 loc) · 17.1 KB
/
changeDetectionLib.h
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
#pragma once // Direttiva di ottimizzazione per #ifndef _CHANGEDETECTIONLIB_H ...
#ifndef _CHANGEDETECTIONLIB_H
#define _CHANGEDETECTIONLIB_H
#include "cv.h"
#include "myString.h"
//----------------------------------------------------------------------------
// Definizione Costanti
//----------------------------------------------------------------------------
#define PI 3.14159265358979323846
// Binarizzazione
#define BACKGROUND 0
#define FOREGROUND 255
// Object Recognition
#define MAX_NUM_OBJECTS_IN_SCENE 15
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Definizione Macro
//----------------------------------------------------------------------------
#define AREA(img, lbl) momento((img), 0, 0, 0, 0, (lbl))
#define I_BAR_COORD(img, lbl) momento((img), 1, 0, 0, 0, (lbl)) / AREA((img), (lbl))
#define J_BAR_COORD(img, lbl) momento((img), 0, 1, 0, 0, (lbl)) / AREA((img), (lbl))
#define I_MOMENT_OF_INERTIA(img, lbl) momento((img), 2, 0, 0, 0, (lbl))
#define J_MOMENT_OF_INERTIA(img, lbl) momento((img), 0, 2, 0, 0, (lbl))
#define DEVIATION_MOMENT(img, lbl) momento((img), 1, 1, 0, 0, (lbl))
/* Da questo potrei poi definire gli inviarianti di Hu, ma per ora non sono necessari.
Sarebbe meglio dovrebbero ottimizzare i calcoli in virgola mobile...*/
#define V(img, lbl, m, n) momento((img), (m), (n), I_BAR_COORD(img, lbl), J_BAR_COORD(img, lbl), (lbl)) / pow((double) AREA((img), (lbl)), (double)(((m)+(n))/2) + 1.0)
/* Invarianti di Hu */
#define H1(img, lbl) V((img), (lbl), 2,0) + V((img), (lbl), 0, 2)
/* Ecc. ecc.*/
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Definizione Tipi di Dato
//----------------------------------------------------------------------------
typedef struct {
unsigned char id;
STRING classe;
int area;
int perimetro;
double compattezza;
double haralick;
double h1;
} OBJECT_DESC;
typedef struct {
OBJECT_DESC* objects [MAX_NUM_OBJECTS_IN_SCENE];
int length;
} OBJECTS_LIST;
// Puntatore alla funzione di valutazione di un oggetto in base
// ai suoi descrittori calcolati.
typedef STRING* (*evalFunc) (OBJECT_DESC*);
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// Prototipi Funzioni
//----------------------------------------------------------------------------
void invertBinary (IplImage* src, IplImage* dest);
// long longPow (long base, long exp); // Serve solo internamente alla libreria
// Segmentazione e Riconoscimento
int segmentation (IplImage* img);
OBJECTS_LIST* objectRecognition (IplImage* src, int numLabel, evalFunc f);
void areaOpening (IplImage* src, IplImage* dest, int numLabel, int soglia);
void findContours(IplImage* src, IplImage* dest);
void findFalseObjects(IplImage* img, IplImage* edges, OBJECTS_LIST* objects);
void deleteObjectsList (OBJECTS_LIST* list);
void binarizeSegmentedImage (IplImage* img);
// Calcolo dei descrittori degli oggetti
long momento (IplImage* src, int ordI, int ordJ, int bCoordI, int bCoordJ, int numLabel);
int findAreaDesc (IplImage* src, int numLabel);
int findPerimeterDesc (IplImage* src, int numLabel);
double findCompactnessDesc (int area, int perimetro);
double findHaralickDesc (IplImage* src, int numLabel);
//----------------------------------------------------------------------------
//****************************************************************************
// IMPLEMENTAZIONE
// (da spostare in un file c o cpp separato)
//****************************************************************************
long longPow (long base, long exp) {
if (exp == 0) return 1;
return base * longPow(base, exp - 1);
}
void deleteObjectsList (OBJECTS_LIST* list){
for (int i = 0; i < list->length; i++){
strDelete(&(list->objects[i]->classe));
free(list->objects[i]);
}
free(list);
}
void invertBinary (IplImage* src, IplImage* dest) {
unsigned char* srcData = (unsigned char*) src->imageData;
unsigned char* imgData = (unsigned char*) dest->imageData;
int h = src->height; int w = src->width; int ws = src->widthStep;
for (int i = 0; i < h; i++)
for (int j = 0; j < w; j++)
imgData[i * ws + j] = FOREGROUND - srcData[i * ws + j];
}
//----------------------------------------------------------------------------
// CALCOLO DEI DESCRITTORI
//----------------------------------------------------------------------------
long momento (IplImage* src, int ordI, int ordJ, int bCoordI, int bCoordJ, int numLabel){
unsigned char* srcData = (unsigned char*) src->imageData;
int h = src->height; int w = src->width; int ws = src->widthStep;
long momento = 0;
for (int i = 0; i < h; i++)
for (int j = 0; j < w; j++)
if (srcData[i * ws + j] == numLabel)
momento += longPow(i - bCoordI, ordI) *
longPow(j - bCoordJ, ordJ);
return momento;
}
int findAreaDesc (IplImage* src, int numLabel) {
unsigned char* srcData = (unsigned char*) src->imageData;
int h = src->height; int w = src->width; int ws = src->widthStep;
int area = 0;
for (int i = 0; i < h; i++)
for (int j = 0; j < w; j++)
if (srcData[i * ws + j] == numLabel) area++;
return area;
}
int findPerimeterDesc (IplImage* src, int numLabel) {
IplImage* temp = cvCreateImage(cvGetSize(src), IPL_DEPTH_8U, 1);
unsigned char* srcData = (unsigned char*) src->imageData;
unsigned char* tempData = (unsigned char*) temp->imageData;
int h = src->height; int w = src->width; int ws = src->widthStep;
double perimetro = 0.0;
int i, j; int flag = 0;
for (i = 0; i < h; i++)
for (j = 0; j < w; j++)
tempData[i * ws + j] = BACKGROUND;
// Estrazione curva di contorno
for (i = 0; i < h; i++)
for (j = 0; j < w; j++)
if (srcData[i * ws + j] == numLabel)
if (srcData[(i - 1) * ws + j] == numLabel &&
srcData[(i + 1) * ws + j] == numLabel &&
srcData[i * ws + (j - 1)] == numLabel &&
srcData[i * ws + (j + 1)] == numLabel)
tempData[i * ws + j] = BACKGROUND;
else tempData[i * ws + j] = FOREGROUND;
// Trovo il primo punto da analizzare
for (i = 0; i < h; i++){
for (j = 0; j < w; j++) if (tempData[i * ws + j] == FOREGROUND) { flag = 1; break; }
if (flag == 1) break;
}
// Inseguimento del contorno...
while (1) {
//flag = 0;
/* ATTENZIONE alla disposizione degli IF:
*
* le nelle curve 8 connesse controllare prima gli spostamenti
* orizzontali e verticali, dopodiché quelli diagonali; altrimenti
* c'è il rischio di terminare l'analisi prima del dovuto.
*/
if (i > 0 && tempData[(i - 1) * ws + j] == FOREGROUND){
perimetro += 1.0;
i = i - 1;
tempData[i * ws + j] = BACKGROUND;
continue;
}
else if(i < h - 1 && tempData[(i + 1) * ws + j] == FOREGROUND){
perimetro += 1.0;
i = i + 1;
tempData[i * ws + j] = BACKGROUND;
continue;
}
else if(j < w - 1 && tempData[i * ws + (j + 1)] == FOREGROUND){
perimetro += 1.0;
j = j + 1;
tempData[i * ws + j] = BACKGROUND;
continue;
}
else if(j > 0 && tempData[i * ws + (j - 1)] == FOREGROUND){
perimetro += 1.0;
j = j - 1;
tempData[i * ws + j] = BACKGROUND;
continue;
}
else if(i > 0 && j > 0 && tempData[(i - 1) * ws + (j - 1)] == FOREGROUND){
perimetro += sqrt(2.0);
i = i - 1;
j = j - 1;
tempData[i * ws + j] = BACKGROUND;
continue;
}
else if(i > 0 && j < w - 1 && tempData[(i - 1) * ws + (j + 1)] == FOREGROUND){
perimetro += sqrt(2.0);
i = i - 1;
j = j + 1;
tempData[i * ws + j] = BACKGROUND;
continue;
}
else if(i < h - 1 && j > 0 && tempData[(i + 1) * ws + (j - 1)] == FOREGROUND){
perimetro += sqrt(2.0);
i = i + 1;
j = j - 1;
tempData[i * ws + j] = BACKGROUND;
continue;
}
else if(i < h - 1 && j < w - 1 && tempData[(i + 1) * ws + (j + 1)] == FOREGROUND){
perimetro += sqrt(2.0);
i = i + 1;
j = j + 1;
tempData[i * ws + j] = BACKGROUND;
continue;
}
break;
}
cvReleaseImage(&temp);
return ((int) perimetro);
}
double findCompactnessDesc (int area, int perimetro){
return (double) 4.0 * PI * area / longPow(perimetro, 2);
}
// -- findHaralickDesc: --
// Il descrittore non è quello presentato sulle slide (ovvero
// media fratto varianza), ma è l'inverso: varianza fratto media.
// Questo perché il cerchio dovrebbe avere varianza nulla ed, in
// quel caso, si avrebbe una divisione per zero.
double findHaralickDesc (IplImage* src, int numLabel){
unsigned char* srcData = (unsigned char*) src->imageData;
int h = src->height; int w = src->width; int ws = src->widthStep;
int ib = I_BAR_COORD(src, numLabel);
int jb = J_BAR_COORD(src, numLabel);
int area = findAreaDesc(src, numLabel);
double media = 0.0;
for (int i = 0; i < h; i++)
for (int j = 0; j < w; j++)
if (srcData[i * ws + j] == numLabel)
media += sqrt((double) longPow(i - ib, 2) + longPow(j - jb, 2));
media /= area;
double var = 0.0;
for (int i = 0; i < h; i++)
for (int j = 0; j < w; j++)
if (srcData[i * ws + j] == numLabel)
var += pow(sqrt((double) longPow(i - ib, 2) + longPow(j - jb, 2)) - media, 2.0);
var /= area;
return var / media;
}
//----------------------------------------------------------------------------
void binarizeSegmentedImage (IplImage* img){
unsigned char* imgData = (unsigned char*) img->imageData;
int h = img->height; int w = img->width; int ws = img->widthStep;
for(int j = 0; j < h; j++)
for(int i = 0; i < w; i++)
if (imgData[j * ws + i] != BACKGROUND)
imgData[j * ws + i] = FOREGROUND;
}
int segmentation (IplImage* img) {
unsigned char* imgData = (unsigned char*) img->imageData;
int h = img->height; int w = img->width; int ws = img->widthStep;
unsigned char equiv [256][256];
unsigned char LUT [256];
// Inizializzazione LUT e matrice delle equivalenze
for (int i = 0; i < 256; i++) {
LUT[i] = i;
for (int j = 0; j < 256; j++)
if (i != j) equiv[i][j] = 0;
else equiv[i][j] = 1;
}
// Inizializzazione a BACKGROUND dei bordi superiore,
// sinistro, destro e inferiore dell'immagine...
for (int i = 0; i < h; i++) {
imgData[i * ws] = BACKGROUND;
imgData[i * ws + (w - 1)] = BACKGROUND;
}
for (int j = 0; j < w; j++){
imgData[j] = BACKGROUND;
imgData[(h - 1) * ws + j] = BACKGROUND;
}
// Prima scansione
unsigned char maxLabel = 1;
for (int i = 1; i < h - 1; i++){
for (int j = 1; j < w - 1; j++){
if (imgData[i * ws + j] == FOREGROUND){
unsigned char lp = imgData[(i - 1) * ws + j];
unsigned char lq = imgData[i * ws + (j - 1)];
unsigned char lx = lp;
if (lp == BACKGROUND && lq == BACKGROUND){
lx = maxLabel; // ...
maxLabel++; // lx = maxLabel++;
}
// Trovata un'equivalenza
else if((lp != lq) && (lp != BACKGROUND) && (lq != BACKGROUND)){
equiv [lp][lq] = 1; equiv [lq][lp] = 1;
lx = lq;
}
else if (lq != BACKGROUND) lx = lq;
else if (lp != BACKGROUND) lx = lp;
imgData[i * ws + j] = lx;
}
}
}
// Trovo le equivalenze (propago -> transitività)
// TODO: Ottimizzare -> 'equiv' è una matrice quadrata simmetrica...
for (int i = 0; i < maxLabel; i++)
for (int j = 0; j < maxLabel; j++)
if (equiv[i][j] == 1 && i != j)
for (int k = 0; k < maxLabel; k++){
equiv[i][k] = equiv[i][k] || equiv[j][k];
equiv[k][i] = equiv[i][k];
}
int numLabel = maxLabel - 1;
// Inserisco nella LUT l'informazione delle equivalenze
// Versione ottimizzata...
for (int i = 0; i < maxLabel; i++)
for (int j = i + 1; j < maxLabel; j++)
if (equiv[i][j] == 1 /*&& i != j*/){
LUT[j] = i;
numLabel--; // Aggiunto
for (int k = 0; k < maxLabel; k++) {
equiv[j][k] = 0;
equiv[k][j] = 0;
}
}
//-------------------- Aggiunto ---------------------------------------
// Assegno label continue e ordinate alla LUT
unsigned char valLabel = 1;
unsigned char appoggio [256];
for (int i = 1; i < maxLabel; i++) appoggio[i] = 0;
// ATTENZIONE: i parte da 1 -> appoggio[0] = 0 -> BACKGROUND
for (int i = 1; i < maxLabel; i++){
if (appoggio[LUT[i]] == 0) {
appoggio[LUT[i]] = valLabel;
valLabel++;
}
LUT[i] = appoggio[LUT[i]];
}
//------------------------------------------------------------------
// Seconda scansione
for (int i = 0; i < h; i++)
for (int j = 0; j < w; j++)
imgData[i * ws + j] = LUT[imgData[i * ws + j]];
return numLabel;
}
void areaOpening (IplImage* src, IplImage* dest, int numLabel, int soglia) {
unsigned char* srcData = (unsigned char*) src->imageData;
unsigned char* destData = (unsigned char*) dest->imageData;
int h = src->height; int w = src->width; int ws = src->widthStep;
unsigned char* matches = (unsigned char*) malloc(sizeof(unsigned char) * numLabel);
for (int i = 0; i < numLabel; i++) matches[i] = 0;
for (unsigned char l = 0; l < numLabel; l++){
int area = findAreaDesc (src, l + 1); // Più veloce di AREA (src, l+1);
if (area < soglia) matches[l] = BACKGROUND;
else matches[l] = l + 1;
}
int nl;
for (int i = 0; i < h; i++)
for (int j = 0; j < w; j++)
if((nl = srcData[i * ws + j] - 1) >= 0)
destData[i * ws + j] = matches[nl];
else destData[i * ws + j] = BACKGROUND;
free (matches);
}
OBJECTS_LIST* objectRecognition (IplImage* src, int numLabel, evalFunc f) {
unsigned char* srcData = (unsigned char*) src->imageData;
int h = src->height; int w = src->width; int ws = src->widthStep;
OBJECTS_LIST* list = (OBJECTS_LIST*) malloc(sizeof(OBJECTS_LIST));
list->length = 0;
// Classificazione degli Oggetti.
for (unsigned char l = 0; l < numLabel; l++){
// Calcolo dei descrittori.
int area = findAreaDesc (src, l+1); // Più veloce di AREA (src, l+1);
/*------------------------------------------------------------------*/
/* Se uno (pseudo-)oggetto labellato ha area nulla, significa che è
* intervenuto in precedenza l'operatore di area-opening e l'oggetto
* in questione segmentato è stato ritenuto non significativo e da
* eliminare; per questo motivo non si procede con la valutazione.
*------------------------------------------------------------------*/
if (area == 0) continue;
else list->length++;
/*------------------------------------------------------------------*/
int perimetro = findPerimeterDesc(src, l+1);
double compattezza = findCompactnessDesc (area, perimetro);
// Non lo trovo per motivi di velocità computazionale.
double haralick = 0.0; /*findHaralickDesc(src, l+1);*/
double h1 = 0.0; /*H1(src, l+1);*/
OBJECT_DESC* object = (OBJECT_DESC*) malloc (sizeof(OBJECT_DESC));
object->id = l+1;
object->area = area;
object->compattezza = compattezza;
object->perimetro = perimetro;
object->haralick = haralick;
object->h1 = h1;
STRING* classe = f(object);
object->classe = *classe;
list->objects[list->length - 1] = object;
//-------------------------------------------------------------
}
return list;
}
/*
Riduce un'immagine segmentata ai contorni degli oggetti...
*/
void findContours(IplImage* src, IplImage* dest) {
int h = src->height; int w = src->width; int ws = src->widthStep;
IplImage* temp = cvCreateImage(cvGetSize(src), IPL_DEPTH_8U, 1);
IplConvKernel* kernel = cvCreateStructuringElementEx(5, 5, 2, 2, CV_SHAPE_CROSS, NULL);
unsigned char* srcData = (unsigned char*) src->imageData;
unsigned char* tempData = (unsigned char*) temp->imageData;
unsigned char* destData = (unsigned char*) dest->imageData;
/* ATTENZIONE: Operatore morfologico utilizzato in un'immagine a scala
di grigi. Per come è strutturata l'immagine segmentata
funziona bene nella rilevazione del contorno e quindi è
stato utilizzato senza troppe preoccupazioni.
*/
cvErode(src, temp, kernel, 2); cvSub(src, temp, dest, NULL);
cvReleaseImage(&temp);
cvReleaseStructuringElement(&kernel);
}
/*
A partire dai contorni degli oggetti di un'immagine segmentata e dagli
edge della stessa immagine, individua quali sono i falsi oggetti.
*/
void findFalseObjects(IplImage* contours, IplImage* edges, OBJECTS_LIST* objects, int threshold) {
unsigned char* contoursData = (unsigned char*) contours->imageData;
unsigned char* edgesData = (unsigned char*) edges->imageData;
int h = contours->height; int w = contours->width; int ws = contours->widthStep;
int counter;
for(int k = 0; k < objects->length; k++){
counter = 0;
for(int j = 0; j < h; j++)
for(int i = 0; i < w; i++)
if (contoursData[j * ws + i] == objects->objects[k]->id)
if (edgesData[j * ws + i] != 0) counter++;
if (counter > threshold) continue;
//else strAssign (&(objects->objects[k]->classe), "FalseObj");
else strAppend (&(objects->objects[k]->classe), "#");
}
}
//****************************************************************************
#endif /*_CHANGEDETECTIONLIB_H*/