!7 p { final BWImage img = shootScreenBW(); L l = autoSegment(img, 3); // Look for the "TinyBrain" link on page. for (Rect r : rectsSized(l, 106, 21)) { S md5 = md5OfBWImage(img.clip(r)); if (eq(md5, "00a0e5c8018efaf6f196b6f3f82f3a28")) { Rect r2 = ocr_stepToTheRight(r, l); Rect r3 = ocr_stepToTheRight(r2, l); if (r3 == null) print("No ID found"); else showBWImage("Possible ID", img.clip(r3)); } } }