QR code decoder

Is there any way to write a QR code decoder in C ++ from scratch? I already did this in Python, using the module SimpleCvto access the webcam.

thank

+3
source share
3 answers

ZXing has a C ++ detector and decoder. All you need to provide is RGB or brightness image data as a vector.

(Full disclosure: I am the main developer of the ZXing C ++ QR port at this point.)

+4
source

SimpleCV. ZXing, , Java . Zbar (http://zbar.sourceforge.net/). ++ . , OpenCV, .

, .

+8

I use ZXing for Java, but their site says they have partial C ++ support http://code.google.com/p/zxing/

0
source

All Articles