Added code for the Data Matrix decoder.
[zxing.git] / core / src / com / google / zxing / datamatrix / detector / DetectorResult.java
1 /*
2  * Copyright 2007 Google Inc.
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.datamatrix.detector;
18
19 import com.google.zxing.ResultPoint;
20 import com.google.zxing.common.BitMatrix;
21
22 /**
23  * <p>Encapsulates the result of detecting a barcode in an image. This includes the raw
24  * matrix of black/white pixels corresponding to the barcode, and possibly points of interest
25  * in the image, like the location of finder patterns or corners of the barcode in the image.</p>
26  *
27  * @author srowen@google.com (Sean Owen)
28  */
29 public final class DetectorResult {
30
31   private final BitMatrix bits;
32   private final ResultPoint[] points;
33
34   DetectorResult(BitMatrix bits, ResultPoint[] points) {
35     this.bits = bits;
36     this.points = points;
37   }
38
39   public BitMatrix getBits() {
40     return bits;
41   }
42
43   public ResultPoint[] getPoints() {
44     return points;
45   }
46
47 }