Warning: session_start(): open(/var/lib/php/sessions/sess_a9vil26mbnfgm9kaoa9fbsqok6, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// requires #1005686 (PIF Classes v2)
static L continuousFind_step(L clips) {
ret continuousFind_step(clips, shootScreen2());
}
// creates TransientScreenshot and Found objects
static L continuousFind_step(L clips, BufferedImage screenshot) {
ret continuousFind_step(clips, screenshot, 1, true);
}
static L continuousFind_step(L clips, BufferedImage screenshot, int maxTotal, bool fullSearch) {
TransientScreenshot t = //unlisted(TransientScreenshot, screenshot);
new TransientScreenshot(screenshot);
try {
ImageFinder finder = new ImageFinder(ll(t/Screenshot), clips);
finder.maxTotal = maxTotal;
finder.fullSearch = fullSearch;
finder.run();
} finally {
t.disposeImage();
}
print("#found = " + countConcepts(Found));
ret findBackRefs(Found, t);
}