openbr_internal.h
9.51 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
#ifndef OPENBR_INTERNAL_H
#define OPENBR_INTERNAL_H
#include "openbr/openbr_plugin.h"
#include "openbr/core/resource.h"
namespace br
{
/*!
* \brief A br::Transform that does not require training data.
*/
class BR_EXPORT UntrainableTransform : public Transform
{
Q_OBJECT
protected:
UntrainableTransform(bool independent = true) : Transform(independent, false) {} /*!< \brief Construct an untrainable transform. */
private:
Transform *clone() const { return const_cast<UntrainableTransform*>(this); }
void train(const TemplateList &data) { (void) data; }
void store(QDataStream &stream) const { (void) stream; }
void load(QDataStream &stream) { (void) stream; }
};
/*!
* \brief A br::Transform expecting multiple matrices per template.
*/
class BR_EXPORT MetaTransform : public Transform
{
Q_OBJECT
protected:
MetaTransform() : Transform(false) {}
};
/*!
* \brief A br::MetaTransform that does not require training data.
*/
class BR_EXPORT UntrainableMetaTransform : public UntrainableTransform
{
Q_OBJECT
protected:
UntrainableMetaTransform() : UntrainableTransform(false) {}
};
class TransformCopier : public ResourceMaker<Transform>
{
public:
Transform * basis;
TransformCopier(Transform * _basis)
{
basis = _basis;
}
virtual Transform *make() const
{
return basis->smartCopy();
}
};
class TimeInvariantWrapperTransform : public MetaTransform
{
public:
Resource<Transform> transformSource;
TimeInvariantWrapperTransform(Transform * basis) : transformSource(new TransformCopier(basis))
{
if (!basis)
qFatal("TimeInvariantWrapper created with NULL transform");
baseTransform = basis;
trainable = basis->trainable;
}
virtual void project(const Template &src, Template &dst) const
{
Transform * aTransform = transformSource.acquire();
aTransform->projectUpdate(src,dst);
transformSource.release(aTransform);
}
void project(const TemplateList &src, TemplateList &dst) const
{
Transform * aTransform = transformSource.acquire();
aTransform->projectUpdate(src,dst);
transformSource.release(aTransform);
}
void train(const QList<TemplateList> &data)
{
baseTransform->train(data);
}
private:
Transform * baseTransform;
};
/*!
* \brief A br::Transform for which the results of project may change due to prior calls to project
*/
class BR_EXPORT TimeVaryingTransform : public Transform
{
Q_OBJECT
public:
virtual bool timeVarying() const { return true; }
virtual void project(const Template &src, Template &dst) const
{
timeInvariantAlias.project(src,dst);
}
virtual void project(const TemplateList &src, TemplateList &dst) const
{
timeInvariantAlias.project(src,dst);
}
// Get a compile failure if this isn't here to go along with the other
// projectUpdate, no idea why
virtual void projectUpdate(const Template & src, Template & dst)
{
(void) src; (void) dst;
qFatal("do something useful");
}
virtual void projectUpdate(const TemplateList &src, TemplateList &dst)
{
foreach (const Template & src_part, src) {
Template out;
projectUpdate(src_part, out);
dst.append(out);
}
}
/*!
*\brief For transforms that don't do any training, this default implementation
* which creates a new copy of the Transform from its description string is sufficient.
*/
virtual Transform * smartCopy(bool & newTransform)
{
newTransform = true;
return this->clone();
}
protected:
// Since copies aren't actually made until project is called, we can set up
// timeInvariantAlias in the constructor.
TimeInvariantWrapperTransform timeInvariantAlias;
TimeVaryingTransform(bool independent = true, bool trainable = true) : Transform(independent, trainable), timeInvariantAlias(this)
{
//
}
};
/*!
* \brief Interface for transforms that act as decorators of another transform
*/
class BR_EXPORT WrapperTransform : public TimeVaryingTransform
{
Q_OBJECT
public:
WrapperTransform(bool independent = true) : TimeVaryingTransform(independent)
{
}
Q_PROPERTY(br::Transform *transform READ get_transform WRITE set_transform RESET reset_transform STORED false)
BR_PROPERTY(br::Transform *, transform, NULL)
bool timeVarying() const { return transform->timeVarying(); }
void project(const Template &src, Template &dst) const
{
transform->project(src,dst);
}
void projectUpdate(const Template &src, Template &dst)
{
transform->projectUpdate(src,dst);
}
void projectUpdate(const TemplateList & src, TemplateList & dst)
{
transform->projectUpdate(src,dst);
}
void train(const QList<TemplateList> & data)
{
transform->train(data);
}
virtual void finalize(TemplateList & output)
{
transform->finalize(output);
}
void init()
{
if (transform)
this->trainable = transform->trainable;
}
bool setPropertyRecursive(const QString & name, QVariant value)
{
if (br::Object::setPropertyRecursive(name, value))
return true;
return transform->setPropertyRecursive(name, value);
}
};
/*!
* \brief A MetaTransform that aggregates some sub-transforms
*/
class BR_EXPORT CompositeTransform : public TimeVaryingTransform
{
Q_OBJECT
public:
Q_PROPERTY(QList<br::Transform*> transforms READ get_transforms WRITE set_transforms RESET reset_transforms)
BR_PROPERTY(QList<br::Transform*>, transforms, QList<br::Transform*>())
virtual void project(const Template &src, Template &dst) const
{
if (timeVarying()) {
timeInvariantAlias.project(src,dst);
return;
}
_project(src, dst);
}
virtual void project(const TemplateList &src, TemplateList &dst) const
{
if (timeVarying()) {
timeInvariantAlias.project(src,dst);
return;
}
_project(src, dst);
}
bool timeVarying() const { return isTimeVarying; }
void init()
{
isTimeVarying = false;
trainable = false;
foreach (const br::Transform *transform, transforms) {
isTimeVarying = isTimeVarying || transform->timeVarying();
trainable = trainable || transform->trainable;
}
}
/*!
* \brief Composite transforms need to create a copy of themselves if they
* have any time-varying children. If this object is flagged as time-varying,
* it creates a new copy of its own class, and gives that copy the child transforms
* returned by calling smartCopy on this transforms children
*/
Transform * smartCopy(bool & newTransform)
{
if (!timeVarying()) {
newTransform = false;
return this;
}
newTransform = true;
QString name = metaObject()->className();
name.replace("Transform","");
name += "([]";
QStringList arguments = this->arguments();
if (!arguments.isEmpty()) {
name += ",";
name += this->arguments().join(",");
}
name += ")";
name.replace("br::","");
CompositeTransform * output = dynamic_cast<CompositeTransform *>(Transform::make(name, NULL));
if (output == NULL)
qFatal("Dynamic cast failed!");
foreach(Transform* t, transforms )
{
bool newItem = false;
Transform * maybe_copy = t->smartCopy(newItem);
if (newItem)
maybe_copy->setParent(output);
output->transforms.append(maybe_copy);
}
output->file = this->file;
output->init();
return output;
}
bool setPropertyRecursive(const QString & name, QVariant value)
{
if (br::Object::setPropertyRecursive(name, value))
return true;
for (int i=0; i < this->transforms.size();i++)
{
if (transforms[i]->setPropertyRecursive(name, value))
return true;
}
return false;
}
protected:
bool isTimeVarying;
virtual void _project(const Template & src, Template & dst) const = 0;
virtual void _project(const TemplateList & src, TemplateList & dst) const = 0;
CompositeTransform() : TimeVaryingTransform(false) {}
};
class EnrollmentWorker;
// Implemented in plugins/process.cpp
struct WorkerProcess
{
QString transform;
QString baseName;
EnrollmentWorker * processInterface;
void mainLoop();
};
/*!
* \brief A br::Transform that operates solely on metadata
*/
class MetadataTransform : public Transform
{
Q_OBJECT
public:
virtual void projectMetadata(const File &src, File &dst) const = 0;
void project(const Template & src, Template & dst) const
{
dst = src;
projectMetadata(src.file, dst.file);
}
protected:
MetadataTransform(bool trainable = true) : Transform(false,trainable) {}
};
/*!
* \brief A br::Transform that operates solely on metadata, and is untrainable
*/
class UntrainableMetadataTransform : public MetadataTransform
{
Q_OBJECT
protected:
UntrainableMetadataTransform() : MetadataTransform(false) {}
};
class FileGallery : public Gallery
{
Q_OBJECT
public:
QFile f;
qint64 fileSize;
virtual ~FileGallery() { f.close(); }
void init();
qint64 totalSize() { return fileSize; }
qint64 position() { return f.pos(); }
};
}
#endif // OPENBR_INTERNAL_H