1 | static float horizontalAutoSplit_inverse_threshold = 0.1f; |
2 | |
3 | static L<Rect> horizontalAutoSplit_inverse(BWImage img) {
|
4 | ret horizontalAutoSplit_inverse(img, horizontalAutoSplit_inverse_threshold); |
5 | } |
6 | |
7 | static L<Rect> horizontalAutoSplit_inverse(BWImage img, float threshold) {
|
8 | int w = img.getWidth(), h = img.getHeight(); |
9 | float[] f = bwImageColumnBrightnesses(img); |
10 | |
11 | new L<Rect> l; |
12 | int j = -1; |
13 | for (int i = 0; i < l(f); i++) |
14 | if (f[i] >= threshold) { // start / continue streak
|
15 | if (j < 0) j = i; |
16 | } else {
|
17 | if (j >= 0) { // end streak
|
18 | l.add(new Rect(j, 0, i-j, h)); |
19 | j = -1; |
20 | } |
21 | } |
22 | if (j >= 0) |
23 | l.add(new Rect(j, 0, w-j, h)); |
24 | ret l; |
25 | } |
Began life as a copy of #1005709
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1018616 |
| Snippet name: | horizontalAutoSplit_inverse [uses column average brightness, for white on black text/audio] |
| Eternal ID of this version: | #1018616/1 |
| Text MD5: | 44c1a2e4567665448f65ad7765b775bb |
| Author: | stefan |
| Category: | javax / ocr |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2018-10-08 00:54:15 |
| Source code size: | 715 bytes / 25 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 581 / 615 |
| Referenced in: | [show references] |