Small bug fix from Ralf
[zxing.git] / core / src / com / google / zxing / qrcode / detector / Detector.java
index 5b8b248..a8a7d83 100644 (file)
@@ -223,10 +223,10 @@ public class Detector {
         (int) pattern.getX(),
         (int) pattern.getY());
     if (Float.isNaN(moduleSizeEst1)) {
-      return moduleSizeEst2;
+      return moduleSizeEst2 / 7.0f;
     }
     if (Float.isNaN(moduleSizeEst2)) {
-      return moduleSizeEst1;
+      return moduleSizeEst1 / 7.0f;
     }
     // Average them, and divide by 7 since we've counted the width of 3 black modules,
     // and 1 white and 1 black module on either side. Ergo, divide sum by 14.