X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=android%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2Fclient%2Fandroid%2FYUVMonochromeBitmapSource.java;h=ff03fcf2f575ee20fc3beba6a8544d8e846e6bf6;hb=3952301b023d6d26f1ed3cc3d466dd5ef3ec9086;hp=b50e16cc2f8ae217deded2105947a00b00d97845;hpb=32c496d9cb28846630b234526058bf205b1da7b5;p=zxing.git diff --git a/android/src/com/google/zxing/client/android/YUVMonochromeBitmapSource.java b/android/src/com/google/zxing/client/android/YUVMonochromeBitmapSource.java index b50e16cc..ff03fcf2 100755 --- a/android/src/com/google/zxing/client/android/YUVMonochromeBitmapSource.java +++ b/android/src/com/google/zxing/client/android/YUVMonochromeBitmapSource.java @@ -85,7 +85,6 @@ final class YUVMonochromeBitmapSource implements MonochromeBitmapSource { int width = image.width(); int height = image.height(); int[] histogram = new int[LUMINANCE_BUCKETS]; - float biasTowardsWhite = 1.0f; if (method.equals(BlackPointEstimationMethod.TWO_D_SAMPLING)) { int minDimension = width < height ? width : height; int startI = height == minDimension ? 0 : (height - width) >> 1; @@ -98,7 +97,6 @@ final class YUVMonochromeBitmapSource implements MonochromeBitmapSource { if (argument < 0 || argument >= height) { throw new IllegalArgumentException("Row is not within the image: " + argument); } - biasTowardsWhite = 2.0f; int[] pixelRow = new int[width]; image.getPixels(pixelRow, 0, width, 0, argument, width, 1); for (int x = 0; x < width; x++) { @@ -107,7 +105,7 @@ final class YUVMonochromeBitmapSource implements MonochromeBitmapSource { } else { throw new IllegalArgumentException("Unknown method: " + method); } - blackPoint = BlackPointEstimator.estimate(histogram, biasTowardsWhite) << LUMINANCE_SHIFT; + blackPoint = BlackPointEstimator.estimate(histogram) << LUMINANCE_SHIFT; lastMethod = method; lastArgument = argument; }