-
Notifications
You must be signed in to change notification settings - Fork 0
/
Blob.h
executable file
·804 lines (715 loc) · 18.7 KB
/
Blob.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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
/************************************************************************
Blob.h
FUNCIONALITAT: Definició de la classe CBlob
AUTOR: Inspecta S.L.
MODIFICACIONS (Modificació, Autor, Data):
FUNCTIONALITY: Definition of the CBlob class and some helper classes to perform
some calculations on it
AUTHOR: Inspecta S.L.
MODIFICATIONS (Modification, Author, Date):
**************************************************************************/
//! Disable warnings referred to 255 character truncation for the std:map
#pragma warning( disable : 4786 )
#ifndef CBLOB_INSPECTA_INCLUDED
#define CBLOB_INSPECTA_INCLUDED
#include "cxcore.h"
#include "BlobLibraryConfiguration.h"
#include <functional>
#include <vector>
#include <algorithm>
#ifdef BLOB_OBJECT_FACTORY
//! Object factory pattern implementation
#include "..\inspecta\DesignPatterns\ObjectFactory.h"
#endif
//! Factor de conversió de graus a radians
#define DEGREE2RAD (CV_PI / 180.0)
/**
Classe que representa un blob, entés com un conjunt de pixels del
mateix color contigus en una imatge binaritzada.
Class to represent a blob, a group of connected pixels in a binary image
*/
class CBlob
{
public:
//! Constructor estàndard
//! Standard constructor
CBlob();
//! Constructor de còpia
//! Copy constructor
CBlob( const CBlob &src );
CBlob( const CBlob *src );
//! Destructor estàndard
//! Standard Destructor
~CBlob();
//! Operador d'assignació
//! Assigment operator
CBlob& operator=(const CBlob &src );
//! Indica si el blob està buit ( no té cap info associada )
//! Shows if the blob has associated information
bool IsEmpty() const
{
return (area == 0.0 && perimeter == 0.0 );
};
//! Neteja les cantonades del blob
//! Clears the edges of the blob
void ClearEdges();
//! Copia les cantonades del blob a un altre (les afegeix al destí)
//! Adds the blob edges to another blob
void CopyEdges( CBlob &destination ) const;
//! Retorna el poligon convex del blob
//! Calculates the convex hull of the blob
bool GetConvexHull( CvSeq **dst ) const;
//! Calcula l'elipse que s'adapta als vèrtexs del blob
//! Fits an ellipse to the blob edges
CvBox2D GetEllipse() const;
//! Pinta l'interior d'un blob d'un color determinat
//! Paints the blob in an image
void FillBlob( IplImage *imatge, CvScalar color, int offsetX = 0, int offsetY = 0 ) const;
//! Funcions GET sobre els valors dels blobs
//! Get functions
inline int Label() const { return etiqueta; }
inline int Parent() const { return parent; }
inline double Area() const { return area; }
inline double Perimeter() const { return perimeter; }
inline double ExternPerimeter() const { return externPerimeter; }
inline int Exterior() const { return exterior; }
inline double Mean() const { return mean; }
inline double StdDev() const { return stddev; }
inline double MinX() const { return minx; }
inline double MinY() const { return miny; }
inline double MaxX() const { return maxx; }
inline double MaxY() const { return maxy; }
inline CvSeq *Edges() const { return edges; }
inline double SumX() const { return sumx; }
inline double SumY() const { return sumy; }
inline double SumXX() const { return sumxx; }
inline double SumYY() const { return sumyy; }
inline double SumXY() const { return sumxy; }
//! etiqueta del blob
//! label of the blob
int etiqueta;
//! flag per indicar si es exterior o no
//! true for extern blobs
int exterior;
//! area del blob
//! Blob area
double area;
//! perimetre del blob
//! Blob perimeter
double perimeter;
//! quantitat de perimetre del blob extern
//! amount of blob perimeter which is exterior
double externPerimeter;
//! etiqueta del blob pare
//! label of the parent blob
int parent;
//! moments
double sumx;
double sumy;
double sumxx;
double sumyy;
double sumxy;
//! Bounding rect
double minx;
double maxx;
double miny;
double maxy;
//! mitjana
//! mean of the grey scale values of the blob pixels
double mean;
//! desviació standard
//! standard deviation of the grey scale values of the blob pixels
double stddev;
//! àrea de memòria on es desaran els punts de contorn del blob
//! storage which contains the edges of the blob
CvMemStorage *m_storage;
//! Sequència de punts del contorn del blob
//! Sequence with the edges of the blob
CvSeq *edges;
//! Point datatype for plotting (FillBlob)
typedef std::vector<CvPoint> vectorPunts;
//! Helper class to compare two CvPoints (for sorting in FillBlob)
struct comparaCvPoint : public std::binary_function<CvPoint, CvPoint, bool>
{
//! Definim que un punt és menor com més amunt a la dreta estigui
bool operator()(CvPoint a, CvPoint b)
{
if( a.y == b.y )
return a.x < b.x;
else
return a.y < b.y;
}
};
};
/**************************************************************************
Definició de les classes per a fer operacions sobre els blobs
Helper classes to perform operations on blobs
**************************************************************************/
//! Classe d'on derivarem totes les operacions sobre els blobs
//! Interface to derive all blob operations
class COperadorBlob
{
public:
virtual ~COperadorBlob(){};
//! Aplica l'operació al blob
virtual double operator()(const CBlob &blob) const = 0;
//! Obté el nom de l'operador
virtual const char *GetNom() const = 0;
operator COperadorBlob*() const
{
return (COperadorBlob*)this;
}
};
typedef COperadorBlob funcio_calculBlob;
#ifdef BLOB_OBJECT_FACTORY
/**
Funció per comparar dos identificadors dins de la fàbrica de COperadorBlobs
*/
struct functorComparacioIdOperador
{
bool operator()(const char* s1, const char* s2) const
{
return strcmp(s1, s2) < 0;
}
};
//! Definition of Object factory type for COperadorBlob objects
typedef ObjectFactory<COperadorBlob, const char *, functorComparacioIdOperador > t_OperadorBlobFactory;
//! Funció global per a registrar tots els operadors definits a blob.h
void RegistraTotsOperadors( t_OperadorBlobFactory &fabricaOperadorsBlob );
#endif
//! Classe per calcular l'àrea d'un blob
//! Class to get the area of a blob
class CBlobGetArea : public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.Area();
}
const char *GetNom() const
{
return "CBlobGetArea";
}
};
//! Classe per calcular el perimetre d'un blob
//! Class to get the perimeter of a blob
class CBlobGetPerimeter: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.Perimeter();
}
const char *GetNom() const
{
return "CBlobGetPerimeter";
}
};
//! Classe que diu si un blob és extern o no
//! Class to get the extern flag of a blob
class CBlobGetExterior: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.Exterior();
}
const char *GetNom() const
{
return "CBlobGetExterior";
}
};
//! Classe per calcular la mitjana de nivells de gris d'un blob
//! Class to get the mean grey level of a blob
class CBlobGetMean: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.Mean();
}
const char *GetNom() const
{
return "CBlobGetMean";
}
};
//! Classe per calcular la desviació estàndard dels nivells de gris d'un blob
//! Class to get the standard deviation of the grey level values of a blob
class CBlobGetStdDev: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.StdDev();
}
const char *GetNom() const
{
return "CBlobGetStdDev";
}
};
//! Classe per calcular la compacitat d'un blob
//! Class to calculate the compactness of a blob
class CBlobGetCompactness: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetCompactness";
}
};
//! Classe per calcular la longitud d'un blob
//! Class to calculate the length of a blob
class CBlobGetLength: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetLength";
}
};
//! Classe per calcular l'amplada d'un blob
//! Class to calculate the breadth of a blob
class CBlobGetBreadth: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetBreadth";
}
};
//! Classe per calcular la diferència en X del blob
class CBlobGetDiffX: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.maxx - blob.minx;
}
const char *GetNom() const
{
return "CBlobGetDiffX";
}
};
//! Classe per calcular la diferència en X del blob
class CBlobGetDiffY: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.maxy - blob.miny;
}
const char *GetNom() const
{
return "CBlobGetDiffY";
}
};
//! Classe per calcular el moment PQ del blob
//! Class to calculate the P,Q moment of a blob
class CBlobGetMoment: public COperadorBlob
{
public:
//! Constructor estàndard
//! Standard constructor (gets the 00 moment)
CBlobGetMoment()
{
m_p = m_q = 0;
}
//! Constructor: indiquem el moment p,q a calcular
//! Constructor: gets the PQ moment
CBlobGetMoment( int p, int q )
{
m_p = p;
m_q = q;
};
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetMoment";
}
private:
//! moment que volem calcular
int m_p, m_q;
};
//! Classe per calcular el perimetre del poligon convex d'un blob
//! Class to calculate the convex hull perimeter of a blob
class CBlobGetHullPerimeter: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetHullPerimeter";
}
};
//! Classe per calcular l'àrea del poligon convex d'un blob
//! Class to calculate the convex hull area of a blob
class CBlobGetHullArea: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetHullArea";
}
};
//! Classe per calcular la x minima en la y minima
//! Class to calculate the minimum x on the minimum y
class CBlobGetMinXatMinY: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetMinXatMinY";
}
};
//! Classe per calcular la y minima en la x maxima
//! Class to calculate the minimum y on the maximum x
class CBlobGetMinYatMaxX: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetMinYatMaxX";
}
};
//! Classe per calcular la x maxima en la y maxima
//! Class to calculate the maximum x on the maximum y
class CBlobGetMaxXatMaxY: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetMaxXatMaxY";
}
};
//! Classe per calcular la y maxima en la x minima
//! Class to calculate the maximum y on the minimum y
class CBlobGetMaxYatMinX: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetMaxYatMinX";
}
};
//! Classe per a calcular la x mínima
//! Class to get the minimum x
class CBlobGetMinX: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.MinX();
}
const char *GetNom() const
{
return "CBlobGetMinX";
}
};
//! Classe per a calcular la x màxima
//! Class to get the maximum x
class CBlobGetMaxX: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.MaxX();
}
const char *GetNom() const
{
return "CBlobGetMaxX";
}
};
//! Classe per a calcular la y mínima
//! Class to get the minimum y
class CBlobGetMinY: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.MinY();
}
const char *GetNom() const
{
return "CBlobGetMinY";
}
};
//! Classe per a calcular la y màxima
//! Class to get the maximum y
class CBlobGetMaxY: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.MaxY();
}
const char *GetNom() const
{
return "CBlobGetMax";
}
};
//! Classe per calcular l'elongacio d'un blob
//! Class to calculate the elongation of the blob
class CBlobGetElongation: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetElongation";
}
};
//! Classe per calcular la rugositat d'un blob
//! Class to calculate the roughness of the blob
class CBlobGetRoughness: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetRoughness";
}
};
//! Classe per calcular la distància entre el centre del blob i un punt donat
//! Class to calculate the euclidean distance between the center of a blob and a given point
class CBlobGetDistanceFromPoint: public COperadorBlob
{
public:
//! Standard constructor (distance to point 0,0)
CBlobGetDistanceFromPoint()
{
m_x = m_y = 0.0;
}
//! Constructor (distance to point x,y)
CBlobGetDistanceFromPoint( const double x, const double y )
{
m_x = x;
m_y = y;
}
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetDistanceFromPoint";
}
private:
// coordenades del punt on volem calcular la distància
double m_x, m_y;
};
//! Classe per calcular el nombre de pixels externs d'un blob
//! Class to get the number of extern pixels of a blob
class CBlobGetExternPerimeter: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.ExternPerimeter();
}
const char *GetNom() const
{
return "CBlobGetExternPerimeter";
}
};
//! Classe per calcular el ratio entre el perimetre i nombre pixels externs
//! valors propers a 0 indiquen que la majoria del blob és intern
//! valors propers a 1 indiquen que la majoria del blob és extern
//! Class to calculate the ratio between the perimeter and the number of extern pixels
class CBlobGetExternPerimeterRatio: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
if( blob.Perimeter() != 0 )
return blob.ExternPerimeter() / blob.Perimeter();
else
return blob.ExternPerimeter();
}
const char *GetNom() const
{
return "CBlobGetExternPerimeterRatio";
}
};
//! Classe per calcular el ratio entre el perimetre convex i nombre pixels externs
//! valors propers a 0 indiquen que la majoria del blob és intern
//! valors propers a 1 indiquen que la majoria del blob és extern
//! Class to calculate the ratio between the perimeter and the number of extern pixels
class CBlobGetExternHullPerimeterRatio: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
CBlobGetHullPerimeter getHullPerimeter;
double hullPerimeter;
if( (hullPerimeter = getHullPerimeter( blob ) ) != 0 )
return blob.ExternPerimeter() / hullPerimeter;
else
return blob.ExternPerimeter();
}
const char *GetNom() const
{
return "CBlobGetExternHullPerimeterRatio";
}
};
//! Classe per calcular el centre en el eix X d'un blob
//! Class to calculate the center in the X direction
class CBlobGetXCenter: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.MinX() + (( blob.MaxX() - blob.MinX() ) / 2.0);
}
const char *GetNom() const
{
return "CBlobGetXCenter";
}
};
//! Classe per calcular el centre en el eix Y d'un blob
//! Class to calculate the center in the Y direction
class CBlobGetYCenter: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
return blob.MinY() + (( blob.MaxY() - blob.MinY() ) / 2.0);
}
const char *GetNom() const
{
return "CBlobGetYCenter";
}
};
//! Classe per calcular la longitud de l'eix major d'un blob
//! Class to calculate the length of the major axis of the ellipse that fits the blob edges
class CBlobGetMajorAxisLength: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
CvBox2D elipse = blob.GetEllipse();
return elipse.size.width;
}
const char *GetNom() const
{
return "CBlobGetMajorAxisLength";
}
};
//! Classe per calcular el ratio entre l'area de la elipse i la de la taca
//! Class
class CBlobGetAreaElipseRatio: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
if( blob.Area()==0.0 ) return 0.0;
CvBox2D elipse = blob.GetEllipse();
double ratioAreaElipseAreaTaca = ( (elipse.size.width/2.0)
*
(elipse.size.height/2.0)
*CV_PI
)
/
blob.Area();
return ratioAreaElipseAreaTaca;
}
const char *GetNom() const
{
return "CBlobGetAreaElipseRatio";
}
};
//! Classe per calcular la longitud de l'eix menor d'un blob
//! Class to calculate the length of the minor axis of the ellipse that fits the blob edges
class CBlobGetMinorAxisLength: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
CvBox2D elipse = blob.GetEllipse();
return elipse.size.height;
}
const char *GetNom() const
{
return "CBlobGetMinorAxisLength";
}
};
//! Classe per calcular l'orientació de l'ellipse del blob en radians
//! Class to calculate the orientation of the ellipse that fits the blob edges in radians
class CBlobGetOrientation: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
CvBox2D elipse = blob.GetEllipse();
if( elipse.angle > 180.0 )
return (( elipse.angle - 180.0 )* DEGREE2RAD);
else
return ( elipse.angle * DEGREE2RAD);
}
const char *GetNom() const
{
return "CBlobGetOrientation";
}
};
//! Classe per calcular el cosinus de l'orientació de l'ellipse del blob
//! Class to calculate the cosinus of the orientation of the ellipse that fits the blob edges
class CBlobGetOrientationCos: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
CBlobGetOrientation getOrientation;
return fabs( cos( getOrientation(blob) ));
}
const char *GetNom() const
{
return "CBlobGetOrientationCos";
}
};
//! Classe per calcular el ratio entre l'eix major i menor de la el·lipse
//! Class to calculate the ratio between both axes of the ellipse
class CBlobGetAxisRatio: public COperadorBlob
{
public:
double operator()(const CBlob &blob) const
{
CvBox2D elipse = blob.GetEllipse();
return elipse.size.height / elipse.size.width;
}
const char *GetNom() const
{
return "CBlobGetAxisRatio";
}
};
//! Classe per calcular si un punt cau dins del blob
//! Class to calculate whether a point is inside a blob
class CBlobGetXYInside: public COperadorBlob
{
public:
//! Constructor estàndard
//! Standard constructor
CBlobGetXYInside()
{
m_p = cvPoint(0,0);
}
//! Constructor: indiquem el punt
//! Constructor: sets the point
CBlobGetXYInside( CvPoint p )
{
m_p = p;
};
double operator()(const CBlob &blob) const;
const char *GetNom() const
{
return "CBlobGetXYInside";
}
private:
//! punt que considerem
//! point to be considered
CvPoint m_p;
};
#endif //CBLOB_INSPECTA_INCLUDED