Deprecated YUV version
[zxing.git] / android / src / com / google / zxing / client / android / YUVMonochromeBitmapSource.java
1 /*
2  * Copyright (C) 2008 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.client.android;
18
19 import android.graphics.Bitmap;
20 import com.google.zxing.BlackPointEstimationMethod;
21 import com.google.zxing.MonochromeBitmapSource;
22 import com.google.zxing.common.BitArray;
23 import com.google.zxing.common.BlackPointEstimator;
24
25 /**
26  * This object implements MonochromeBitmapSource around an Android Bitmap. Rather than capturing an
27  * RGB image and calculating the grey value at each pixel, we ask the camera driver for YUV data and
28  * strip out the luminance channel directly. This should be faster but provides fewer bits, i.e.
29  * fewer grey levels.
30  *
31  * @author dswitkin@google.com (Daniel Switkin)
32  * @author srowen@google.com (Sean Owen)
33  * @deprecated
34  */
35 @Deprecated
36 final class YUVMonochromeBitmapSource implements MonochromeBitmapSource {
37
38   private final Bitmap image;
39   private int blackPoint;
40   private BlackPointEstimationMethod lastMethod;
41   private int lastArgument;
42
43   private static final int LUMINANCE_BITS = 5;
44   private static final int LUMINANCE_SHIFT = 8 - LUMINANCE_BITS;
45   private static final int LUMINANCE_BUCKETS = 1 << LUMINANCE_BITS;
46
47   YUVMonochromeBitmapSource(Bitmap image) {
48     this.image = image;
49     blackPoint = 0x7F;
50     lastMethod = null;
51     lastArgument = 0;
52   }
53
54   public boolean isBlack(int x, int y) {
55     return ((image.getPixel(x, y) >> 16) & 0xFF) < blackPoint;
56   }
57
58   public BitArray getBlackRow(int y, BitArray row, int startX, int getWidth) {
59     if (row == null) {
60       row = new BitArray(getWidth);
61     } else {
62       row.clear();
63     }
64     int[] pixelRow = new int[getWidth];
65      image.getPixels(pixelRow, 0, getWidth, startX, y, getWidth, 1);
66     for (int i = 0; i < getWidth; i++) {
67       if (((pixelRow[i] >> 16) & 0xFF) < blackPoint) {
68         row.set(i);
69       }
70     }
71     return row;
72   }
73
74   public int getHeight() {
75     return image.height();
76   }
77
78   public int getWidth() {
79     return image.width();
80   }
81
82   public void estimateBlackPoint(BlackPointEstimationMethod method, int argument) {
83     if (!method.equals(lastMethod) || argument != lastArgument) {
84       int width = image.width();
85       int height = image.height();
86       int[] histogram = new int[LUMINANCE_BUCKETS];
87       float biasTowardsWhite = 1.0f;
88       if (method.equals(BlackPointEstimationMethod.TWO_D_SAMPLING)) {
89         int minDimension = width < height ? width : height;
90         int startI = height == minDimension ? 0 : (height - width) >> 1;
91         int startJ = width == minDimension ? 0 : (width - height) >> 1;
92         for (int n = 0; n < minDimension; n++) {
93           int pixel = image.getPixel(startJ + n, startI + n);
94           histogram[((pixel >> 16) & 0xFF) >> LUMINANCE_SHIFT]++;
95         }
96       } else if (method.equals(BlackPointEstimationMethod.ROW_SAMPLING)) {
97         if (argument < 0 || argument >= height) {
98           throw new IllegalArgumentException("Row is not within the image: " + argument);
99         }
100         biasTowardsWhite = 2.0f;
101         int[] pixelRow = new int[width];
102         image.getPixels(pixelRow, 0, width, 0, argument, width, 1);
103         for (int x = 0; x < width; x++) {
104           histogram[((pixelRow[x] >> 16) & 0xFF) >> LUMINANCE_SHIFT]++;
105         }
106       } else {
107         throw new IllegalArgumentException("Unknown method: " + method);
108       }
109       blackPoint = BlackPointEstimator.estimate(histogram, biasTowardsWhite) << LUMINANCE_SHIFT;
110       lastMethod = method;
111       lastArgument = argument;
112     }
113   }
114
115   public BlackPointEstimationMethod getLastEstimationMethod() {
116     return lastMethod;
117   }
118
119   public MonochromeBitmapSource rotateCounterClockwise() {
120     throw new IllegalStateException("Rotate not supported");
121   }
122
123   public boolean isRotateSupported() {
124     return false;
125   }
126
127 }