Add column caching to MonochromeBitmapSources and use it to improve Data Matrix speed
[zxing.git] / android / src / com / google / zxing / client / android / YUVMonochromeBitmapSource.java
1 /*
2  * Copyright (C) 2008 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.client.android;
18
19 import android.graphics.Bitmap;
20 import android.graphics.Rect;
21 import com.google.zxing.common.BaseMonochromeBitmapSource;
22
23 /**
24  * This object implements MonochromeBitmapSource around an array of YUV data, giving you the option
25  * to crop to a rectangle within the full data. This can be used to exclude superfluous pixels
26  * around the perimeter and speed up decoding.
27  */
28 final class YUVMonochromeBitmapSource extends BaseMonochromeBitmapSource {
29
30   private final byte[] mYUVData;
31   private final int mDataWidth;
32   private final Rect mCrop;
33
34   /**
35    * Builds an object around a YUV buffer from the camera.
36    *
37    * @param yuvData    A byte array of planar Y data, followed by interleaved U and V
38    * @param dataWidth  The width of the Y data
39    * @param dataHeight The height of the Y data
40    * @param crop       The rectangle within the yuvData to expose to MonochromeBitmapSource users
41    */
42   YUVMonochromeBitmapSource(byte[] yuvData, int dataWidth, int dataHeight, Rect crop) {
43     mYUVData = yuvData;
44     mDataWidth = dataWidth;
45     mCrop = crop;
46     assert (crop.width() <= dataWidth);
47     assert (crop.height() <= dataHeight);
48   }
49
50   public int getHeight() {
51     return mCrop.height();
52   }
53
54   public int getWidth() {
55     return mCrop.width();
56   }
57
58   /**
59    * The Y channel is stored as planar data at the head of the array, so we just ignore the
60    * interleavd U and V which follow it.
61    *
62    * @param x The x coordinate to fetch within crop
63    * @param y The y coordinate to fetch within crop
64    * @return The luminance as an int, from 0-255
65    */
66   public int getLuminance(int x, int y) {
67     return mYUVData[(y + mCrop.top) * mDataWidth + x + mCrop.left] & 0xff;
68   }
69
70   // Nothing to do, since we have direct access to the mYUVData array.
71   public void cacheRowForLuminance(int y) {
72
73   }
74
75   public void cacheColumnForLuminance(int x) {
76
77   }
78
79   /**
80    * Create a greyscale Android Bitmap from the YUV data based on the crop rectangle.
81    *
82    * @return A 565 bitmap.
83    */
84   public Bitmap renderToBitmap() {
85     int width = mCrop.width();
86     int height = mCrop.height();
87     int[] pixels = new int[width * height];
88     for (int y = 0; y < height; y++) {
89       int base = (y + mCrop.top) * mDataWidth + mCrop.left;
90       for (int x = 0; x < width; x++) {
91         int grey = mYUVData[base + x] & 0xff;
92         pixels[y * width + x] = (0xff << 24) | (grey << 16) | (grey << 8) | grey;
93       }
94     }
95
96     Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
97     bitmap.setPixels(pixels, 0, width, 0, 0, width, height);
98     return bitmap;
99   }
100
101 }