Creating a QR Reader
-
wrote on 27 Nov 2013, 13:58 last edited by
Hello, I've did some basic search but haven't found anything on this yet.
What I need is some way for creating a QR Reader inside Qt, or to know if this has already been done.
Does anyone have some pointers on this?thanks.
-
[quote author="zarnick" date="1385560727"]I've did some basic search but haven't found anything on this yet.[/quote]
really?!
Just by entering "qt qr" in google resulted in "this":http://developer.nokia.com/Community/Wiki/Qr_Decoder_in_Qt and "this":http://code.google.com/p/qtqr/. -
wrote on 27 Nov 2013, 14:09 last edited by
Yeah, I got those, however they didn't helped that much.
But thanks for the help anyway. -
and what exactly isn't helping with fully implemented solutions?
Maybe you can be more specific with your questions. -
wrote on 27 Nov 2013, 14:52 last edited by
Sorry raven, you stand correct, I do believe I wasn't that clear.
I would like to know if there's any kind of lib prebuilt on Qt to make this kind of processing.Thank you and, once again, I'm sorry.
-
i don't think so.
The problem is that the compiler used to build the prebuilt libraries would have to match exactly your compiler and also the same Qt version linked against in order load them successfully.
It way easier when you have the source-code and build it yourself and integrate it this way.
And since it's such a small project i think most people wouldn't even do the work to release different prebuilt packages.I suggest use "QZXing":http://sourceforge.net/p/qzxing and build it yourself and use it in your application. Shouldn't be that hard.
Only drawback is that all the projects are written for Qt4 so far. You would get rid of the errors in the project file and adapt them to Qt5.
-
wrote on 27 Nov 2013, 15:39 last edited by
I see. Thanks for the help raven!
Would you think possible to scan around 50 QR Codes almost at the same time, from a live camera? (this is part of my project) -
you would have to check ZXing capabilities for that. But it seems that it is a feature rich project.
-
wrote on 5 Sept 2014, 13:17 last edited by
hi
i am working on reading the QR image..?
Can u help me out with start up?Thanks
Bala Beemaneni -
wrote on 4 Jan 2021, 17:33 last edited by lukas_kosinski 1 Apr 2021, 17:34
Hi @beemaneni! You can read QR codes using SCodes library. It is based on C++ port of widely used ZXing library. It also allows you to create your own QR codes. Check it out on its Github page here.