How do we do programmatic reading of a barcode that is captured using a mobile phone camera? For example, how do that using iPhone or Android or Java ME? Do we need separate hardware to read bar code or can we do image manipulation?
|
|
Google has made this INCREDIBLY simple with their Zebra Crossing libraries. They have support for doing scanning via images on the following platforms:
and others have ported to:
As another poster already mentioned, on Android you could also use an Intent to call Barcode Reader with something like:
|
||
|
|
|
|
For Android it's very easy. Simply use the service provided by the Barcode Scanner app (dependancy). Then the Barcode Scanner app will handle all of the scanning part and will simply return you the code. I think similar solutions are available for other platforms, but in Android it's even easier because of its Intent architecture. |
|||
|
|
|
|
Obviously it's possible to read the bar code from an image of it. You probably need to think about issues like
There are lots of existing projects and products that solve this ... Here is one, for instance. Some solutions seem to not be very sensitive to points like those above, but claim to be able to find and recognize bar codes regardless of orientation and location in the image, for instance. |
||
|
|
