Finished work on the local binarizer and renamed it to HybridBinarizer. It uses the...
[zxing.git] / core / test / src / com / google / zxing / pdf417 / PDF417BlackBox2TestCase.java
1 /*
2  * Copyright 2009 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.pdf417;
18
19 import com.google.zxing.BarcodeFormat;
20 import com.google.zxing.DecodeHintType;
21 import com.google.zxing.MultiFormatReader;
22 import com.google.zxing.common.AbstractBlackBoxTestCase;
23
24 import java.util.Hashtable;
25 import java.util.Vector;
26
27 /**
28  * This test contains 480x240 images captured from an Android device at preview resolution.
29  *
30  * @author dswitkin@google.com (Daniel Switkin)
31  */
32 public final class PDF417BlackBox2TestCase extends AbstractBlackBoxTestCase {
33
34   public PDF417BlackBox2TestCase() {
35     super("test/data/blackbox/pdf417-2", new MultiFormatReader(), BarcodeFormat.PDF417);
36     addTest(11, 11, 0.0f);
37     addTest(11, 11, 180.0f);
38   }
39
40   @Override
41   protected Hashtable<DecodeHintType, Object> getHints() {
42      Hashtable<DecodeHintType, Object> table = new Hashtable<DecodeHintType, Object>(3);
43      Vector<BarcodeFormat> v = new Vector<BarcodeFormat>(1);
44      v.add(BarcodeFormat.PDF417);
45      table.put(DecodeHintType.POSSIBLE_FORMATS, v);
46      return table;
47    }
48
49 }