// similarity = e.g. 0.99f static L<FoundImg> bwRawImageSearchInPart(BWImage big, BWImage pat, Rect part, 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; int x2 = min(w-wp, part.x2()); int y2 = min(h-hp, part.y2()); for (int y = part.y; y < y2; y++) for (int x = part.x; x < x2; x++) { float diff = bwImageSectionsSimilarity(big, pat, x, y, maxError); if (diff <= maxError) { float sim = 1-diff/(wp*hp); 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 #1005396
download show line numbers debug dex old transpilations
Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, sawdedvomwva, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1005894 |
Snippet name: | bwRawImageSearchInPart |
Eternal ID of this version: | #1005894/1 |
Text MD5: | f7d53ecca67c6bba59d101d7cff8cd26 |
Author: | stefan |
Category: | javax / imaging |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2016-12-12 14:34:12 |
Source code size: | 798 bytes / 22 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 452 / 488 |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) |