安卓:将RGB888到Y800(Android : converting RGB888 to Y80

2019-10-19 18:58发布

作为RGB888字节[]我正在从vuforia拍摄的图像。 我想通过这zbar和被期待的格式是Y800。 我怎样才能做到这一点。

我试过了

Image barcode = new Image(width, height, "RGB3");

    barcode.setData(imgRGB888);
    int result = scanner.scanImage(barcode.convert("Y800"));

但它不给正确的结果

Answer 1:

检查此主题并查看您的全码:

http://sourceforge.net/p/zbar/discussion/2308158/thread/ce0d36f8

顺便说一句:zbar和接受灰色格式太..



文章来源: Android : converting RGB888 to Y800
标签: android rgb zbar