Add cropping for RGBLuminanceSource. And remove some unrelated dead code.

git-svn-id: https://zxing.googlecode.com/svn/trunk@2394 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2012-08-23 23:44:47 +00:00
parent 5a557bac10
commit f309b56557
4 changed files with 76 additions and 28 deletions

View file

@ -14,6 +14,7 @@ Androida.hu / http://www.androida.hu/
Antonio Manuel Benjumea (Servinform S.A.) Antonio Manuel Benjumea (Servinform S.A.)
Asier Iturralde Asier Iturralde
Asmuri Anwar Asmuri Anwar
Betaminos
Brian Brown (Google) Brian Brown (Google)
Chang Hyun Park Chang Hyun Park
Christian Brunschen (Google) Christian Brunschen (Google)

View file

@ -169,8 +169,4 @@ public final class LocaleManager {
return TRANSLATED_HELP_ASSET_LANGUAGES.contains(LANGUAGE) ? LANGUAGE : DEFAULT_LANGUAGE; return TRANSLATED_HELP_ASSET_LANGUAGES.contains(LANGUAGE) ? LANGUAGE : DEFAULT_LANGUAGE;
} }
private static String doGetTLD(Map<String,String> map) {
String tld = map.get(COUNTRY);
return tld == null ? DEFAULT_TLD : tld;
}
} }

View file

@ -18,16 +18,27 @@ package com.google.zxing;
/** /**
* This class is used to help decode images from files which arrive as RGB data from * This class is used to help decode images from files which arrive as RGB data from
* an ARGB pixel array. It does not support cropping or rotation. * an ARGB pixel array. It does not support rotation.
* *
* @author dswitkin@google.com (Daniel Switkin) * @author dswitkin@google.com (Daniel Switkin)
* @author Betaminos
*/ */
public final class RGBLuminanceSource extends LuminanceSource { public final class RGBLuminanceSource extends LuminanceSource {
private final byte[] luminances; private final byte[] luminances;
private final int dataWidth;
private final int dataHeight;
private final int left;
private final int top;
public RGBLuminanceSource(int width, int height, int[] pixels) { public RGBLuminanceSource(int width, int height, int[] pixels) {
super(width, height); super(width, height);
dataWidth = width;
dataHeight = height;
left = 0;
top = 0;
// In order to measure pure decoding speed, we convert the entire image to a greyscale array // In order to measure pure decoding speed, we convert the entire image to a greyscale array
// up front, which is the same as the Y channel of the YUVLuminanceSource in the real app. // up front, which is the same as the Y channel of the YUVLuminanceSource in the real app.
luminances = new byte[width * height]; luminances = new byte[width * height];
@ -48,6 +59,24 @@ public final class RGBLuminanceSource extends LuminanceSource {
} }
} }
} }
private RGBLuminanceSource(byte[] pixels,
int dataWidth,
int dataHeight,
int left,
int top,
int width,
int height) {
super(width, height);
if (left + width > dataWidth || top + height > dataHeight) {
throw new IllegalArgumentException("Crop rectangle does not fit within image data.");
}
this.luminances = pixels;
this.dataWidth = dataWidth;
this.dataHeight = dataHeight;
this.left = left;
this.top = top;
}
@Override @Override
public byte[] getRow(int y, byte[] row) { public byte[] getRow(int y, byte[] row) {
@ -58,18 +87,56 @@ public final class RGBLuminanceSource extends LuminanceSource {
if (row == null || row.length < width) { if (row == null || row.length < width) {
row = new byte[width]; row = new byte[width];
} }
int offset = (y + top) * dataWidth + left;
System.arraycopy(luminances, y * width, row, 0, width); System.arraycopy(luminances, offset, row, 0, width);
return row; return row;
} }
/**
* Since this class does not support cropping, the underlying byte array already contains
* exactly what the caller is asking for, so give it to them without a copy.
*/
@Override @Override
public byte[] getMatrix() { public byte[] getMatrix() {
return luminances; int width = getWidth();
int height = getHeight();
// If the caller asks for the entire underlying image, save the copy and give them the
// original data. The docs specifically warn that result.length must be ignored.
if (width == dataWidth && height == dataHeight) {
return luminances;
}
int area = width * height;
byte[] matrix = new byte[area];
int inputOffset = top * dataWidth + left;
// If the width matches the full width of the underlying data, perform a single copy.
if (width == dataWidth) {
System.arraycopy(luminances, inputOffset, matrix, 0, area);
return matrix;
}
// Otherwise copy one cropped row at a time.
byte[] rgb = luminances;
for (int y = 0; y < height; y++) {
int outputOffset = y * width;
System.arraycopy(rgb, inputOffset, matrix, outputOffset, width);
inputOffset += dataWidth;
}
return matrix;
}
@Override
public boolean isCropSupported() {
return true;
}
@Override
public LuminanceSource crop(int left, int top, int width, int height) {
return new RGBLuminanceSource(luminances,
dataWidth,
dataHeight,
this.left + left,
this.top + top,
width,
height);
} }
} }

View file

@ -598,22 +598,6 @@ final class PDF417 {
return n > m + 1 ? n - m - 1 : 0; return n > m + 1 ? n - m - 1 : 0;
} }
/**
* Calculates the number of data codewords (equals the Symbol Length Descriptor).
*
* @param m the number of source codewords prior to the additional of the Symbol Length
* Descriptor and any pad codewords
* @param errorCorrectionLevel the error correction level (value between 0 and 8)
* @param c the number of columns in the symbol in the data region (excluding start, stop and
* row indicator codewords)
* @return the number of data codewords
*/
private static int getNumberOfDataCodewords(int m, int errorCorrectionLevel, int c) throws WriterException {
int k = PDF417ErrorCorrection.getErrorCorrectionCodewordCount(errorCorrectionLevel);
int r = getNumberOfRows(m, k, c);
return c * r - k;
}
private static void encodeChar(int pattern, int len, BarcodeRow logic) { private static void encodeChar(int pattern, int len, BarcodeRow logic) {
int map = 1 << len - 1; int map = 1 << len - 1;
boolean last = (pattern & map) != 0; //Initialize to inverse of first bit boolean last = (pattern & map) != 0; //Initialize to inverse of first bit