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.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

It's a good idea to try reading the source first. In com.google.zxing.common.reedsolomon.ReedSolomonDecoder, there is a method findErrorLocations() which pretty clear does exactly this.

link|improve this answer
Please, can you help me with realization this task? In first, there is image (bitmap), which has decoded by algorithm (ZXing for android source). I don't know, how use this method for scanned image. – Alexander Kornienko Feb 4 at 20:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.