显示解码 QRcode 期间的错误。使用ZXing Java库
我正在尝试使用 ZXing 库在 Java 中解码有错误的 QR 码。我想获取二进制字符串(由数据和 RS 纠错码字组成)中的所有错误位置,这些错误已解码为 QR 码。我如何使用 ZXing 库(或修改它)并解决我的问题。
I am trying to decode QR code with errors in Java with ZXing library. And I want to get all position of errors in binary string (consist from data and RS error correction codewords), which have decoded into QR code. How I can use ZXing library (or modify it) and solve my problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先尝试阅读源代码是个好主意。在
com.google.zxing.common.reedsolomon.ReedSolomonDecoder
中,有一个方法findErrorLocations()
,它非常清楚地做到了这一点。It's a good idea to try reading the source first. In
com.google.zxing.common.reedsolomon.ReedSolomonDecoder
, there is a methodfindErrorLocations()
which pretty clear does exactly this.