Barcode reading using picture taken using mobile phone camera

36,831

Solution 1

Google has made this INCREDIBLY simple with their Zebra Crossing libraries. They have support for doing scanning via images on the following platforms:

  • J2SE
  • Android

and others have ported to:

  • J2ME
  • CSharp
  • CPP
  • Rim
  • iPhone
  • Bug

As another poster already mentioned, on Android you could also use an Intent to call Barcode Reader with something like:

public Button.OnClickListener mScan = new Button.OnClickListener() {
    public void onClick(View v) {
        Intent intent = new Intent("com.google.zxing.client.android.SCAN");
        intent.putExtra("SCAN_MODE", "ONE_D_MODE");
        startActivityForResult(intent, 0);
    }
};

public void onActivityResult(int requestCode, int resultCode, Intent intent) {
    if (requestCode == 0) {
        if (resultCode == RESULT_OK) {
            String contents = intent.getStringExtra("SCAN_RESULT");
            String format = intent.getStringExtra("SCAN_RESULT_FORMAT");
            // Handle successful scan
        } else if (resultCode == RESULT_CANCELED) {
            // Handle cancel
        }
    }
}

Solution 2

Barcodes can be read through analysis taken from phone cameras.

A well-known complication is that fixed-focus cameras (like on the older 2G/3G iPhones and some Androids) cannot take in-focus snapshot form short distances. To counter that, special "deconvoluting" algorithms have to be used - and last time i checked this was not part of the Zebra Crossing.

Some have implemented solutions - i am aware of the following apps for iPhone who can read UPCs with fixed-focus camera: pic2shop (Benoit Maison / Vision Smarts), RedLaser (Occipital) and ShopSavvy (Big in Japan) - check them out and i think all of them have available SDKs for interested 3rd parties.

Solution 3

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.

Solution 4

I'd recommend picking a solution that also decodes barcodes in blurry images. There are many low-end Android phones out there that only have fixed focus cameras and which require more sophisticated image processing solutions than the binary thresholding that the software solutions listed above offer. Examples of such more advanced solutions include redlaser or the Scandit barcode scanner SDK.

The Scandit SDK is very easy to integrate and comes with a free community edition. There is also a product API that makes it straightforward to convert barcode numbers into product names.

Disclaimer: I am one of the co-founders of Scandit.

Share:
36,831
Prabhu R
Author by

Prabhu R

A programmer at heart. Interests include C++, Spring Framework, HTML5, CSS3, JavaScript Frameworks

Updated on September 04, 2020

Comments

  • Prabhu R
    Prabhu R over 3 years

    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?