MCPcopy Create free account
hub / github.com/biometrics/openbr / foreach

Method foreach

openbr/plugins/core/pipe.cpp:113–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 {
112 dst = src;
113 foreach (Transform *f, transforms) {
114 try {
115 f->projectUpdate(dst);
116 if (dst.file.fte)
117 break;
118 } catch (...) {
119 qWarning("Exception triggered when processing %s with transform %s", qPrintable(src.file.flat()), qPrintable(f->objectName()));
120 dst = Template(src.file);
121 dst.file.fte = true;
122 break;
123 }
124 }
125 }
126
127 // For time varying transforms, parallel execution over individual templates

Callers

nothing calls this directly

Calls 7

TemplateClass · 0.85
splitFTEsFunction · 0.85
flatMethod · 0.80
projectUpdateMethod · 0.45
likelyMethod · 0.45
appendMethod · 0.45
projectMethod · 0.45

Tested by

no test coverage detected