本文介绍了安卓:RGB888转换为Y800的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我收到来自vuforia捕获为RGB888字节[]图像。我想通过这zbar其期望的格式是Y800。
我怎样才能做到这一点。
I am getting image captured from vuforia as RGB888 bytes[] . I want to pass this to zbar which is expecting the format to be Y800 .How can i do that.
我试图
Image barcode = new Image(width, height, "RGB3");
barcode.setData(imgRGB888);
int result = scanner.scanImage(barcode.convert("Y800"));
但它没有给予正确的结果。
but its not giving right result
推荐答案
检查这个主题,并查看全部code:
check this Thread and Review Your Full Code :
顺便说一句:zbar接受GRAY格式太..
By the Way : zbar Accepts GRAY format too..
这篇关于安卓:RGB888转换为Y800的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!