Tightened a condition to reduce accidentally detecting the alignment pattern as a...
[zxing.git] / core / src / com / google / zxing / qrcode / detector / AlignmentPattern.java
1 /*
2  * Copyright 2007 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.qrcode.detector;
18
19 import com.google.zxing.ResultPoint;
20
21 /**
22  * <p>Encapsulates an alignment pattern, which are the smaller square patterns found in
23  * all but the simplest QR Codes.</p>
24  *
25  * @author Sean Owen
26  */
27 public final class AlignmentPattern implements ResultPoint {
28
29   private final float posX;
30   private final float posY;
31   private final float estimatedModuleSize;
32
33   AlignmentPattern(float posX, float posY, float estimatedModuleSize) {
34     this.posX = posX;
35     this.posY = posY;
36     this.estimatedModuleSize = estimatedModuleSize;
37   }
38
39   public float getX() {
40     return posX;
41   }
42
43   public float getY() {
44     return posY;
45   }
46
47   /**
48    * <p>Determines if this alignment pattern "about equals" an alignment pattern at the stated
49    * position and size -- meaning, it is at nearly the same center with nearly the same size.</p>
50    */
51   boolean aboutEquals(float moduleSize, float i, float j) {
52     return
53         Math.abs(i - posY) <= moduleSize &&
54             Math.abs(j - posX) <= moduleSize &&
55             (Math.abs(moduleSize - estimatedModuleSize) <= 1.0f ||
56                 Math.abs(moduleSize - estimatedModuleSize) / estimatedModuleSize <= 0.1f);
57   }
58
59 }