I need to develop an application which detects QR codes with Visual Studio 2010 and OpenCV. I am very new in this topic. Can someone explain in simple words the steps of the decode algorithm and the procedure to detect the patterns in a QR code? I have read the steps in the ISO/IEC 18004:2000 document but I don't understand well. Thanks in advance

link|improve this question
what language? C++? – hexa Aug 2 '11 at 12:19
Yes, the language I am using is C++ – Lucía Aug 2 '11 at 12:38
possible duplicate of QR Codes Recognition – Sean Owen Aug 2 '11 at 21:16
Yes, I have asked the same question but in order words to explain better my problem. Should I delete this question? – Lucía Aug 3 '11 at 8:26
feedback

2 Answers

At CodeProject, there is an Open Source QRCode Library written in C# and it is compatible with Visual Studio 2010. I'm not sure why you want to use OpenCV as that seems more complicated than necessary. You are going to have to read and understand ISO/IEC 18004:2000(E) for encoding and decoding. If you don't understand how to utilize a Reed Solomon at least (for error correction), then use a library.

link|improve this answer
Thanks for your answer. I want to use OpenCV to draw a square when a QR code is detected, so I would like to locate the finder patterns of a QR code and to know what the steps are to do it. – Lucía Aug 2 '11 at 12:37
@Lucia: That's a totally different question. – 0A0D Aug 2 '11 at 12:38
OK. Is not the decode algorithm what I have to search? Do you know where I can find some information which explains how to detect QR codes in an image? – Lucía Aug 2 '11 at 12:49
feedback

You may try the QrCode recognition engine on http://www.stecos.net. It detects QrCode anywhere on the image, rotated, erased, ... And it very easy to use.

link|improve this answer
I have downloaded a demo of the engine and I am going to test it. Thanks for your answer. – Lucía Aug 3 '11 at 8:36
feedback

Your Answer

 
or
required, but never shown

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