index.html
35.7 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
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Functions - OpenBR</title>
<link rel="shortcut icon" href="../../../../docs/img/openbr.ico">
<link href='https://fonts.googleapis.com/css?family=Lato:400,700|Roboto+Slab:400,700|Inconsolata:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="../../../../css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../../css/theme_extra.css" type="text/css" />
<link rel="stylesheet" href="../../../../css/highlight.css">
<script src="../../../../js/jquery-2.1.1.min.js"></script>
<script src="../../../../js/modernizr-2.8.3.min.js"></script>
<script type="text/javascript" src="../../../../js/highlight.pack.js"></script>
<script src="../../../../js/theme.js"></script>
</head>
<body class="wy-body-for-nav" role="document">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side stickynav">
<div class="wy-side-nav-search">
<a href="../../../.." class="icon icon-home"> OpenBR</a>
</div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
<ul class="current">
<li class="toctree-l0 ">
<a class="" href="../../../..">Home</a>
</li>
<li class="toctree-l0 ">
<a class="" href="../../../../install/">Install</a>
</li>
<li class="toctree-l0 ">
<a class="" href="../../../../tutorials/">Tutorials</a>
</li>
<li class="toctree-l0 ">
<a class="" href="../../../../technical/">Technical Overviews</a>
</li>
<li class="toctree-l0 ">
<a class="" href="../../../../contribute/">Contribute</a>
</li>
<li class="toctree-l0 ">
<a class="" href="../../../../papers/">Publications</a>
</li>
<span>API Docs</span>
<li class="toctree-l1 ">
<a class="" href="../../../c_api/">C API</a>
</li>
<li class="toctree-l1 current">
<a class="current" href="../../">C++ Plugin API</a>
<ul>
<li class="toctree-l2 ">
<a class="" href="../../apifunctions/">API Functions</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../file/file/">File</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../filelist/filelist/">FileList</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../template/template/">Template</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../templatelist/templatelist/">TemplateList</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../factory/factory/">Factory</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../object/object/">Object</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../context/context/">Context</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../initializer/initializer/">Initializer</a>
</li>
<li class="toctree-l2 current">
<a class="current" href="../transform/">Transform</a>
<ul>
<li class="toctree-l3 ">
<a class="" href="../members/">Members</a>
</li>
<li class="toctree-l3 ">
<a class="" href="../constructors/">Constructors</a>
</li>
<li class="toctree-l3 ">
<a class="" href="../statics/">Static Functions</a>
</li>
<li class="toctree-l3 current">
<a class="current" href="./">Functions</a>
<ul>
<li class="toctree-l4"><a href="#clone">Transform *clone()</a></li>
<li class="toctree-l4"><a href="#train-1">void train(const TemplateList &data)</a></li>
<li class="toctree-l4"><a href="#train-2">void train(const QList<TemplateList> &data)</a></li>
<li class="toctree-l4"><a href="#project-1">void project(const Template &src, Template &dst)</a></li>
<li class="toctree-l4"><a href="#project-2">void project(const TemplateList &src, TemplateList &dst)</a></li>
<li class="toctree-l4"><a href="#projectupdate-1">void projectUpdate(const Template &src, Template &dst)</a></li>
<li class="toctree-l4"><a href="#projectupdate-2">void projectUpdate(const TemplateList &src, TemplateList &dst)</a></li>
<li class="toctree-l4"><a href="#projectupdate-3">void projectUpdate(Template &srcdst)</a></li>
<li class="toctree-l4"><a href="#projectupdate-4">void projectUpdate(TemplateList &srcdst)</a></li>
<li class="toctree-l4"><a href="#timevarying">bool timeVarying()</a></li>
<li class="toctree-l4"><a href="#operator-pp-1">Template operator()(const Template &src)</a></li>
<li class="toctree-l4"><a href="#operator-pp-2">TemplateList operator()(const TemplateList &src)</a></li>
<li class="toctree-l4"><a href="#smartcopy-1">Transform *smartCopy(bool &newTransform)</a></li>
<li class="toctree-l4"><a href="#smartcopy-2">Transform *smartCopy()</a></li>
<li class="toctree-l4"><a href="#simplify">Transform *simplify(bool &newTransform)</a></li>
<li class="toctree-l4"><a href="#make">Transform *make(const QString &description)</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l2 ">
<a class="" href="../../untrainabletransform/untrainabletransform/">UntrainableTransform</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../metatransform/metatransform/">MetaTransform</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../untrainablemetatransform/untrainablemetatransform/">UntrainableMetaTransform</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../metadatatransform/metadatatransform/">MetadataTransform</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../untrainablemetadatatransform/untrainablemetadatatransform/">UntrainableMetadataTransform</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../timevaryingtransform/timevaryingtransform/">TimeVaryingTransform</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../distance/distance/">Distance</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../untrainabledistance/untrainabledistance/">UntrainableDistance</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../output/output/">Output</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../matrixoutput/matrixoutput/">MatrixOutput</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../format/format/">Format</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../gallery/gallery/">Gallery</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../filegallery/filegallery/">FileGallery</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../representation/representation/">Representation</a>
</li>
<li class="toctree-l2 ">
<a class="" href="../../classifier/classifier/">Classifier</a>
</li>
</ul>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../cl_api/">Command Line API</a>
</li>
<span>Plugin Docs</span>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/classification/">Classification</a>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/cluster/">Cluster</a>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/core/">Core</a>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/distance/">Distance</a>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/format/">Format</a>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/gallery/">Gallery</a>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/gui/">GUI</a>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/imgproc/">Image Processing</a>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/io/">I/O</a>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/metadata/">Metadata</a>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/output/">Output</a>
</li>
<li class="toctree-l1 ">
<a class="" href="../../../plugins/video/">Video</a>
</li>
</ul>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
<nav class="wy-nav-top" role="navigation" aria-label="top navigation">
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="../../../..">OpenBR</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="../../../..">Docs</a> »</li>
<li>Transform »</li>
<li>Functions</li>
<li class="wy-breadcrumbs-aside">
<a href="https://github.com/biometrics/openbr" class="icon icon-github"> Edit on GitHub</a>
</li>
</ul>
<hr/>
</div>
<div role="main">
<div class="section">
<h2 id="clone"><a href="../transform/">Transform</a> *clone()</h2>
<p>This is a virtual function. Make a deep copy of the transform.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>virtual Transform *clone() const
</code></pre>
</li>
<li>
<p><strong>parameters:</strong> NONE</p>
</li>
<li><strong>output:</strong> (<a href="../transform/">Transform</a>)</li>
<li><strong>example:</strong><pre><code>class ExampleTransform : public Transform
{
Q_OBJECT
Q_PROPERTY(int property READ get_property WRITE set_property RESET reset_property STORED false)
BR_PROPERTY(int, property, 1)
...
};
Transform *transform = Transform::make("Example", NULL);
transform->parameters(); // returns ["property = 1"]
Transform *clone = transform->clone();
clone->parameters(); // returns ["property = 1"]
transform->setProperty("property", 10);
transform->parameters(); // returns ["property = 10"]
clone->parameters(); // returns ["property = 1"]
</code></pre>
</li>
</ul>
<h2 id="train-1">void train(const <a href="../../templatelist/templatelist/">TemplateList</a> &data)</h2>
<p>This is a virtual function. Train the transform on provided training data. This function should be overloaded for any transform that needs to be trained. <a href="../members/#trainable">Trainable</a> must be set to true for this function to be called. If <a href="../members/#independent">independent</a> is true a new instance of the transform will be trained for each <a href="http://docs.opencv.org/modules/core/doc/basic_structures.html#mat" title="Mat">Mat</a> stored in a <a href="../../template/template/">Template</a> in the provided training data. Each <a href="../../template/template/">Template</a> should have the same number of <a href="http://docs.opencv.org/modules/core/doc/basic_structures.html#mat" title="Mat">Mats</a>.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>virtual void train(const TemplateList &data)
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>data</td>
<td>const <a href="../../templatelist/templatelist/">TemplateList</a> &</td>
<td>Training data. The format of the data depends on the transform to be trained. In some cases the transform requires a "Label" field in each <a href="../../template/template/">Template</a> <a href="../../template/members/#file">file's</a> <a href="../../file/members/#m_metadata">metadata</a> (normally these are classifiers like <a href="../../../plugins/classification/#svmtransform">SVM</a>). In other cases no metadata is required and training occurs on the raw image data only.</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output:</strong> (void)</p>
</li>
<li><strong>example:</strong><pre><code>// Create data for a 2-class classification problem
Template t1("training_pic1.jpg");
t1.file.set("Label", 0);
Template t2("training_pic2.jpg");
t2.file.set("Label", 0);
Template t3("training_pic3.jpg");
t3.file.set("Label", 1);
Template t4("training_pic4.jpg");
t4.file.set("Label", 1);
TemplateList training_data(QList<Template>() << t1 << t2 << t3 << t4);
Transform *classifier = Transform::make("DataPrep+Classifier");
classifier->train(training_data); // The data is projected through DataPrep, assuming it is untrainable, and then passed to the train method of Classifier
</code></pre>
</li>
</ul>
<h2 id="train-2">void train(const <a href="http://doc.qt.io/qt-5/QList.html" title="QList">QList</a><<a href="../../templatelist/templatelist/">TemplateList</a>> &data)</h2>
<p>This is a virtual function. This version of train is meant for special-case, internal, transforms and for tranforms that require a specific number of templates at project time. If a transform requires a specific number of templates at project time it should be trained in batches that have the same number of templates. For example, if a transform requires exactly 5 templates when projecting it should get a list of <a href="../../templatelist/templatelist/">TemplateLists</a>, each with exactly 5 templates, at train time. Each <a href="../../templatelist/templatelist/">TemplateList</a> can then be treated as an individual input to the training function.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<p>virtual void train(const QList<TemplateList> &data)</p>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>data</td>
<td>const <a href="http://doc.qt.io/qt-5/QList.html" title="QList">QList</a><<a href="../../templatelist/templatelist/">TemplateList</a>> &</td>
<td>Specially formatted list of training input. Format should match what is passed to <a href="#project-2">project</a>.</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output:</strong> (void)</p>
</li>
</ul>
<h2 id="project-1">void project(const <a href="../../template/template/">Template</a> &src, <a href="../../template/template/">Template</a> &dst)</h2>
<p>This is a pure virtual function. It must be overloaded by all derived classes. Project a template through the transform, modifying its contents in some way and storing the modified data in <strong>dst</strong>. This function has a strict <a href="../../template/template/">Template</a> in, <a href="../../template/template/">Template</a> out model. For a multiple <a href="../../template/template/">Template</a> in, multiple <a href="../../template/template/">Template</a> out model see [project]{: #project-2 }.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>virtual void project(const Template &src, Template &dst) const = 0
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>src</td>
<td>const <a href="../../template/template/">Template</a> &</td>
<td>Input template. It is immutable</td>
</tr>
<tr>
<td>dst</td>
<td><a href="../../template/template/">Template</a> &</td>
<td>Output template. Should contain the modified data from the input template.</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output:</strong> (void)</p>
</li>
<li><strong>example:</strong><pre><code>Template src("color_picture.jpg"), dst;
Transform *color_converter = Transfrom::make("Read+Cvt(Gray)");
color_converter->project(src, dst); // returns a grayscale image stored in dst
</code></pre>
</li>
</ul>
<h2 id="project-2">void project(const <a href="../../templatelist/templatelist/">TemplateList</a> &src, <a href="../../templatelist/templatelist/">TemplateList</a> &dst)</h2>
<p>This is a virtual function. Project multiple <a href="../../template/template/">Templates</a> in and get multiple, modified, <a href="../../template/template/">Templates</a> out. Especially useful in cases like detection where the requirement is image in, multiple objects out. The default implementation calls <a href="#project-1">project</a> on each <a href="../../template/template/">Template</a> in <strong>src</strong> and appends the results to <strong>dst</strong>.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>virtual void project(const TemplateList &src, TemplateList &dst) const
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>src</td>
<td>const <a href="../../templatelist/templatelist/">TemplateList</a> &</td>
<td>Input templates. It is immutable</td>
</tr>
<tr>
<td>dst</td>
<td><a href="../../templatelist/templatelist/">TemplateList</a> &</td>
<td>Output templates. Should contain the modified data from the input templates</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output:</strong> (void)</p>
</li>
<li><strong>example:</strong><pre><code>TemplateList src(QList<Template>() << Template("image_with_faces.jpg")), dst;
Transform *face_detector = Transform::make("FaceDetector");
face_detector->project(src, dst); // dst will have one template for every face detected in src
</code></pre>
</li>
</ul>
<h2 id="projectupdate-1">void projectUpdate(const <a href="../../template/template/">Template</a> &src, <a href="../../template/template/">Template</a> &dst)</h2>
<p>This is a virtual function. Very similar to <a href="#project-1">project</a> except this version is not <strong>const</strong> and can modify the internal state of the transform.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>virtual void projectUpdate(const Template &src, Template &dst)
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>src</td>
<td>const <a href="../../template/template/">Template</a> &</td>
<td>Input template. It is immutable</td>
</tr>
<tr>
<td>dst</td>
<td><a href="../../template/template/">Template</a> &</td>
<td>Output template. Should contain the modified data from the input template.</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output:</strong> (void)</p>
</li>
<li><strong>example:</strong><pre><code>class ExampleTransform : public Transform
{
Q_OBJECT
int internalState;
void projectUpdate(const Template &src, Template &dst)
{
dst = src;
internalState++;
}
...
};
BR_REGISTER(Transform, ExampleTransform)
Template src("picture.jpg"), dst;
Transform *example = Transform::make("Example");
example->projectUpdate(src, dst); // dst is unchanged but Example's internalState has been incremented.
</code></pre>
</li>
</ul>
<h2 id="projectupdate-2">void projectUpdate(const <a href="../../templatelist/templatelist/">TemplateList</a> &src, <a href="../../templatelist/templatelist/">TemplateList</a> &dst)</h2>
<p>This is a virtual function. Very similar to <a href="#project-2">project</a> except this version is not <strong>const</strong> and can modify the internal state of the transform.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>virtual void projectUpdate(const TemplateList &src, TemplateList &dst)
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<pre><code>Parameter | Type | Description
--- | --- | ---
src | const [TemplateList](../templatelist/templatelist.md) & | Input templates. It is immutable
dst | [TemplateList](../templatelist/templatelist.md) & | Output templates. Should contain the modified data from the input templates
</code></pre>
</li>
<li>
<p><strong>output:</strong> (void)</p>
</li>
<li><strong>example:</strong><pre><code>class ExampleTransform : public Transform
{
Q_OBJECT
int internalState;
void projectUpdate(const TemplateList &src, TemplateList &dst)
{
dst = src;
internalState++;
}
...
};
BR_REGISTER(Transform, ExampleTransform)
TemplateList src(QList<Template>() << Template("picture.jpg")), dst;
Transform *example = Transform::make("Example");
example->projectUpdate(src, dst); // dst is unchanged but Example's internalState has been incremented.
</code></pre>
</li>
</ul>
<h2 id="projectupdate-3">void projectUpdate(<a href="../../template/template/">Template</a> &srcdst)</h2>
<p>In-place version of <a href="#projectupdate-1">projectUpdate</a>.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>void projectUpdate(Template &srcdst)
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>srcdst</td>
<td><a href="../../template/template/">Template</a> &</td>
<td>Input and output template. It is overwritten with the output value after projecting</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output:</strong> (void)</p>
</li>
<li><strong>example:</strong><pre><code>class ExampleTransform : public Transform
{
Q_OBJECT
int internalState;
void projectUpdate(const Template &src, Template &dst)
{
dst = src;
internalState++;
}
...
};
BR_REGISTER(Transform, ExampleTransform)
Template src("picture.jpg");
Transform *example = Transform::make("Example");
example->projectUpdate(src); // src is modified in-place and Example's internalState has been incremented.
</code></pre>
</li>
</ul>
<h2 id="projectupdate-4">void projectUpdate(<a href="../../templatelist/templatelist/">TemplateList</a> &srcdst)</h2>
<p>In-place version of <a href="#projectupdate-2">projectUpdate</a>.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>void projectUpdate(TemplateList &srcdst)
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>srcdst</td>
<td><a href="../../templatelist/templatelist/">TemplateList</a> &</td>
<td>Input and output templates. It is overwritten with the output value after projecting</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output:</strong> (void)</p>
</li>
<li><strong>example:</strong><pre><code>class ExampleTransform : public Transform
{
Q_OBJECT
int internalState;
void projectUpdate(const TemplateList &src, TemplateList &dst)
{
dst = src;
internalState++;
}
...
};
BR_REGISTER(Transform, ExampleTransform)
TemplateList src(QList<Template>() << Template("picture.jpg"));
Transform *example = Transform::make("Example");
example->projectUpdate(src); // src is modified in-place and Example's internalState has been incremented.
</code></pre>
</li>
</ul>
<h2 id="timevarying">bool timeVarying()</h2>
<p>This is a virtual function. Check if the transform is time varying. Time varying means the internal state of the transform needs to be updated during projection. Time varying transforms should overload this function to return true and implement <a href="#projectupdate-1">projectUpdate</a> instead of <a href="#project-1">project</a>.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>virtual bool timeVarying() const
</code></pre>
</li>
<li>
<p><strong>parameters:</strong> NONE</p>
</li>
<li><strong>output:</strong> (bool) Returns true if the transform is time varying and false otherwise</li>
</ul>
<h2 id="operator-pp-1"><a href="../../template/template/">Template</a> operator()(const <a href="../../template/template/">Template</a> &src)</h2>
<p>A convenience function to call <a href="#project-1">project</a></p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>inline Template operator()(const Template &src) const
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>src</td>
<td>const <a href="../../template/template/">Template</a> &</td>
<td>Input template. It is immutable.</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output</strong>: (<a href="../../template/template/">Template</a>) Returns the result of calling <a href="#project-1">project</a></p>
</li>
<li><strong>example:</strong><pre><code>Template src("color_picture.jpg");
Transform *color_converter = Transfrom::make("Read+Cvt(Gray)");
Template dst = color_converter(src); // returns a grayscale image
</code></pre>
</li>
</ul>
<h2 id="operator-pp-2"><a href="../../templatelist/templatelist/">TemplateList</a> operator()(const <a href="../../templatelist/templatelist/">TemplateList</a> &src)</h2>
<p>A convenience function to call <a href="#project-2">project</a></p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>inline TemplateList operator()(const TemplateList &src) const
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>src</td>
<td>const <a href="../../templatelist/templatelist/">TemplateList</a> &</td>
<td>Input templates. It is immutable.</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output</strong>: (<a href="../../templatelist/templatelist/">TemplateList</a>) Returns the result of calling <a href="#project-2">project</a></p>
</li>
<li><strong>example:</strong><pre><code>TemplateList src(QList<Template>() << Template("color_picture.jpg"));
Transform *color_converter = Transfrom::make("Read+Cvt(Gray)");
TemplateList dst = color_converter(src); // returns a list of grayscale images
</code></pre>
</li>
</ul>
<h2 id="smartcopy-1"><a href="../transform/">Transform</a> *smartCopy(bool &newTransform)</h2>
<p>This is a virtual function. Only <a href="../../timevaryingtransform/timevaryingtransform/">TimeVaryingTransforms</a> need to overload this method. Similar to <a href="#clone">clone</a>, this function returns a deep copy of the transform. Unlike <a href="#clone">clone</a>, which copies everything, this function should copy the minimum amount required so that <a href="#projectupdate-1">projectUpdate</a> can be called safely on the original instance and the copy returned by this function concurrently.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>virtual Transform *smartCopy(bool &newTransform)
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>newTransform</td>
<td>bool &</td>
<td>True if the returned transform is newly allocated, false otherwise. This is used to handle deallocation. If newTransform is true, the caller of this function is responsible for deallocating it. If not, a <a href="http://doc.qt.io/qt-5/qsharedpointer.html" title="QSharedPointer">QSharedPointer</a> can wrap the output, and it will be deallocated elsewhere.</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output:</strong> (<a href="../transform/">Transform</a> *) Returns a pointer to a deep, smart, copy of the transform</p>
</li>
</ul>
<h2 id="smartcopy-2"><a href="../transform/">Transform</a> *smartCopy()</h2>
<p>Convenience function to call <a href="#smartcopy-1">smartCopy</a> without arguments</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>virtual Transform *smartCopy()
</code></pre>
</li>
<li>
<p><strong>parameters:</strong> NONE</p>
</li>
<li><strong>output:</strong> (<a href="../transform/">Transform</a> *) Returns a pointer, to a deep, smart, copy of the transform</li>
</ul>
<h2 id="simplify"><a href="../transform/">Transform</a> *simplify(bool &newTransform)</h2>
<p>This is a virtual function. Get a simplified version of the transform for use at project time. The simplified version of the <a href="../transform/">Transform</a> does not include any <a href="../transform/">Transforms</a> that are only active at train time. It also removes any <a href="../../../plugins/core/#loadstoretransform">LoadStore</a> transforms and keeps only their children. Transforms that only are active at train time (see <a href="../../../plugins/core/#downsampletransform">DownsampleTransform</a> as an example) should overload this function and return their children if they have any or NULL if they do not.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>virtual Transform * simplify(bool &newTransform)
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>newTransform</td>
<td>bool &</td>
<td>True if the simplified transform is newly allocated, false otherwise. If true, the caller of this function is responsible for deallocating the transform.</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output:</strong> (<a href="../transform/">Transform</a> *) Returns a pointer to the simplified version of the transform</p>
</li>
<li><strong>example:</strong><pre><code>Transform *transform = Transform::make("DataProcessing+DownsampleTraining(Example)+<ModelFile>");
transfrom->description(); // returns "DataProcessing+DownsampleTraining(Example)+LoadStore(transformString=TransformFromModelFile)"
bool newTransform;
transform->simplify(newTransform)->description(); // returns "DataProcessing+Example+TransformFromModelFile"
</code></pre>
</li>
</ul>
<h2 id="make"><a href="../transform/">Transform</a> *make(const <a href="http://doc.qt.io/qt-5/QString.html" title="QString">QString</a> &description)</h2>
<p>This is a protected function. Makes a child transform from a provided description by calling <a href="../statics/#make">make</a> with parent = <tt>this</tt>.</p>
<ul>
<li>
<p><strong>function definition:</strong></p>
<pre><code>inline Transform *make(const QString &description)
</code></pre>
</li>
<li>
<p><strong>parameters:</strong></p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>description</td>
<td>const <a href="http://doc.qt.io/qt-5/QString.html" title="QString">QString</a> &</td>
<td>Description of the child transform</td>
</tr>
</tbody>
</table>
</li>
<li>
<p><strong>output:</strong> (<a href="../transform/">Transform</a> *) Returns a pointer to the created child transform</p>
</li>
</ul>
<!-- Links -->
</div>
</div>
<footer>
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
<a href="../../untrainabletransform/untrainabletransform/" class="btn btn-neutral float-right" title="UntrainableTransform"/>Next <span class="icon icon-circle-arrow-right"></span></a>
<a href="../statics/" class="btn btn-neutral" title="Static Functions"><span class="icon icon-circle-arrow-left"></span> Previous</a>
</div>
<hr/>
<div role="contentinfo">
<p>
<!-- Copyright etc -->
</p>
</div>
Built with <a href="http://www.mkdocs.org">MkDocs</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>
</div>
</div>
</section>
</div>
<div class="rst-versions" role="note" style="cursor: pointer">
<span class="rst-current-version" data-toggle="rst-current-version">
<a href="https://github.com/biometrics/openbr" class="icon icon-github" style="float: left; color: #fcfcfc"> GitHub</a>
<span><a href="../statics/" style="color: #fcfcfc;">« Previous</a></span>
<span style="margin-left: 15px"><a href="../../untrainabletransform/untrainabletransform/" style="color: #fcfcfc">Next »</a></span>
</span>
</div>
<!--
MkDocs version : 0.12.1
Docs Build Date : 2015-04-22 01:05:25.639454
-->
</body>
</html>