openbr_plugin.h
64 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
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
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright 2012 The MITRE Corporation *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef BR_OPENBR_PLUGIN_H
#define BR_OPENBR_PLUGIN_H
#ifdef __cplusplus
#include <QDataStream>
#include <QDebug>
#include <QDir>
#include <QFile>
#include <QFileInfo>
#include <QFuture>
#include <QHash>
#include <QList>
#include <QMap>
#include <QPoint>
#include <QPointF>
#include <QRectF>
#include <QScopedPointer>
#include <QSharedPointer>
#include <QString>
#include <QStringList>
#include <QThread>
#include <QTime>
#include <QVariant>
#include <QVector>
#include <opencv2/core/core.hpp>
#include <openbr/openbr.h>
#include <assert.h>
/*!
* \defgroup cpp_plugin_sdk C++ Plugin SDK
* \brief Plugin API for extending OpenBR functionality.
*
* \code
* #include <openbr/openbr_plugin.h>
* \endcode
*
* \par Development
* Plugins should be developed in <tt>openbr/plugins/</tt>.
* See this folder for numerous examples of existing plugins to follow when writing your own.
* Plugins may optionally include a <tt>.cmake</tt> file to control build configuration.
*
* \par Documentation
* Plugin documentation should include at least three lines providing the plugin abstraction, a brief explanation, and author.
* If multiple authors are specified, the last author is assumed to be the current maintainer of the plugin.
* Plugin authors are encouraged to <tt>\\cite</tt> relevant papers by adding them to <tt>share/openbr/openbr.bib</tt>.
*
* \section examples Examples
* - \ref cpp_face_recognition
* - \ref cpp_face_recognition_search
* - \ref cpp_age_estimation
* - \ref cpp_gender_estimation
*
* \subsection cpp_face_recognition Face Recognition
* \ref cli_face_recognition "Command Line Interface Equivalent"
* \snippet app/examples/face_recognition.cpp face_recognition
*
* \subsection cpp_face_recognition_search Face Recognition Search
* \ref cli_face_recognition_search "Command Line Interface Equivalent"
* \snippet app/examples/face_recognition_search.cpp face_recognition_search
*
* \subsection cpp_face_recognition_train Face Recognition Train
* \ref cli_face_recognition_train "Command Line Interface Equivalent"
* \snippet app/examples/face_recognition_train.cpp face_recognition_train
*
* \subsection cpp_age_estimation Age Estimation
* \ref cli_age_estimation "Command Line Interface Equivalent"
* \snippet app/examples/age_estimation.cpp age_estimation
*
* \subsection cpp_gender_estimation Gender Estimation
* \ref cli_gender_estimation "Command Line Interface Equivalent"
* \snippet app/examples/gender_estimation.cpp gender_estimation
*/
namespace br
{
/*!
* \addtogroup cpp_plugin_sdk
* @{
*/
/*!
* Helper macro for use with <a href="http://doc.qt.digia.com/qt/properties.html">Q_PROPERTY</a>.
*
* \b Example:<br>
* Note the symmetry between \c BR_PROPERTY and \c Q_PROPERTY.
* \snippet openbr/plugins/misc.cpp example_transform
*/
#define BR_PROPERTY(TYPE,NAME,DEFAULT) \
TYPE NAME; \
TYPE get_##NAME() const { return NAME; } \
void set_##NAME(TYPE the_##NAME) { NAME = the_##NAME; } \
void reset_##NAME() { NAME = DEFAULT; }
/*!
* \brief A file path with associated metadata.
*
* The File is one of two important data structures in OpenBR (the Template is the other).
* It is typically used to store the path to a file on disk with associated metadata.
* The ability to associate a key/value metadata table with the file helps keep the API simple while providing customizable behavior.
*
* When querying the value of a metadata key, the value will first try to be resolved against the file's private metadata table.
* If the key does not exist in its local table then it will be resolved against the properities in the global Context.
* By design file metadata may be set globally using Context::setProperty to operate on all files.
*
* Files have a simple grammar that allow them to be converted to and from strings.
* If a string ends with a \c ] or \c ) then the text within the final \c [] or \c () are parsed as comma sperated metadata fields.
* By convention, fields within \c [] are expected to have the format <tt>[key1=value1, key2=value2, ..., keyN=valueN]</tt> where order is irrelevant.
* Fields within \c () are expected to have the format <tt>(value1, value2, ..., valueN)</tt> where order matters and the key context dependent.
* The left hand side of the string not parsed in a manner described above is assigned to #name.
*
* Values are not necessarily stored as strings in the metadata table.
* The system will attempt to infer and convert them to their "native" type.
* The conversion logic is as follows:
* -# If the value starts with \c [ and ends with \c ] then it is treated as a comma separated list and represented with \c QVariantList. Each value in the list is parsed recursively.
* -# If the value starts with \c ( and ends with \c ) and contains four comma separated elements, each convertable to a floating point number, then it is represented with \c QRectF.
* -# If the value starts with \c ( and ends with \c ) and contains two comma separated elements, each convertable to a floating point number, then it is represented with \c QPointF.
* -# If the value is convertable to a floating point number then it is represented with \c float.
* -# Otherwise, it is represented with \c QString.
*
* Metadata keys fall into one of two categories:
* - \c camelCaseKeys are inputs that specify how to process the file.
* - \c Capitalized_Underscored_Keys are outputs computed from processing the file.
*
* Below are some of the most commonly occuring standardized keys:
*
* Key | Value | Description
* --- | ---- | -----------
* name | QString | Contents of #name
* separator | QString | Seperate #name into multiple files
* Index | int | Index of a template in a template list
* Confidence | float | Classification/Regression quality
* FTE | bool | Failure to enroll
* FTO | bool | Failure to open
* *_X | float | Position
* *_Y | float | Position
* *_Width | float | Size
* *_Height | float | Size
* *_Radius | float | Size
* Label | QString | Class label
* Theta | float | Pose
* Roll | float | Pose
* Pitch | float | Pose
* Yaw | float | Pose
* Points | QList<QPointF> | List of unnamed points
* Rects | QList<Rect> | List of unnamed rects
* Age | float | Age used for demographic filtering
* Gender | QString | Subject gender
* Train | bool | The data is for training, as opposed to enrollment
* _* | * | Reserved for internal use
*/
struct BR_EXPORT File
{
QString name; /*!< \brief Path to a file on disk. */
File() { fte = false; }
File(const QString &file) { init(file); } /*!< \brief Construct a file from a string. */
File(const QString &file, const QVariant &label) { init(file); set("Label", label); } /*!< \brief Construct a file from a string and assign a label. */
File(const char *file) { init(file); } /*!< \brief Construct a file from a c-style string. */
File(const QVariantMap &metadata) : fte(false), m_metadata(metadata) {} /*!< \brief Construct a file from metadata. */
inline operator QString() const { return name; } /*!< \brief Returns #name. */
QString flat() const; /*!< \brief A stringified version of the file with metadata. */
QString hash() const; /*!< \brief A hash of the file. */
inline QStringList localKeys() const { return m_metadata.keys(); } /*!< \brief Returns the private metadata keys. */
inline QVariantMap localMetadata() const { return m_metadata; } /*!< \brief Returns the private metadata. */
void append(const QVariantMap &localMetadata); /*!< \brief Add new metadata fields. */
void append(const File &other); /*!< \brief Append another file using \c separator. */
inline File &operator+=(const QMap<QString,QVariant> &other) { append(other); return *this; } /*!< \brief Add new metadata fields. */
inline File &operator+=(const File &other) { append(other); return *this; } /*!< \brief Append another file using \c separator. */
QList<File> split() const; /*!< \brief Split the file using \c separator. */
QList<File> split(const QString &separator) const; /*!< \brief Split the file. */
inline void setParameter(int index, const QVariant &value) { set("_Arg" + QString::number(index), value); } /*!< \brief Insert a keyless value. */
inline bool containsParameter(int index) const { return contains("_Arg" + QString::number(index)); } /*!< \brief Check for the existence of a keyless value. */
inline QVariant getParameter(int index) const { return get<QVariant>("_Arg" + QString::number(index)); } /*!< \brief Retrieve a keyless value. */
inline bool operator==(const char* other) const { return name == other; } /*!< \brief Compare name to c-style string. */
inline bool operator==(const File &other) const { return (name == other.name) && (m_metadata == other.m_metadata); } /*!< \brief Compare name and metadata for equality. */
inline bool operator!=(const File &other) const { return !(*this == other); } /*!< \brief Compare name and metadata for inequality. */
inline bool operator<(const File &other) const { return name < other.name; } /*!< \brief Compare name. */
inline bool operator<=(const File &other) const { return name <= other.name; } /*!< \brief Compare name. */
inline bool operator>(const File &other) const { return name > other.name; } /*!< \brief Compare name. */
inline bool operator>=(const File &other) const { return name >= other.name; } /*!< \brief Compare name. */
inline bool isNull() const { return name.isEmpty() && m_metadata.isEmpty(); } /*!< \brief Returns \c true if name and metadata are empty, \c false otherwise. */
inline bool isTerminal() const { return name == "terminal"; } /*!< \brief Returns \c true if #name is "terminal", \c false otherwise. */
inline bool exists() const { return QFileInfo(name).exists(); } /*!< \brief Returns \c true if the file exists on disk, \c false otherwise. */
inline QString fileName() const { return QFileInfo(name).fileName(); } /*!< \brief Returns the file's base name and extension. */
inline QString baseName() const { const QString baseName = QFileInfo(name).baseName();
return baseName.isEmpty() ? QDir(name).dirName() : baseName; } /*!< \brief Returns the file's base name. */
inline QString suffix() const { return QFileInfo(name).suffix(); } /*!< \brief Returns the file's extension. */
inline QString path() const { return QFileInfo(name).path(); } /*! \brief Returns the file's path excluding its name. */
QString resolved() const; /*!< \brief Returns name prepended with Globals->path if name does not exist. */
bool contains(const QString &key) const; /*!< \brief Returns \c true if the key has an associated value, \c false otherwise. */
bool contains(const QStringList &keys) const; /*!< \brief Returns \c true if all keys have associated values, \c false otherwise. */
QVariant value(const QString &key) const; /*!< \brief Returns the value for the specified key. */
static QVariant parse(const QString &value); /*!< \brief Try to convert the QString to a QPointF or QRectF if possible. */
inline void set(const QString &key, const QVariant &value) { m_metadata.insert(key, value); } /*!< \brief Insert or overwrite the metadata key with the specified value. */
void set(const QString &key, const QString &value); /*!< \brief Insert or overwrite the metadata key with the specified value. */
/*!< \brief Specialization for list type. Insert or overwrite the metadata key with the specified value. */
template <typename T>
void setList(const QString &key, const QList<T> &value)
{
QVariantList variantList;
variantList.reserve(value.size());
foreach (const T &item, value)
variantList << item;
set(key, variantList);
}
inline void remove(const QString &key) { m_metadata.remove(key); } /*!< \brief Remove the metadata key. */
/*!< \brief Returns a value for the key, throwing an error if the key does not exist. */
template <typename T>
T get(const QString &key) const
{
if (!contains(key)) qFatal("Missing key: %s in: %s", qPrintable(key), qPrintable(flat()));
QVariant variant = value(key);
if (!variant.canConvert<T>()) qFatal("Can't convert: %s in: %s", qPrintable(key), qPrintable(flat()));
return variant.value<T>();
}
/*!< \brief Returns a value for the key, returning \em defaultValue if the key does not exist or can't be converted. */
template <typename T>
T get(const QString &key, const T &defaultValue) const
{
if (!contains(key)) return defaultValue;
QVariant variant = value(key);
if (!variant.canConvert<T>()) return defaultValue;
return variant.value<T>();
}
/*!< \brief Specialization for boolean type. */
bool getBool(const QString &key, bool defaultValue = false) const;
/*!< \brief Specialization for list type. Returns a list of type T for the key, throwing an error if the key does not exist or if the value cannot be converted to the specified type. */
template <typename T>
QList<T> getList(const QString &key) const
{
if (!contains(key)) qFatal("Missing key: %s in: %s", qPrintable(key), qPrintable(flat()));
QList<T> list;
foreach (const QVariant &item, m_metadata[key].toList()) {
if (item.canConvert<T>()) list.append(item.value<T>());
else qFatal("Failed to convert value for key %s in: %s", qPrintable(key), qPrintable(flat()));
}
return list;
}
/*!< \brief Specialization for list type. Returns a list of type T for the key, returning \em defaultValue if the key does not exist or can't be converted. */
template <typename T>
QList<T> getList(const QString &key, const QList<T> defaultValue) const
{
if (!contains(key)) return defaultValue;
QList<T> list;
foreach (const QVariant &item, m_metadata[key].toList()) {
if (item.canConvert<T>()) list.append(item.value<T>());
else return defaultValue;
}
return list;
}
/*!< \brief Returns the value for the specified key for every file in the list. */
template<class U>
static QList<QVariant> values(const QList<U> &fileList, const QString &key)
{
QList<QVariant> values; values.reserve(fileList.size());
foreach (const U &f, fileList) values.append(((const File&)f).value(key));
return values;
}
/*!< \brief Returns a value for the key for every file in the list, throwing an error if the key does not exist. */
template<class T, class U>
static QList<T> get(const QList<U> &fileList, const QString &key)
{
QList<T> result; result.reserve(fileList.size());
foreach (const U &f, fileList) result.append(((const File&)f).get<T>(key));
return result;
}
/*!< \brief Returns a value for the key for every file in the list, returning \em defaultValue if the key does not exist or can't be converted. */
template<class T, class U>
static QList<T> get(const QList<U> &fileList, const QString &key, const T &defaultValue)
{
QList<T> result; result.reserve(fileList.size());
foreach (const U &f, fileList) result.append(static_cast<const File&>(f).get<T>(key, defaultValue));
return result;
}
QList<QPointF> namedPoints() const; /*!< \brief Returns points convertible from metadata keys. */
QList<QPointF> points() const; /*!< \brief Returns the file's points list. */
void appendPoint(const QPointF &point); /*!< \brief Adds a point to the file's point list. */
void appendPoints(const QList<QPointF> &points); /*!< \brief Adds landmarks to the file's landmark list. */
inline void clearPoints() { m_metadata["Points"] = QList<QVariant>(); } /*!< \brief Clears the file's landmark list. */
inline void setPoints(const QList<QPointF> &points) { clearPoints(); appendPoints(points); } /*!< \brief Overwrites the file's landmark list. */
QList<QRectF> namedRects() const; /*!< \brief Returns rects convertible from metadata values. */
QList<QRectF> rects() const; /*!< \brief Returns the file's rects list. */
void appendRect(const QRectF &rect); /*!< \brief Adds a rect to the file's rect list. */
void appendRect(const cv::Rect &rect); /*!< \brief Adds a rect to the file's rect list. */
void appendRects(const QList<QRectF> &rects); /*!< \brief Adds rects to the file's rect list. */
void appendRects(const QList<cv::Rect> &rects); /*!< \brief Adds rects to the file's rect list. */
inline void clearRects() { m_metadata["Rects"] = QList<QVariant>(); } /*!< \brief Clears the file's rect list. */
inline void setRects(const QList<QRectF> &rects) { clearRects(); appendRects(rects); } /*!< \brief Overwrites the file's rect list. */
inline void setRects(const QList<cv::Rect> &rects) { clearRects(); appendRects(rects); } /*!< \brief Overwrites the file's rect list. */
bool fte;
private:
QVariantMap m_metadata;
BR_EXPORT friend QDataStream &operator<<(QDataStream &stream, const File &file);
BR_EXPORT friend QDataStream &operator>>(QDataStream &stream, File &file);
void init(const QString &file);
};
/*!< \brief Specialization for boolean type. */
template <>
inline bool File::get<bool>(const QString &key, const bool &defaultValue) const
{
return getBool(key, defaultValue);
}
/*!< \brief Specialization for boolean type. */
template <>
inline bool File::get<bool>(const QString &key) const
{
return getBool(key);
}
BR_EXPORT QDebug operator<<(QDebug dbg, const File &file); /*!< \brief Prints br::File::flat() to \c stderr. */
BR_EXPORT QDataStream &operator<<(QDataStream &stream, const File &file); /*!< \brief Serializes the file to a stream. */
BR_EXPORT QDataStream &operator>>(QDataStream &stream, File &file); /*!< \brief Deserializes the file from a stream. */
/*!
* \brief A list of files.
*
* Convenience class for working with a list of files.
*/
struct BR_EXPORT FileList : public QList<File>
{
FileList() {}
FileList(int n); /*!< \brief Initialize the list with \em n empty files. */
FileList(const QStringList &files); /*!< \brief Initialize the file list from a string list. */
FileList(const QList<File> &files) { append(files); } /*!< \brief Initialize the file list from another file list. */
QStringList flat() const; /*!< \brief Returns br::File::flat() for each file in the list. */
QStringList names() const; /*!< \brief Returns #br::File::name for each file in the list. */
void sort(const QString& key); /*!< \brief Sort the list based on metadata. */
QList<int> crossValidationPartitions() const; /*!< \brief Returns the cross-validation partition (default=0) for each file in the list. */
int failures() const; /*!< \brief Returns the number of files with br::File::failed(). */
static FileList fromGallery(const File &gallery, bool cache = false); /*!< \brief Create a file list from a br::Gallery. */
};
/*!
* \brief A list of matrices associated with a file.
*
* The Template is one of two important data structures in OpenBR (the File is the other).
* A template represents a biometric at various stages of enrollment and can be modified by br::Transform and compared to other templates with br::Distance.
*
* While there exist many cases (ex. video enrollment, multiple face detects, per-patch subspace learning, ...) where the template will contain more than one matrix,
* in most cases templates have exactly one matrix in their list representing a single image at various stages of enrollment.
* In the cases where exactly one image is expected, the template provides the function m() as an idiom for treating it as a single matrix.
* Casting operators are also provided to pass the template into image processing functions expecting matrices.
*
* Metadata related to the template that is computed during enrollment (ex. bounding boxes, eye locations, quality metrics, ...) should be assigned to the template's #file member.
*/
struct Template : public QList<cv::Mat>
{
File file; /*!< \brief The file from which the template is constructed. */
Template() {}
Template(const File &_file) : file(_file) {} /*!< \brief Initialize #file. */
Template(const File &_file, const cv::Mat &mat) : file(_file) { append(mat); } /*!< \brief Initialize #file and append a matrix. */
Template(const File &_file, const QList<cv::Mat> &mats) : file(_file) { append(mats); } /*!< \brief Initialize #file and append matricies. */
Template(const cv::Mat &mat) { append(mat); } /*!< \brief Append a matrix. */
inline const cv::Mat &m() const { static const cv::Mat NullMatrix;
return isEmpty() ? qFatal("Empty template."), NullMatrix : last(); } /*!< \brief Idiom to treat the template as a matrix. */
inline cv::Mat &m() { return isEmpty() ? append(cv::Mat()), last() : last(); } /*!< \brief Idiom to treat the template as a matrix. */
inline operator const File &() const { return file; }
inline cv::Mat &operator=(const cv::Mat &other) { return m() = other; } /*!< \brief Idiom to treat the template as a matrix. */
inline operator const cv::Mat&() const { return m(); } /*!< \brief Idiom to treat the template as a matrix. */
inline operator cv::Mat&() { return m(); } /*!< \brief Idiom to treat the template as a matrix. */
inline operator cv::_InputArray() const { return m(); } /*!< \brief Idiom to treat the template as a matrix. */
inline operator cv::_OutputArray() { return m(); } /*!< \brief Idiom to treat the template as a matrix. */
inline bool isNull() const { return isEmpty() || !m().data; } /*!< \brief Returns \c true if the template is empty or has no matrix data, \c false otherwise. */
inline void merge(const Template &other) { append(other); file.append(other.file); } /*!< \brief Append the contents of another template. */
/*!
* \brief Returns the total number of bytes in all the matrices.
*/
size_t bytes() const
{
size_t bytes = 0;
foreach (const cv::Mat &m, *this)
bytes += m.total() * m.elemSize();
return bytes;
}
/*!
* \brief Copies all the matrices and returns a new template.
*/
Template clone() const
{
Template other(file);
foreach (const cv::Mat &m, *this) other += m.clone();
return other;
}
};
/*!
* \brief Serialize a template.
*/
BR_EXPORT QDataStream &operator<<(QDataStream &stream, const Template &t);
/*!
* \brief Deserialize a template.
*/
BR_EXPORT QDataStream &operator>>(QDataStream &stream, Template &t);
/*!
* \brief A list of templates.
*
* Convenience class for working with a list of templates.
*/
struct TemplateList : public QList<Template>
{
TemplateList() {}
TemplateList(const QList<Template> &templates) { append(templates); } /*!< \brief Initialize the template list from another template list. */
TemplateList(const QList<File> &files) { foreach (const File &file, files) append(file); } /*!< \brief Initialize the template list from a file list. */
BR_EXPORT static TemplateList fromGallery(const File &gallery); /*!< \brief Create a template list from a br::Gallery. */
/*!< \brief Create a template list from a memory buffer of individual templates. Compatible with '.gal' galleries. */
BR_EXPORT static TemplateList fromBuffer(const QByteArray &buffer);
/*!< \brief Ensure labels are in the range [0,numClasses-1]. */
BR_EXPORT static TemplateList relabel(const TemplateList &tl, const QString &propName, bool preserveIntegers);
BR_EXPORT QList<int> indexProperty(const QString &propName, QHash<QString, int> * valueMap=NULL,QHash<int, QVariant> * reverseLookup = NULL) const;
BR_EXPORT QList<int> indexProperty(const QString &propName, QHash<QString, int> &valueMap, QHash<int, QVariant> &reverseLookup) const;
BR_EXPORT QList<int> applyIndex(const QString &propName, const QHash<QString, int> &valueMap) const;
/*!
* \brief Returns the total number of bytes in all the templates.
*/
template <typename T>
T bytes() const
{
T bytes = 0;
foreach (const Template &t, *this) bytes += t.bytes();
return bytes;
}
/*!
* \brief Returns a list of matrices with one matrix from each template at the specified \em index.
*/
QList<cv::Mat> data(int index = 0) const
{
QList<cv::Mat> data; data.reserve(size());
foreach (const Template &t, *this) data.append(t[index]);
return data;
}
/*!
* \brief Returns a list of #br::TemplateList with each #br::Template in a given #br::TemplateList containing the number of matrices specified by \em partitionSizes.
*/
QList<TemplateList> partition(const QList<int> &partitionSizes) const
{
int sum = 0;
QList<TemplateList> partitions; partitions.reserve(partitionSizes.size());
for (int i=0; i<partitionSizes.size(); i++) {
partitions.append(TemplateList());
sum+=partitionSizes[i];
}
if (sum != first().size()) qFatal("Partition sizes %i do not span template matrices %i properly", sum, first().size());
foreach (const Template &t, *this) {
int index = 0;
while (index < t.size()) {
for (int i=0; i<partitionSizes.size(); i++) {
Template newTemplate;
newTemplate.file = t.file;
for (int j=0; j<partitionSizes[i]; j++) {
newTemplate.append(t[index]);
index++;
}
// Append to the ith element of partitions
partitions[i].append(newTemplate);
}
}
}
return partitions;
}
/*!
* \brief Returns #br::Template::file for each template in the list.
*/
FileList files() const
{
FileList files; files.reserve(size());
foreach (const Template &t, *this) files.append(t.file);
return files;
}
/*!
* \brief Returns #br::Template::file for each template in the list.
*/
FileList operator()() const { return files(); }
/*!
* \brief Returns the number of occurences for each label in the list.
*/
template<typename T>
QMap<T,int> countValues(const QString &propName, bool excludeFailures = false) const
{
QMap<T, int> labelCounts;
foreach (const File &file, files())
if (!excludeFailures || !file.fte)
labelCounts[file.get<T>(propName)]++;
return labelCounts;
}
/*!
* \brief Merge all the templates together.
*/
TemplateList reduced() const
{
Template reduced;
foreach (const Template &t, *this)
reduced.merge(t);
return TemplateList() << reduced;
}
/*!
* \brief Find the indices of templates with specified key, value pairs.
*/
template<typename T>
QList<int> find(const QString& key, const T& value)
{
QList<int> indices;
for (int i=0; i<size(); i++)
if (at(i).file.contains(key))
if (at(i).file.get<T>(key) == value)
indices.append(i);
return indices;
}
};
/*!
* \brief The base class of all plugins and objects requiring introspection.
*
* Plugins are constructed from files.
* The file's name specifies which plugin to construct and the metadata provides initialization values for the plugin's properties.
*/
class BR_EXPORT Object : public QObject
{
Q_OBJECT
int firstAvailablePropertyIdx; /*!< \brief Index of the first property that can be set via command line arguments. */
public:
File file; /*!< \brief The file used to construct the plugin. */
virtual void init() {} /*!< \brief Overload this function instead of the default constructor to initialize the derived class. It should be safe to call this function multiple times. */
virtual void store(QDataStream &stream) const; /*!< \brief Serialize the object. */
virtual void load(QDataStream &stream); /*!< \brief Deserialize the object. Default implementation calls init() after deserialization. */
/*!< \brief Serialize an object created via the plugin system, including the string used to build the base object, allowing re-creation of the object without knowledge of its base string*/
virtual void serialize(QDataStream &stream) const
{
stream << description();
store(stream);
}
QStringList parameters() const; /*!< \brief A string describing the parameters the object takes. */
QStringList prunedArguments(bool expanded = false) const; /*!< \brief A string describing the values the object has, default valued parameters will not be listed. If expanded is true, all abbreviations and model file names should be replaced with a description of the object generated from those names. */
QString argument(int index, bool expanded) const; /*!< \brief A string value for the argument at the specified index. */
virtual QString description(bool expanded = false) const; /*!< \brief Returns a string description of the object. */
void setProperty(const QString &name, QVariant value); /*!< \brief Overload of QObject::setProperty to handle OpenBR data types. */
virtual bool setPropertyRecursive(const QString &name, QVariant value); /*!< \brief Recursive version of setProperty, try to set the property on this object, or its children, returns true if successful. */
bool setExistingProperty(const QString &name, QVariant value); /*! <\brief attempt to set property 'name' on this object. If name is not a pre-declared property, return false */
virtual QList<Object *> getChildren() const; /*!< \brief retrieve children of this object, default version scans properties, subclasses which do not sotre their children as properties must overload. */
template<typename T>
QList<T *> getChildren() const
{
QList<Object *> children = getChildren();
QList<T *> output;
foreach(Object *obj, children) {
T *temp = dynamic_cast<T *>(obj);
if (temp != NULL)
output.append(temp);
}
return output;
}
static QStringList parse(const QString &string, char split = ','); /*!< \brief Splits the string while respecting lexical scoping of <tt>()</tt>, <tt>[]</tt>, <tt>\<\></tt>, and <tt>{}</tt>. */
private:
template <typename T> friend struct Factory;
friend class Context;
void init(const File &file); /*!< \brief Initializes the plugin's properties from the file's metadata. */
};
/*!
* \brief The singleton class of global settings.
*
* Allocated by br::Context::initialize(), and deallocated by br::Context::finalize().
*
* \code
* // Access the global context using the br::Globals pointer:
* QString theSDKPath = br::Globals->sdkPath;
* \endcode
*/
class BR_EXPORT Context : public Object
{
Q_OBJECT
QFile logFile;
public:
/*!
* \brief Path to <tt>share/openbr/openbr.bib</tt>
*/
Q_PROPERTY(QString sdkPath READ get_sdkPath WRITE set_sdkPath RESET reset_sdkPath)
BR_PROPERTY(QString, sdkPath, "")
/*!
* \brief The default algorithm to use when enrolling and comparing templates.
*/
Q_PROPERTY(QString algorithm READ get_algorithm WRITE set_algorithm RESET reset_algorithm)
BR_PROPERTY(QString, algorithm, "")
/*!
* \brief Optional log file to copy <tt>stderr</tt> to.
*/
Q_PROPERTY(QString log READ get_log WRITE set_log RESET reset_log)
BR_PROPERTY(QString, log, "")
/*!
* \brief Path to use when resolving images specified with relative paths.
* Multiple paths can be specified using a semicolon separator.
*/
Q_PROPERTY(QString path READ get_path WRITE set_path RESET reset_path)
BR_PROPERTY(QString, path, "")
/*!
* \brief The number of threads to use.
*/
Q_PROPERTY(int parallelism READ get_parallelism WRITE set_parallelism RESET reset_parallelism)
BR_PROPERTY(int, parallelism, std::max(1, QThread::idealThreadCount()+1))
/*!
* \brief Whether or not to use GUI functions
*/
Q_PROPERTY(bool useGui READ get_useGui WRITE set_useGui RESET reset_useGui)
BR_PROPERTY(bool, useGui, true)
/*!
* \brief The maximum number of templates to process in parallel.
*/
Q_PROPERTY(int blockSize READ get_blockSize WRITE set_blockSize RESET reset_blockSize)
BR_PROPERTY(int, blockSize, parallelism * ((sizeof(void*) == 4) ? 128 : 1024))
/*!
* \brief If \c true no messages will be sent to the terminal, \c false by default.
*/
Q_PROPERTY(bool quiet READ get_quiet WRITE set_quiet RESET reset_quiet)
BR_PROPERTY(bool, quiet, false)
/*!
* \brief If \c true extra messages will be sent to the terminal, \c false by default.
*/
Q_PROPERTY(bool verbose READ get_verbose WRITE set_verbose RESET reset_verbose)
BR_PROPERTY(bool, verbose, false)
/*!
* \brief The most resent message sent to the terminal.
*/
Q_PROPERTY(QString mostRecentMessage READ get_mostRecentMessage WRITE set_mostRecentMessage RESET reset_mostRecentMessage)
BR_PROPERTY(QString, mostRecentMessage, "")
/*!
* \brief Used internally to compute progress() and timeRemaining().
*/
Q_PROPERTY(double currentStep READ get_currentStep WRITE set_currentStep RESET reset_currentStep)
BR_PROPERTY(double, currentStep, 0)
Q_PROPERTY(double currentProgress READ get_currentProgress WRITE set_currentProgress RESET reset_currentProgress)
BR_PROPERTY(double, currentProgress, 0)
/*!
* \brief Used internally to compute progress() and timeRemaining().
*/
Q_PROPERTY(double totalSteps READ get_totalSteps WRITE set_totalSteps RESET reset_totalSteps)
BR_PROPERTY(double, totalSteps, 0)
/*!
* \brief If \c true enroll 0 or more templates per image, otherwise (default) enroll exactly one.
*/
Q_PROPERTY(bool enrollAll READ get_enrollAll WRITE set_enrollAll RESET reset_enrollAll)
BR_PROPERTY(bool, enrollAll, false)
typedef QHash<QString,QStringList> Filters;
/*!
* \brief Filters that automatically determine impostor matches based on target (gallery) template metadata.
* \see br::FilterDistance
*/
Q_PROPERTY(Filters filters READ get_filters WRITE set_filters RESET reset_filters)
BR_PROPERTY(Filters, filters, Filters())
/*!
* \brief File output is redirected here if the file's basename is 'buffer', clearing previous contents.
*/
Q_PROPERTY(QByteArray buffer READ get_buffer WRITE set_buffer RESET reset_buffer)
BR_PROPERTY(QByteArray, buffer, QByteArray())
/*!
* \brief Enable/disable score normalization.
*/
Q_PROPERTY(bool scoreNormalization READ get_scoreNormalization WRITE set_scoreNormalization RESET reset_scoreNormalization)
BR_PROPERTY(bool, scoreNormalization, true)
/*!
* \brief Perform k-fold cross validation.
*/
Q_PROPERTY(int crossValidate READ get_crossValidate WRITE set_crossValidate RESET reset_crossValidate)
BR_PROPERTY(int, crossValidate, 0)
/*!
* \brief List of paths sub-models will be searched for on
*/
Q_PROPERTY(QList<QString> modelSearch READ get_modelSearch WRITE set_modelSearch RESET reset_modelSearch)
BR_PROPERTY(QList<QString>, modelSearch, QList<QString>() )
QHash<QString,QString> abbreviations; /*!< \brief Used by br::Transform::make() to expand abbreviated algorithms into their complete definitions. */
QTime startTime; /*!< \brief Used to estimate timeRemaining(). */
/*!
* \brief Returns the suggested number of partitions \em size should be divided into for processing.
* \param size The length of the list to be partitioned.
*/
int blocks(int size) const;
/*!
* \brief Returns true if \em name is queryable using <a href="http://doc.qt.digia.com/qt/qobject.html#property">QObject::property</a>
* \param name The property key to check for existance.
* \return \c true if \em name is a property, \c false otherwise.
* \see set
*/
bool contains(const QString &name);
/*!
* \brief Prints current progress statistics to \em stdout.
* \see progress
*/
void printStatus();
/*!
* \brief Returns the completion percentage of a call to br::Train(), br::Enroll() or br::Compare().
* \return float Fraction completed.
* - \c -1 if no task is underway.
* \see timeRemaining
*/
float progress() const;
/*!
* \brief Set a global property.
* \param key Global property key.
* \param value Global property value.
* \see contains
*/
void setProperty(const QString &key, const QString &value);
/*!
* \brief Returns the time remaining in seconds of a call to \ref br_train, \ref br_enroll or \ref br_compare.
* \return int Time remaining in seconds.
* - \c -1 if no task is underway.
* \see progress
*/
int timeRemaining() const;
/*!
* \brief Returns \c true if \em sdkPath is valid, \c false otherwise.
* \param sdkPath The path to <tt>share/openbr/openbr.bib</tt>
*/
static bool checkSDKPath(const QString &sdkPath);
/*!
* \brief Call \em once at the start of the application to allocate global variables.
* \code
* int main(int argc, char *argv[])
* {
* br::Context::initialize(argc, argv);
*
* // ...
*
* br::Context::finalize();
* return 0;
* }
* \endcode
* \param argc As provided by <tt>main()</tt>.
* \param argv As provided by <tt>main()</tt>.
* \param sdkPath The path to the folder containing <tt>share/openbr/openbr.bib</tt>
* By default <tt>share/openbr/openbr.bib</tt> will be searched for relative to:
* -# The working directory
* -# The executable's location
* \param useGui Create a QApplication instead of a QCoreApplication.
* \note Tiggers \em abort() on failure to locate <tt>share/openbr/openbr.bib</tt>.
* \note <a href="http://qt-project.org/">Qt</a> users should instead call this <i>after</i> initializing QApplication.
* \see finalize
*/
static void initialize(int &argc, char *argv[], QString sdkPath = "", bool useGui = true);
/*!
* \brief Call \em once at the end of the application to deallocate global variables.
* \see initialize
*/
static void finalize();
/*!
* \brief Returns a string with the name, version, and copyright of the project.
* \return A string suitable for printing to the terminal or displaying in a dialog box.
* \see version
*/
static QString about();
/*!
* \brief Returns the version of the SDK.
* \return A string with the format: <i>\<MajorVersion\></i><tt>.</tt><i>\<MinorVersion\></i><tt>.</tt><i>\<PatchVersion\></i>
* \see about scratchPath
*/
static QString version();
/*!
* \brief Returns the scratch directory.
* \return A string with the format: <i>\</path/to/user/home/\></i><tt>OpenBR-</tt><i>\<MajorVersion\></i><tt>.</tt><i>\<MinorVersion\></i>
* \note This should be used as the root directory for managing temporary files and providing process persistence.
* \see version
*/
static QString scratchPath();
/*!
* \brief Returns names and parameters for the requested objects.
*
* Each object is \c \\n seperated. Arguments are seperated from the object name with a \c \\t.
* \param abstractions Regular expression of the abstractions to search.
* \param implementations Regular expression of the implementations to search.
* \param parameters Include parameters after object name.
* \note \ref managed_return_value
* \note This function uses Qt's <a href="http://doc.qt.digia.com/stable/qregexp.html">QRegExp</a> syntax.
*/
static QStringList objects(const char *abstractions = ".*", const char *implementations = ".*", bool parameters = true);
private:
static void messageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg);
};
/*!
* \brief The globally available settings.
*
* Initialized by Context::initialize() and destroyed with Context::finalize().
*/
BR_EXPORT extern Context *Globals;
/*!
* \brief For run time construction of objects from strings.
*
* All plugins must derive from br::Object.
* The factory is a templated struct to allow for different types of plugins.
*
* Uses the Industrial Strength Pluggable Factory model described <a href="http://adtmag.com/articles/2000/09/25/industrial-strength-pluggable-factories.aspx">here</a>.
*/
template <class T>
struct Factory
{
virtual ~Factory() {}
/*!
* \brief Constructs a plugin from a file.
*/
//! [Factory make]
static T *make(const File &file)
{
QString name = file.get<QString>("plugin", "");
if (name.isEmpty()) name = file.suffix();
if (!names().contains(name)) {
if (names().contains("Empty") && name.isEmpty()) name = "Empty";
else if (names().contains("Default")) name = "Default";
else qFatal("%s registry does not contain object named: %s", qPrintable(baseClassName()), qPrintable(name));
}
T *object = registry->value(name)->_make();
static_cast<Object*>(object)->init(file);
return object;
}
//! [Factory make]
/*!
* \brief Constructs all the available plugins.
*/
static QList< QSharedPointer<T> > makeAll()
{
QList< QSharedPointer<T> > objects;
foreach (const QString &name, names()) {
objects.append(QSharedPointer<T>(registry->value(name)->_make()));
objects.last()->init("");
}
return objects;
}
/*!
* \brief Returns the names of the available plugins.
*/
static QStringList names() { return registry ? registry->keys() : QStringList(); }
/*!
* \brief Returns the parameters for a plugin.
*/
static QString parameters(const QString &name)
{
if (!registry) return QString();
QScopedPointer<T> object(registry->value(name)->_make());
object->init(name);
return object->parameters().join(", ");
}
protected:
/*!
* \brief For internal use. Nifty trick to register objects using a constructor.
*/
Factory(QString name)
{
if (!registry) registry = new QMap<QString,Factory<T>*>();
const QString abstraction = baseClassName();
if (name.endsWith(abstraction)) name = name.left(name.size()-abstraction.size());
if (name.startsWith("br::")) name = name.right(name.size()-4);
if (registry->contains(name)) qFatal("%s registry already contains object named: %s", qPrintable(abstraction), qPrintable(name));
registry->insert(name, this);
}
private:
static QMap<QString,Factory<T>*> *registry;
static QString baseClassName() { return QString(T::staticMetaObject.className()).remove("br::"); }
virtual T *_make() const = 0;
};
template <class T> QMap<QString, Factory<T>*>* Factory<T>::registry = 0;
template <class _Abstraction, class _Implementation>
class FactoryInstance : public Factory<_Abstraction>
{
FactoryInstance() : Factory<_Abstraction>(_Implementation::staticMetaObject.className()) {}
_Abstraction *_make() const { return new _Implementation(); }
static const FactoryInstance registerThis;
};
template <class _Abstraction, class _Implementation>
const FactoryInstance<_Abstraction,_Implementation> FactoryInstance<_Abstraction,_Implementation>::registerThis;
/*!
* Macro to register a br::Factory plugin.
*
* \b Example:<br>
* Note the use of \c Q_OBJECT at the beginning of the class declaration and \c BR_REGISTER after the class declaration.
* \snippet openbr/plugins/misc.cpp example_transform
*/
#define BR_REGISTER(ABSTRACTION,IMPLEMENTATION) \
template class \
br::FactoryInstance<br::ABSTRACTION, IMPLEMENTATION>;
/*!
* \defgroup initializers Initializers
* \brief Plugins that initialize resources.
*/
/*!
* \ingroup initializers
* \brief Plugin base class for initializing resources.
*/
class BR_EXPORT Initializer : public Object
{
Q_OBJECT
public:
virtual ~Initializer() {}
virtual void initialize() const = 0; /*!< \brief Called once at the end of br::Context::initialize(). */
virtual void finalize() const {} /*!< \brief Called once at the beginning of br::Context::finalize(). */
};
/*!
* \defgroup outputs Outputs
* \brief Plugins that store template comparison results.
*/
/*!
* \ingroup outputs
* \brief Plugin base class for storing template comparison results.
*
* An \em output is a br::File representing the result comparing templates.
* br::File::suffix() is used to determine which plugin should handle the output.
* \note Handle serialization to disk in the derived class destructor.
*/
class BR_EXPORT Output : public Object
{
Q_OBJECT
public:
Q_PROPERTY(int blockRows READ get_blockRows WRITE set_blockRows RESET reset_blockRows STORED false)
Q_PROPERTY(int blockCols READ get_blockCols WRITE set_blockCols RESET reset_blockCols STORED false)
BR_PROPERTY(int, blockRows, -1)
BR_PROPERTY(int, blockCols, -1)
FileList targetFiles; /*!< \brief List of files representing the gallery templates. */
FileList queryFiles; /*!< \brief List of files representing the probe templates. */
bool selfSimilar; /*!< \brief \c true if the \em targetFiles == \em queryFiles, \c false otherwise. */
virtual ~Output() {}
virtual void initialize(const FileList &targetFiles, const FileList &queryFiles); /*!< \brief Initializes class data members. */
virtual void setBlock(int rowBlock, int columnBlock); /*!< \brief Set the current block. */
virtual void setRelative(float value, int i, int j); /*!< \brief Set a score relative to the current block. */
static Output *make(const File &file, const FileList &targetFiles, const FileList &queryFiles); /*!< \brief Make an output from a file and gallery/probe file lists. */
private:
QSharedPointer<Output> next;
QPoint offset;
virtual void set(float value, int i, int j) = 0;
};
/*!
* \ingroup outputs
* \brief Plugin derived base class for storing outputs as matrices.
*/
class BR_EXPORT MatrixOutput : public Output
{
Q_OBJECT
public:
cv::Mat data; /*!< \brief The similarity matrix. */
/*!
* \brief Make a MatrixOutput from gallery and probe file lists.
*/
static MatrixOutput *make(const FileList &targetFiles, const FileList &queryFiles);
protected:
QString toString(int row, int column) const; /*!< \brief Converts the value requested similarity score to a string. */
private:
void initialize(const FileList &targetFiles, const FileList &queryFiles);
void set(float value, int i, int j);
};
/*!
* \defgroup formats Formats
* \brief Plugins that read a matrix.
*/
/*!
* \ingroup formats
* \brief Plugin base class for reading a template from disk.
*
* A \em format is a br::File representing a template (ex. jpg image) on disk.
* br::File::suffix() is used to determine which plugin should handle the format.
*/
class BR_EXPORT Format : public Object
{
Q_OBJECT
public:
virtual ~Format() {}
virtual Template read() const = 0; /*!< \brief Returns a br::Template created by reading #br::Object::file. */
virtual void write(const Template &t) const = 0; /*!< \brief Writes the br::Template to #br::Object::file. */
static Template read(const QString &file);
static void write(const QString &file, const Template &t);
};
/*!
* \defgroup galleries Galleries
* \brief Plugins that store templates.
*/
/*!
* \ingroup galleries
* \brief Plugin base class for storing a list of enrolled templates.
*
* A \em gallery is a file representing a br::TemplateList serialized to disk.
* br::File::suffix() is used to determine which plugin should handle the gallery.
* \note Handle serialization to disk in the derived class destructor.
*/
class BR_EXPORT Gallery : public Object
{
Q_OBJECT
public:
Q_PROPERTY(int readBlockSize READ get_readBlockSize WRITE set_readBlockSize RESET reset_readBlockSize STORED false)
BR_PROPERTY(int, readBlockSize, Globals->blockSize)
virtual ~Gallery() {}
TemplateList read(); /*!< \brief Retrieve all the stored templates. */
FileList files(); /*!< \brief Retrieve all the stored template files. */
virtual TemplateList readBlock(bool *done) = 0; /*!< \brief Retrieve a portion of the stored templates. */
void writeBlock(const TemplateList &templates); /*!< \brief Serialize a template list. */
virtual void write(const Template &t) = 0; /*!< \brief Serialize a template. */
static Gallery *make(const File &file); /*!< \brief Make a gallery to/from a file on disk. */
void init();
virtual qint64 totalSize() { return std::numeric_limits<qint64>::max(); }
virtual qint64 position() { return 0; }
private:
QSharedPointer<Gallery> next;
};
/*!
* \defgroup transforms Transforms
* \brief Plugins that process a template.
*/
/*!
* \addtogroup transforms
* @{
*/
/*!
* \brief For asynchronous events during template projection.
* \see Transform::getEvent
*/
class TemplateEvent : public QObject
{
Q_OBJECT
public:
void pulseSignal(const Template &output) const
{
emit theSignal(output);
}
signals:
void theSignal(const Template &output) const;
};
/*!
* \brief Plugin base class for processing a template.
*
* Transforms support the idea of \em training and \em projecting,
* whereby they are (optionally) given example images and are expected learn how to transform new instances into an alternative,
* hopefully more useful, basis for the recognition task at hand.
* Transforms can be chained together to support the declaration and use of arbitrary algorithms at run time.
*/
class BR_EXPORT Transform : public Object
{
Q_OBJECT
public:
bool independent, trainable;
virtual ~Transform() {}
static Transform *make(QString str, QObject *parent); /*!< \brief Make a transform from a string. */
static QSharedPointer<Transform> fromAlgorithm(const QString &algorithm, bool preprocess=false); /*!< \brief Retrieve an algorithm's transform. If preprocess is true, attaches a stream transform as the root of the algorithm*/
static QSharedPointer<Transform> fromComparison(const QString &algorithm);
virtual Transform *clone() const; /*!< \brief Copy the transform. */
/*!< \brief Train the transform. */
virtual void train(const TemplateList &data);
/*!< \brief Train the transform, separate list items represent the way calls to project would be broken up
* Transforms that have to call train on another transform should implement train(QList), the strucutre of the
* list should mirror the calls that would be made to project by the parent transform. For example, DistributeTemplates
* would make a separate project call for each template it receives, and therefore sets the QList to contain single item
* template lists before passing it on.
* This version of train(QList) is appropriate for transforms that perform training on themselves, and don't call train
* on other transforms. It combines everything in data into a single TemplateList, then calls train(TemplateList)
*/
virtual void train(const QList<TemplateList> &data);
/*!< \brief Apply the transform to a single template. Typically used by independent transforms */
virtual void project(const Template &src, Template &dst) const = 0;
/*!< \brief Apply the transform, taking the full template list as input.
* A TemplateList is what is typically passed from transform to transform. Transforms that just
* need to operatoe on a single template at a time (and want to output exactly 1 template) can implement
* project(template), but transforms that want to change the structure of the TemplateList (such as flatten), or
* or output more or less than one template (e.g. detection methods) should implement project(TemplateList) directly
*/
virtual void project(const TemplateList &src, TemplateList &dst) const;
/*!< \brief Apply the transform to a single template, may update the transform's internal state
* By default, just call project, we can always call a const function from a non-const function.
* If a transform implements projectUpdate, it should report true to timeVarying so that it can be
* handled correctly by e.g. Stream.
*/
virtual void projectUpdate(const Template &src, Template &dst)
{
project(src, dst);
}
/*!< \brief Apply the transform, may update the transform's internal state. */
virtual void projectUpdate(const TemplateList &src, TemplateList &dst)
{
project(src,dst);
}
/*!< \brief inplace projectUpdate. */
void projectUpdate(Template &srcdst)
{
Template dst;
projectUpdate(srcdst, dst);
srcdst = dst;
}
/*!< \brief inplace projectUpdate. */
void projectUpdate(TemplateList &srcdst)
{
TemplateList dst;
projectUpdate(srcdst, dst);
srcdst = dst;
}
/*!
* Time-varying transforms may move away from a single input->single output model, and only emit
* templates under some conditions (e.g. a tracking thing may emit a template for each detected
* unique object), in this case finalize indicates that no further calls to project will be made
* and the transform can emit a final set if templates if it wants. Time-invariant transforms
* don't have to do anything.
*/
virtual void finalize(TemplateList &output) { output = TemplateList(); }
/*!
* \brief Does the transform require the non-const version of project? Can vary for aggregation type transforms
* (if their children are time varying, they are also time varying, otherwise probably not)
*/
virtual bool timeVarying() const { return false; }
/*!
* \brief Convenience function equivalent to project().
*/
inline Template operator()(const Template &src) const
{
Template dst;
dst.file = src.file;
project(src, dst);
return dst;
}
/*!
* \brief Convenience function equivalent to project().
*/
inline TemplateList operator()(const TemplateList &src) const
{
TemplateList dst;
project(src, dst);
return dst;
}
/*!
* \brief Perform the minimum amount of work necessary to make a
* transform that can be used safely from a different thread than this
* transform. For transforms that aren't time-varying, nothing needs to be
* done, returning this is sufficient. Time varying transforms should implement this method
* and copy enough of their state that projectUpdate can safely be called on the original
* instance, and the copy concurrently.
*/
virtual Transform *smartCopy(bool &newTransform) { newTransform=false; return this;}
virtual Transform *smartCopy() {bool junk; return smartCopy(junk);}
/*!
* \brief Recursively retrieve a named event, returns NULL if an event is not found.
*/
virtual TemplateEvent *getEvent(const QString &name);
static Transform *deserialize(QDataStream &stream)
{
QString desc;
stream >> desc;
Transform *res = Transform::make(desc, NULL);
res->load(stream);
return res;
}
/*!
* \brief Return a pointer to a simplified version of this transform (if possible). Transforms which are only active during training should remove
* themselves by either returning their child transforms (where relevant) or returning NULL. Set newTransform to true if the transform returned is newly allocated.
*/
virtual Transform * simplify(bool &newTransform) { newTransform = false; return this; }
protected:
Transform(bool independent = true, bool trainable = true); /*!< \brief Construct a transform. */
inline Transform *make(const QString &description) { return make(description, this); } /*!< \brief Make a subtransform. */
};
/*!
* \brief Convenience function equivalent to project().
*/
inline Template &operator>>(Template &srcdst, const Transform &f)
{
srcdst = f(srcdst);
return srcdst;
}
/*!
* \brief Convenience function equivalent to project().
*/
inline TemplateList &operator>>(TemplateList &srcdst, const Transform &f)
{
srcdst = f(srcdst);
return srcdst;
}
/*!
* \brief Convenience function equivalent to store().
*/
inline QDataStream &operator<<(QDataStream &stream, const Transform &f)
{
f.store(stream);
return stream;
}
/*!
* \brief Convenience function equivalent to load().
*/
inline QDataStream &operator>>(QDataStream &stream, Transform &f)
{
f.load(stream);
return stream;
}
/*! @}*/
/*!
* \defgroup distances Distances
* \brief Plugins that compare templates.
*/
/*!
* \ingroup distances
* \brief Plugin base class for comparing templates.
*/
class BR_EXPORT Distance : public Object
{
Q_OBJECT
public:
virtual ~Distance() {}
static Distance *make(QString str, QObject *parent); /*!< \brief Make a distance from a string. */
static QSharedPointer<Distance> fromAlgorithm(const QString &algorithm); /*!< \brief Retrieve an algorithm's distance. */
virtual bool trainable() { return true; } /*!< \brief \c true if The distance implements train(), false otherwise. */
virtual void train(const TemplateList &src) = 0; /*!< \brief Train the distance. */
virtual void compare(const TemplateList &target, const TemplateList &query, Output *output) const; /*!< \brief Compare two template lists. */
virtual QList<float> compare(const TemplateList &targets, const Template &query) const; /*!< \brief Compute the normalized distance between a template and a template list. */
virtual float compare(const Template &a, const Template &b) const; /*!< \brief Compute the distance between two templates. */
virtual float compare(const cv::Mat &a, const cv::Mat &b) const; /*!< \brief Compute the distance between two biometric signatures. */
virtual float compare(const uchar *a, const uchar *b, size_t size) const; /*!< \brief Compute the distance between two buffers. */
protected:
inline Distance *make(const QString &description) { return make(description, this); } /*!< \brief Make a subdistance. */
private:
virtual void compareBlock(const TemplateList &target, const TemplateList &query, Output *output, int targetOffset, int queryOffset) const;
friend struct AlgorithmCore;
virtual bool compare(const File &targetGallery, const File &queryGallery, const File &output) const /*!< \brief Escape hatch for algorithms that need customized file I/O during comparison. */
{ (void) targetGallery; (void) queryGallery; (void) output; return false; }
};
class BR_EXPORT Representation : public Object
{
Q_OBJECT
public:
virtual ~Representation() {}
static Representation *make(QString str, QObject *parent); /*!< \brief Make a representation from a string. */
virtual cv::Mat preprocess(const cv::Mat &image) const { return image; }
virtual void train(const QList<cv::Mat> &images, const QList<float> &labels) { (void) images; (void)labels; }
// By convention, an empty indices list will result in all feature responses being calculated
// and returned.
virtual cv::Mat evaluate(const cv::Mat &image, const QList<int> &indices = QList<int>()) const = 0;
virtual int numFeatures() const = 0;
};
class BR_EXPORT Classifier : public Object
{
Q_OBJECT
public:
virtual ~Classifier() {}
static Classifier *make(QString str, QObject *parent); /*!< \brief Make a classifier from a string. */
virtual void train(const QList<cv::Mat> &images, const QList<float> &labels) = 0;
// By convention, classify should return a value normalized such that the threshold is 0. Negative values
// can be interpreted as a negative classification and positive values as a positive classification.
virtual float classify(const cv::Mat &image) const = 0;
};
/*!
* \brief Returns \c true if the algorithm is a classifier, \c false otherwise.
*
* Classifers have no br::Distance associated with their br::Transform.
* Instead they populate br::Template::file \c Label metadata field with the predicted class.
*/
BR_EXPORT bool IsClassifier(const QString &algorithm);
/*!
* \brief High-level function for creating models.
* \see br_train
*/
BR_EXPORT void Train(const File &input, const File &model);
/*!
* \brief High-level function for creating galleries.
* \see br_enroll
*/
BR_EXPORT void Enroll(const File &input, const File &gallery = File());
/*!
* \brief High-level function for enrolling templates.
* \see br_enroll
*/
BR_EXPORT void Enroll(TemplateList &tmpl);
/*!
* \brief A naive alternative to \ref br::Enroll
*/
BR_EXPORT void Project(const File &input, const File &output);
/*!
* \brief High-level function for comparing galleries.
* \see br_compare
*/
BR_EXPORT void Compare(const File &targetGallery, const File &queryGallery, const File &output);
/*!
* \brief High-level function for comparing templates.
*/
BR_EXPORT void CompareTemplateLists(const TemplateList &target, const TemplateList &query, Output *output);
/*!
* \brief High-level function for doing a series of pairwise comparisons.
* \see br_pairwise_compare
*/
BR_EXPORT void PairwiseCompare(const File &targetGallery, const File &queryGallery, const File &output);
/*!
* \brief Change file formats.
* \param fileType One of \c Format, \c Gallery, or \c Output.
* \param inputFile The source file to convert from.
* \param outputFile The destination file to convert to.
*/
BR_EXPORT void Convert(const File &fileType, const File &inputFile, const File &outputFile);
/*!
* \brief Concatenate several galleries into one.
* \param inputGalleries List of galleries to concatenate.
* \param outputGallery Gallery to store the concatenated result.
* \note outputGallery must not be in inputGalleries.
*/
BR_EXPORT void Cat(const QStringList &inputGalleries, const QString &outputGallery);
/*!
* \brief Deduplicate a gallery.
* \param inputGallery Gallery to deduplicate.
* \param outputGallery Gallery to store the deduplicated result.
* \param threshold Match score threshold to determine duplicates.
*/
BR_EXPORT void Deduplicate(const File &inputGallery, const File &outputGallery, const QString &threshold);
BR_EXPORT Transform *wrapTransform(Transform *base, const QString &target);
BR_EXPORT Transform *pipeTransforms(QList<Transform *> &transforms);
/*! @}*/
} // namespace br
Q_DECLARE_METATYPE(cv::Mat)
Q_DECLARE_METATYPE(br::File)
Q_DECLARE_METATYPE(br::FileList)
Q_DECLARE_METATYPE(br::Template)
Q_DECLARE_METATYPE(br::TemplateList)
Q_DECLARE_METATYPE(br::Transform*)
Q_DECLARE_METATYPE(br::Distance*)
Q_DECLARE_METATYPE(br::Representation*)
Q_DECLARE_METATYPE(br::Classifier*)
Q_DECLARE_METATYPE(QList<int>)
Q_DECLARE_METATYPE(QList<float>)
Q_DECLARE_METATYPE(QList<br::Transform*>)
Q_DECLARE_METATYPE(QList<br::Distance*>)
Q_DECLARE_METATYPE(QList<br::Representation*>)
Q_DECLARE_METATYPE(QList<br::Classifier*>)
#endif // __cplusplus
#endif // BR_OPENBR_PLUGIN_H