I am having problems using C ++ sources from a Zxing project. I downloaded the whole project from https://code.google.com/p/zxing/downloads/list and just took the cpp files (core and cli).
I just want to have a method like this:
decode(byte[] dataToDecode, int widthFrame, int heightFrame)
but I really don't know how to do this (I'm really new to C ++ and the Zxing project).
I did a research on the Internet and found http://wiki.ssrrsummerschool.org/doku.php?id=robocup2012:qrcode-cppexample , which was exactly what I needed.
Unfortunately, the Zxing core has changed, and now I have some problems due to ArrayRef
Is there an easy way to decode a byte array (RGB) and return a result string?
Help will be really appreciated
source share