Is there a framework or other sample code for doing barcode recognition on iPhone / iPad?
feedback
|
protected by SLaks Mar 14 '11 at 17:03
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
Yes, we produced the 'Barcodes' application for the iPhone. It can decode QR Codes. The source code is vailable from the zxing project; specifically, you want to take a look at the iPhone client and the partial C++ port of the core library. The port is a little old, from circa the 0.9 release of the Java code, but should still work reasonably well. If you need to scan other formats, like 1D formats, you could continue the port of the Java code within this project to C++. | |||||||||||
feedback
|
|
Check out ZBar reads QR Code and ECN/ISBN codes and is available as under the Apache license. | |||||||
feedback
|
|
The iPhone 4 camera is more than capabale of doing barcodes. The zebra crossing barcode library has a fork on github zxing-iphone. It's open-source. | |||||||||
feedback
|
|
Not sure if this will help but here is a link to an open source QR Code library. As you can see a couple of people have already used this to create apps for the iphone. Wikipedia has an article explaining what QR Codes are. In my opinion QR Codes are much more fit for purpose than the standard barcode where the iphone is concerned as it was designed for this type of implementation. | |||
|
feedback
|
|
The problem with iPhone camera is that the first models (of which there are tons in use) have a fixed-focus camera that cannot take picture in-focus for distances under 2ft. The images are blurry and distorted and if taken from greater distance there is not enough detail/information from the barcode. A few companies have developed iPhone apps that can accomodate for that by using advanced de-blurring technologies. Those applications you can find on Apple app store: pic2shop, RedLaser and ShopSavvy. All of the companies have announced that they have also SDKs available - some for free or very preferential terms, check that one out. | |||||||||
feedback
|
|
You could take a look at Stefan Hafeneger's iPhone DataMatrix Reader Source Code (Google Code project; archived blog post) if it's still available. | |||||||||||
feedback
|
|
liteqr is a "Lite QR Reader in Objective C ported from zxing" on github and has support for Xcode 4. | |||
|
feedback
|
|
HOWTO: Add a barcode reader to an iPhone app, that points to ZBar iPhone SDK, looks helpful (from another thread). | ||||
|
feedback
|
|
There's another option for this now if you are open to licensing an SDK. Check out the RedLaser SDK that works for UPCA/EAN13 with or without autofocus. Recently updated. I'm a founder of the computer vision startup that built this new scanner, just FYI. | |||||
feedback
|
|
Not for reading or decoding but for creating barcodes on the phone: A free (as in beer) library for iPhone OS can be found here: http://www.softmatic.com/iphone.php All common code types are supported (1D and 2D). Disclaimer: We are the developers. | |||
|
feedback
|
|
Big in Japan (disclaimer:me) has recently made their SDK available. And it's free! Check out http://www.freebarcodescanner.com | |||||||||
feedback
|
|
Sometimes it can be useful also to generate QR codes. There is a superb C library for this which works like a charm. It is called libqrencode. Writing a custom view for displaying the QR code then is not that difficult and can be done with a basic understanding of QuartzCore. | |||||||||||
feedback
|