Added a new test library of 16 blurry EAN-13 barcodes. Currently we cannot decode any of them. I'm checking these in as a baseline so we can evaluate various sharpening techniques.
git-svn-id: https://zxing.googlecode.com/svn/trunk@368 59b500cc-1b3d-0410-9834-0bbf25fbcc57
BIN
core/test/data/blackbox/ean13-2/1.jpg
Normal file
After Width: | Height: | Size: 62 KiB |
1
core/test/data/blackbox/ean13-2/1.txt
Normal file
|
@ -0,0 +1 @@
|
|||
4952682102212
|
BIN
core/test/data/blackbox/ean13-2/10.jpg
Normal file
After Width: | Height: | Size: 49 KiB |
1
core/test/data/blackbox/ean13-2/10.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780201310054
|
BIN
core/test/data/blackbox/ean13-2/11.jpg
Normal file
After Width: | Height: | Size: 52 KiB |
1
core/test/data/blackbox/ean13-2/11.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780201310054
|
BIN
core/test/data/blackbox/ean13-2/12.jpg
Normal file
After Width: | Height: | Size: 56 KiB |
1
core/test/data/blackbox/ean13-2/12.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780201310054
|
BIN
core/test/data/blackbox/ean13-2/13.jpg
Normal file
After Width: | Height: | Size: 56 KiB |
1
core/test/data/blackbox/ean13-2/13.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780201633627
|
BIN
core/test/data/blackbox/ean13-2/14.jpg
Normal file
After Width: | Height: | Size: 60 KiB |
1
core/test/data/blackbox/ean13-2/14.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780201633627
|
BIN
core/test/data/blackbox/ean13-2/15.jpg
Normal file
After Width: | Height: | Size: 59 KiB |
1
core/test/data/blackbox/ean13-2/15.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780201633627
|
BIN
core/test/data/blackbox/ean13-2/16.jpg
Normal file
After Width: | Height: | Size: 55 KiB |
1
core/test/data/blackbox/ean13-2/16.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780201633627
|
BIN
core/test/data/blackbox/ean13-2/2.jpg
Normal file
After Width: | Height: | Size: 69 KiB |
1
core/test/data/blackbox/ean13-2/2.txt
Normal file
|
@ -0,0 +1 @@
|
|||
4952682102212
|
BIN
core/test/data/blackbox/ean13-2/3.jpg
Normal file
After Width: | Height: | Size: 61 KiB |
1
core/test/data/blackbox/ean13-2/3.txt
Normal file
|
@ -0,0 +1 @@
|
|||
4952682102212
|
BIN
core/test/data/blackbox/ean13-2/4.jpg
Normal file
After Width: | Height: | Size: 57 KiB |
1
core/test/data/blackbox/ean13-2/4.txt
Normal file
|
@ -0,0 +1 @@
|
|||
4952682102212
|
BIN
core/test/data/blackbox/ean13-2/5.jpg
Normal file
After Width: | Height: | Size: 75 KiB |
1
core/test/data/blackbox/ean13-2/5.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780321213358
|
BIN
core/test/data/blackbox/ean13-2/6.jpg
Normal file
After Width: | Height: | Size: 55 KiB |
1
core/test/data/blackbox/ean13-2/6.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780321213358
|
BIN
core/test/data/blackbox/ean13-2/7.jpg
Normal file
After Width: | Height: | Size: 62 KiB |
1
core/test/data/blackbox/ean13-2/7.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780321213358
|
BIN
core/test/data/blackbox/ean13-2/8.jpg
Normal file
After Width: | Height: | Size: 60 KiB |
1
core/test/data/blackbox/ean13-2/8.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780321213358
|
BIN
core/test/data/blackbox/ean13-2/9.jpg
Normal file
After Width: | Height: | Size: 50 KiB |
1
core/test/data/blackbox/ean13-2/9.txt
Normal file
|
@ -0,0 +1 @@
|
|||
9780201310054
|
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* Copyright 2008 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.google.zxing.oned;
|
||||
|
||||
import com.google.zxing.MultiFormatReader;
|
||||
import com.google.zxing.BarcodeFormat;
|
||||
import com.google.zxing.common.AbstractBlackBoxTestCase;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
/**
|
||||
* @author dswitkin@google.com (Daniel Switkin)
|
||||
*/
|
||||
public final class EAN13BlackBox2TestCase extends AbstractBlackBoxTestCase {
|
||||
|
||||
public EAN13BlackBox2TestCase() {
|
||||
super(new File("test/data/blackbox/ean13-2"), new MultiFormatReader(), 0, BarcodeFormat.EAN_13);
|
||||
}
|
||||
|
||||
}
|