sclass FaceFinderByPictures1 extends F1 { int width; L pictures; *() {} *(int *width, L *pictures) {} public Rect get(RGBImage img) { RGBImage img2 = rgbResize(img, width); FoundImg found = rgbRawSingleImageSearch_multiplePatterns(img2, pictures, 0.8f); //if (found != null) print("Found: " + found); ret foundImgToRect(found); } toString { ret "FaceFinderByPictures1(" + width + ", " + n2(l(pictures), "image") + ")"; } }