2012-11-30 04:21 AM
Hi ,
Is it possible to read a qr code through a cmos camera and subsequently decode it with stm32 ?I search through google and did not see any relevant links. Can any one provide a guide or a link ?Thanks2012-11-30 04:45 AM
I believe it's surely possible. Don't know what are your requirements on robustness.
The demands for image resolution and performance are moderate IMHO. This could help you, while neither of the links points to STM32 or Cortex - specific code. (libqrencode) (Java, and C++ port)2012-12-01 07:44 AM
''I search through google and did not see any relevant links''
Really? None at all? I don't beleive that! There certainly are plenty of sites describing the format, there's the actual specifications, and many open-source projects implementing decoders and/or encoders. That will give you enough material to study and gain a sufficient understanding to implement something... But, if you were looking for a ready-made solution to just drop-in to your unspecified hardware - you obviously won't find that!2013-05-28 01:57 AM
I only have the experience of
http://www.onbarcode.com/products/net_barcode_reader/barcodes/qrcode.html
andhttp://www.onbarcode.com/products/java_barcode_reader/barcodes/qrcode.html
. I am not that familiar with the platform you mentioned. But you can go to that site for help. I believe you won't be disappointed.2013-07-19 12:05 AM
2013-07-19 03:16 AM
i don't think it can be applied on comos camera , but it can be used in some other areas , besides, it'll be better if it's cheaper. thanks for sharing.
Please top-post for your responses to be visible, leaving the entire quoted message isn't necessary unless you think the person you are responding to will edit/delete details from their original post. One of the bugs here with this excellent Microsoft Forum software is that it will reorder the thread if you edit your post.2013-12-24 10:49 PM
To read and decode QR code, a barcode scanner is what you need. But a hardware like this is quite pricy. So a lot people choose to install a
http://www.keepautomation.com/products/net_barcode_reader/barcode_qrcode.html
APP ON their phones or tablets with cameras. I heard even PSP now have capacity of with those kind of APPs. As for the decoding part, it is done right after scanning. A reader does not only ''read'' but ''decode'' too.2014-06-18 07:49 PM
not knowing this </colgroup>
http://www.keepautomation.com/products/java_barcode/barcodes/qrcode.html
2014-11-11 01:53 AM
Yes.There are many ways for you to read qr code. I use
http://www.barcodelib.com/net_barcode_reader/main.html
, it can read qr code as well as many other barcodes. You need to add the dll. file to your project. And here is a guide forhttp://www.barcodelib.com/net_barcode_reader/barcode_symbologies.html
. Hope it will solve your problem.2014-12-31 07:03 AM
''To read and decode QR code, a barcode scanner is what you need''
Not at all!One of the attractions of QR codes is precisely that they can be read using an ordinary camera - they donot
require special hardware! (my phone's camera is not good enough for barcodes, but can do QR codes)''So a lot people choose to install ahttp://www.keepautomation.com/products/net_barcode_reader/barcode_qrcode.html
APP ON their phones or tablets with cameras''Exactly - thus demonstrating that special hardware isnot
required!And zxing - which has already been mentioned - is one such app. And it (or, at least, its decoder) is open-source.