gpt4 book ai didi

java - 使用 zxing 从 camera2 拍摄的照片中解码数据矩阵

转载 作者:行者123 更新时间:2023-11-30 01:58:38 25 4
gpt4 key购买 nike


经过 10 多个小时的搜索和尝试,我终于决定在这里提问。我正在使用 android.hardware.camera2 库从设备相机获取图像。现在我想使用 zxing 库自动处理位图并解码数据矩阵代码(如果图片上有任何代码)。有一个计时器每秒处理图像五次,一切正常,但它不识别任何数据矩阵代码。到目前为止,我有以下代码:

public String readDataMatrix(Bitmap bitmap) {
int width = bitmap.getWidth(),
height = bitmap.getHeight();

int[] pixels = new int[width * height];
bitmap.getPixels(pixels, 0, width, 0, 0, width, height);
RGBLuminanceSource source = new RGBLuminanceSource(width, height, pixels);

BinaryBitmap bBitmap = new BinaryBitmap(new HybridBinarizer(source));
DataMatrixReader reader = new DataMatrixReader();

Result rawResult = null;

try {
rawResult = reader.decode(bBitmap);
String result = reader.decode(bBitmap).getText();
return result;
} catch (NotFoundException | ChecksumException | FormatException e) {
e.printStackTrace();
}

if (rawResult != null) {
Log.i(TAG, "==============================================");
Log.i(TAG, rawResult.getText());
Log.i(TAG, "==============================================");
}

return rawResult != null ? rawResult.getText() : null;
}

当用 QRCodeReader 替换 DataMatrixReader 并尝试使用二维码或 MultiFormatReader 尝试时,这甚至不起作用。
我尝试处理的每张图像都被 zxing 条形码扫描仪应用程序正确解码,所以问题出在代码中。

如果有人能告诉我这是如何工作的,我将非常高兴,因为我相信在这之后我将成为 creatively-cursing-java 的世界冠军 ^^

本尼

P.S.:我在关于 zxing 的每一个线程中都尝试了每一个解决方案,所以这真的是我最后的选择。

最佳答案

public String readDataMatrix(Bitmap bitmap) {
int width = bitmap.getWidth();
height = bitmap.getHeight();
byte[] data = bitmap.getRowBytes();

Result rawResult = null;
Log.e("C2", data.length + " (" + width + "x" + height + ")");
PlanarYUVLuminanceSource source = new PlanarYUVLuminanceSource(data, width, height);
BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
try {
rawResult = mQrReader.decode(bitmap);
onQRCodeRead(rawResult.getText());
} catch (ReaderException ignored) {
/* Ignored */
} finally {
mQrReader.reset();
}

Result rawResult = null;

if (rawResult != null) {
Log.i(TAG, "==============================================");
Log.i(TAG, rawResult.getText());
Log.i(TAG, "==============================================");
}

return rawResult != null ? rawResult.getText() : null;
}

这对我有用,使用自定义 PlanarYUVLuminanceSource :

    final public class PlanarYUVLuminanceSource extends LuminanceSource {

private final byte[] mYuvData;

public PlanarYUVLuminanceSource(byte[] yuvData, int width, int height) {
super(width, height);

mYuvData = yuvData;
}

@Override
public byte[] getRow(int y, byte[] row) {
if (y < 0 || y >= getHeight()) {
throw new IllegalArgumentException("Requested row is outside the image: " + y);
}
final int width = getWidth();
if (row == null || row.length < width) {
row = new byte[width];
}
final int offset = y * width;
System.arraycopy(mYuvData, offset, row, 0, width);
return row;
}

@Override
public byte[] getMatrix() {
return mYuvData;
}

@Override
public boolean isCropSupported() {
return true;
}

}

关于java - 使用 zxing 从 camera2 拍摄的照片中解码数据矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31820824/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com