Improved recognition of Code 39 barcodes

This commit is contained in:
Christoph Oberhofer
2015-04-10 21:42:15 +02:00
parent 8e97b3355a
commit 6524472f69
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -6556,7 +6556,7 @@ define(
for (i = 0; i < numCounters && numWideBars > 0; i++) {
if (counters[i] > maxNarrowWidth) {
numWideBars--;
if ((counters[i] * 3) >= wideBarWidth) {
if ((counters[i] * 2) >= wideBarWidth) {
return -1;
}
}
+2 -2
View File
File diff suppressed because one or more lines are too long