!7 p-exp { BWImage bw = new(200, 100, 0f); bwFillWhiteRect(bw, 30, 40, 80, 35); BWIntegralImage ii = new(bw); int w = ii.getWidth(), h = ii.getHeight(); for (int y = 0; y < h; y += 5) { for (int x = 0; x < h; x += 5) print_noNewLine(bwIntegralImage_whiteRectWithBlackBorder(ii, x, y, x+30, y+30, 2, 2) + " "); print(); } }