Sadly, Useful Sensors seems to have pivoted to other edge AI tech and no longer sells this or their person detector.
Tiny Code Reader: a $7 QR code sensor
21–30 of 44 posts
Re: Tiny Code Reader: a $7 QR code sensor
#22Re: Tiny Code Reader: a $7 QR code sensor
#23I've had a recurring idea in my head of a sensor you could mount in your car, and then be able to read QR codes from the side of the road, and get an index of all the businesses you'd be driving by for later lookup. Not sure how feasible or useful it'd actually be...
Re: Tiny Code Reader: a $7 QR code sensor
#24That's inexpensive enough to be the basis for a modern recreation of the CueCat: https://en.wikipedia.org/wiki/CueCat
Re: Tiny Code Reader: a $7 QR code sensor
#25I've had a recurring idea in my head of a sensor you could mount in your car, and then be able to read QR codes from the side of the road, and get an index of all the businesses you'd be driving by for later lookup. Not sure how feasible or useful it'd actually be...
I could imagine maybe OCRing the results from a line-scan camera. That would read all the business signs and street names as you drive by them.
Re: Tiny Code Reader: a $7 QR code sensor
#26I've had a recurring idea in my head of a sensor you could mount in your car, and then be able to read QR codes from the side of the road, and get an index of all the businesses you'd be driving by for later lookup. Not sure how feasible or useful it'd actually be...
Some viofo dashcams even allow the connection of two secondary cams (those only FullHD) so you could scan to the left and right simultaneously to the front.
Re: Tiny Code Reader: a $7 QR code sensor
#27I've had a recurring idea in my head of a sensor you could mount in your car, and then be able to read QR codes from the side of the road, and get an index of all the businesses you'd be driving by for later lookup. Not sure how feasible or useful it'd actually be...
Re: Tiny Code Reader: a $7 QR code sensor
#28Somewhat incidentally, is there an actual description of how a low-tech QR code reader would work? I’ve looked for this a few years ago and all solutions I could find were of two flavours: (1) use ZXing (“Zebra Crossing”, a now-unmaintained library[1] for every 1D and 2D barcode under the sun); (2) use OpenCV. Nowhere could I find any discussion of how one would actually deal with the image-processing part by hand. A…
http://blog.qartis.com/decoding-small-qr-codes-by-hand/
https://beck-thompson.github.io/QRcodewebsite/
Reading QR codes without a computer! https://qr.blinry.org/
And then there are a number of OSS implementations for Android (check fdroid.orgl, Debian/Ubuntu, etc. Maybe study the code?
Re: Tiny Code Reader: a $7 QR code sensor
#29Re: Tiny Code Reader: a $7 QR code sensor
#30Somewhat incidentally, is there an actual description of how a low-tech QR code reader would work? I’ve looked for this a few years ago and all solutions I could find were of two flavours: (1) use ZXing (“Zebra Crossing”, a now-unmaintained library[1] for every 1D and 2D barcode under the sun); (2) use OpenCV. Nowhere could I find any discussion of how one would actually deal with the image-processing part by hand. A…
Using https://duckduckgo.com/?q=qrcode%20decode%20by%20hand gives me a number of results like http://blog.qartis.com/decoding-small-qr-codes-by-hand/ https://beck-thompson.github.io/QRcodewebsite/ Reading QR codes without a computer! https://qr.blinry.org/ And then there are a number of OSS implementations for Android (check fdroid.orgl, Debian/Ubuntu, etc. Maybe study the code?
What has thus far remained a mystery to me is going from a bag of noisy pixels with a blurry photo of a tattoo on a hairy arm surrounded by random desk clutter to array of booleans. I meant “by hand” as in “without libraries”, not “using a human”, as in the latter case the human’s visual cortex does the interesting part! And the open-source Android apps that I’ve looked at just wrap ZXing, which is huge (so a sibling commenter’s suggestion of looking at a different, QR-code-specific library is helpful).