X-Git-Url: http://git.rot13.org/?p=zxing.git;a=blobdiff_plain;f=core%2Ftest%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2Fqrcode%2FQRCodeBlackBox5TestCase.java;h=8fca08ef8df75a8cb29d4e5e88e840f319cadd20;hp=07db2ccc34edd697b559aea391506f2df1225a6e;hb=608fe313d82bb79f0f5a96856697bdfb4a6305d3;hpb=db2d9dfbc5ca85836237e287cd8da84da2fb0ff4 diff --git a/core/test/src/com/google/zxing/qrcode/QRCodeBlackBox5TestCase.java b/core/test/src/com/google/zxing/qrcode/QRCodeBlackBox5TestCase.java index 07db2ccc..8fca08ef 100644 --- a/core/test/src/com/google/zxing/qrcode/QRCodeBlackBox5TestCase.java +++ b/core/test/src/com/google/zxing/qrcode/QRCodeBlackBox5TestCase.java @@ -23,6 +23,7 @@ import com.google.zxing.common.AbstractBlackBoxTestCase; /** * Some very difficult exposure conditions including self-shadowing, which happens a lot when * pointing down at a barcode (i.e. the phone's shadow falls across part of the image). + * The global histogram gets about 5/15, where the local one gets 15/15. * * @author dswitkin@google.com (Daniel Switkin) */ @@ -30,10 +31,10 @@ public final class QRCodeBlackBox5TestCase extends AbstractBlackBoxTestCase { public QRCodeBlackBox5TestCase() { super("test/data/blackbox/qrcode-5", new MultiFormatReader(), BarcodeFormat.QR_CODE); - addTest(5, 5, 0.0f); - addTest(4, 4, 90.0f); - addTest(5, 5, 180.0f); - addTest(5, 5, 270.0f); + addTest(15, 15, 0.0f); + addTest(15, 15, 90.0f); + addTest(15, 15, 180.0f); + addTest(15, 15, 270.0f); } }