Skip to content

Commit

Permalink
Reduce PDF417 variance leniency (fixes #1624) (#1628)
Browse files Browse the repository at this point in the history
  • Loading branch information
gredler committed May 23, 2023
1 parent 807fb0b commit 72f5ee7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
Expand Up @@ -40,7 +40,7 @@ public final class Detector {
private static final int[] INDEXES_START_PATTERN = {0, 4, 1, 5};
private static final int[] INDEXES_STOP_PATTERN = {6, 2, 7, 3};
private static final float MAX_AVG_VARIANCE = 0.42f;
private static final float MAX_INDIVIDUAL_VARIANCE = 0.8f;
private static final float MAX_INDIVIDUAL_VARIANCE = 0.7f;

// B S B S B S B S Bar/Space pattern
// 11111111 0 1 0 1 0 1 000
Expand Down
Expand Up @@ -29,10 +29,10 @@ public final class PDF417BlackBox1TestCase extends AbstractBlackBoxTestCase {

public PDF417BlackBox1TestCase() {
super("src/test/resources/blackbox/pdf417-1", new MultiFormatReader(), BarcodeFormat.PDF_417);
addTest(10, 10, 0.0f);
addTest(10, 10, 90.0f);
addTest(10, 10, 180.0f);
addTest(10, 10, 270.0f);
addTest(11, 11, 0.0f);
addTest(11, 11, 90.0f);
addTest(11, 11, 180.0f);
addTest(11, 11, 270.0f);
}

}
}
Binary file added core/src/test/resources/blackbox/pdf417-1/12.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions core/src/test/resources/blackbox/pdf417-1/12.txt
@@ -0,0 +1 @@
+A+CDMEABCDEFGHIJABCDFEFGH

0 comments on commit 72f5ee7

Please sign in to comment.