static float autoCropOfBWImage_threshold = 0.9f;
static Rect autoCropOfBWImage(BWImage img) {
ret autoCropOfBWImage(img, new Rect(0, 0, img.getWidth(), img.getHeight()));
}
static Rect autoCropOfBWImage(BWImage img, Rect r) {
ret autoCropOfBWImage(img, r, autoCropOfBWImage_threshold);
}
// r = initial rectangle
static Rect autoCropOfBWImage(BWImage img, Rect r, float threshold) {
int x1 = r.x, y1 = r.y, x2 = r.x2(), y2 = r.y2();
// left side
end1:
while (x1 < x2) {
for (int y = y1; y < y2; y++)
if (img.getPixel(x1, y) <= threshold)
break end1;
x1++;
}
// top side
end2:
while (y1 < y2) {
for (int x = x1; x < x2; x++)
if (img.getPixel(x, y1) <= threshold)
break end2;
y1++;
}
// right side
end3:
while (x2 > x1) {
for (int y = y1; y < y2; y++)
if (img.getPixel(x2-1, y) <= threshold)
break end3;
x2--;
}
// bottom side
end4:
while (y2 > y1) {
for (int x = x1; x < x2; x++)
if (img.getPixel(x, y2-1) <= threshold)
break end4;
y2--;
}
if (x2 <= x1 || y2 <= y1)
return r;
else
return new Rect(x1, y1, x2 - x1, y2 - y1);
}
download show line numbers debug dex old transpilations
Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1005705 |
| Snippet name: | autoCropOfBWImage - returns Rect |
| Eternal ID of this version: | #1005705/1 |
| Text MD5: | e541664cbf192e2bdd5a43805da4bd9b |
| Author: | stefan |
| Category: | javax / ocr |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2016-12-11 07:57:09 |
| Source code size: | 1234 bytes / 59 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 965 / 971 |
| Referenced in: | #1005853 - autoCroppedBWImage - returns new BWImage #1006555 - autoCropOfBWImage_blackBG - returns Rect #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1006760 - autoCropOfRGBImage - returns Rect |