!752 p { BWImage img = shootScreenBW(); int g = 3; AutoSegmenter as = new AutoSegmenter(3); as.diag = true; L clips = as.go(img); new L chars; for (Rect r : clips) for (Rect c : horizontalAutoSplit2(img.clip(r))) chars.add(translateRect(c, r.x, r.y)); setFrameTitle("g = " + g, showImageWithSelections(img.getBufferedImage(), chars)); showBWImage("Grid", as.visualizeGrid()); }