sbool bwRawImageSearch_verbose; static BWImageSectionComparator bwRawImageSearch_comparator; static int bwRawImageSearch_maxEntries = 1000; static L<FoundImg> bwRawImageSearch(BWImage big, BWImage pat, float similarity) { ret bwRawImageSearch(big, pat, similarity, bwRawImageSearch_maxEntries); } // similarity = e.g. 0.99f static L<FoundImg> bwRawImageSearch(BWImage big, BWImage pat, float similarity, int maxEntries) { new L<FoundImg> found; int wp = pat.getWidth(), hp = pat.getHeight(); int w = big.getWidth(), h = big.getHeight(); float maxError = (1f-similarity)*wp*hp; for (int y = 0; y < h-hp; y++) for (int x = 0; x < w-wp; x++) { float diff = bwRawImageSearch_comparator != null ? bwRawImageSearch_comparator.compare(big, pat, x, y, maxError) : bwImageSectionsSimilarity(big, pat, x, y, maxError); if (diff <= maxError) { float sim = 1-diff/(wp*hp); if (bwRawImageSearch_verbose) print(" Image found at " + x + "/" + y + " [sim: " + formatDouble(sim, 4) + "]"); Rect r = new Rect(x, y, wp, hp); found.add(new FoundImg(r, sim)); ping(); if (l(found) >= maxEntries) ret found; x += wp-1; } } ret found; }
Began life as a copy of #1005386
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: | #1005396 |
Snippet name: | bwRawImageSearch |
Eternal ID of this version: | #1005396/1 |
Text MD5: | dbc804fb86a120da0f6a54f8fd96a083 |
Author: | stefan |
Category: | javax / imaging |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2016-12-09 02:16:12 |
Source code size: | 1271 bytes / 32 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 612 / 608 |
Referenced in: | [show references] |