Add more unit tests for client.result, and more small code tweaks.
[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   @Override
51   public int getHeight() {
52     return mCrop.height();
53   }
54
55   @Override
56   public int getWidth() {
57     return mCrop.width();
58   }
59
60   /**
61    * The Y channel is stored as planar data at the head of the array, so we just ignore the
62    * interleavd U and V which follow it.
63    *
64    * @param x The x coordinate to fetch within crop
65    * @param y The y coordinate to fetch within crop
66    * @return The luminance as an int, from 0-255
67    */
68   @Override
69   protected int getLuminance(int x, int y) {
70     return mYUVData[(y + mCrop.top) * mDataWidth + x + mCrop.left] & 0xff;
71   }
72
73   @Override
74   protected int[] getLuminanceRow(int y, int[] row) {
75     int width = getWidth();
76     if (row == null || row.length < width) {
77       row = new int[width];
78     }
79     int offset = (y + mCrop.top) * mDataWidth + mCrop.left;
80     for (int x = 0; x < width; x++) {
81       row[x] = mYUVData[offset + x] & 0xff;
82     }
83     return row;
84   }
85
86   @Override
87   protected int[] getLuminanceColumn(int x, int[] column) {
88     int height = getHeight();
89     if (column == null || column.length < height) {
90       column = new int[height];
91     }
92     int offset = mCrop.top * mDataWidth + mCrop.left + x;
93     for (int y = 0; y < height; y++) {
94       column[y] = mYUVData[offset] & 0xff;
95       offset += mDataWidth;
96     }
97     return column;
98   }
99
100   /**
101    * Create a greyscale Android Bitmap from the YUV data based on the crop rectangle.
102    *
103    * @return An 8888 bitmap.
104    */
105   public Bitmap renderToBitmap() {
106     int width = mCrop.width();
107     int height = mCrop.height();
108     int[] pixels = new int[width * height];
109     for (int y = 0; y < height; y++) {
110       int base = (y + mCrop.top) * mDataWidth + mCrop.left;
111       for (int x = 0; x < width; x++) {
112         int grey = mYUVData[base + x] & 0xff;
113         pixels[y * width + x] = (0xff << 24) | (grey << 16) | (grey << 8) | grey;
114       }
115     }
116
117     Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
118     bitmap.setPixels(pixels, 0, width, 0, 0, width, height);
119     return bitmap;
120   }
121
122 }