[SCM] Multi-format 1D/2D barcode image processing library branch, upstream, updated. 3b22568664b0c0017ea793fd3cf5fde433e95717

srowen srowen at 59b500cc-1b3d-0410-9834-0bbf25fbcc57
Wed Jun 30 15:29:52 UTC 2010


The following commit has been merged in the upstream branch:
commit ec07b60388fa4abfbdcbafab0fe662ee81970dc5
Author: srowen <srowen at 59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Date:   Thu Mar 25 17:23:55 2010 +0000

    Turn down depth of recursion
    
    git-svn-id: http://zxing.googlecode.com/svn/trunk@1256 59b500cc-1b3d-0410-9834-0bbf25fbcc57

diff --git a/core/src/com/google/zxing/multi/GenericMultipleBarcodeReader.java b/core/src/com/google/zxing/multi/GenericMultipleBarcodeReader.java
index a6ace11..70d4542 100644
--- a/core/src/com/google/zxing/multi/GenericMultipleBarcodeReader.java
+++ b/core/src/com/google/zxing/multi/GenericMultipleBarcodeReader.java
@@ -42,7 +42,7 @@ import java.util.Vector;
  */
 public final class GenericMultipleBarcodeReader implements MultipleBarcodeReader {
 
-  private static final int MIN_DIMENSION_TO_RECUR = 30;
+  private static final int MIN_DIMENSION_TO_RECUR = 100;
 
   private final Reader delegate;
 

-- 
Multi-format 1D/2D barcode image processing library



More information about the Pkg-google-commits mailing list