Click here to Skip to main content
15,860,859 members
Articles / Desktop Programming / Win32

Reading Barcodes from an Image - III

Rate me:
Please Sign up or sign in to vote.
4.88/5 (122 votes)
19 Oct 2009CPOL4 min read 1.2M   95.3K   414   158
Detects Code39, EAN, and Code128 barcodes in an image.

Screenshot

Acknowledgement

This project is based on the CodeProject article: Reading Barcodes from an Image - II by qlipoth. I asked and got permission from qlipoth to publish an enhanced version of his code.

Introduction

My company has a need for reading barcodes from images that also contain text on the same page as the barcode(s). When searching for a solution in C#, I found qlipoth's CodeProject article: Reading Barcodes from an Image - II. His code came a long way towards what I wanted, but I needed a few improvements. In the end, my changes amounted to a significant rewrite that justifies a new CodeProject publication.

Background

This code has several improvements compared to the original code written in 2005:

  1. Validation is added for Code39 barcodes. The code has much less chance of detecting a "barcode" that is not actually present.
  2. Detection speed is improved. The main problem in the original project was that it used Bitmap.RotateFlip, and that function is quite slow.
  3. Added EAN/UPC and Code128 barcode support. The original project could only detect Code39 barcodes.
  4. Fixed some bugs that were reported for qlipoth's project and for the related project Reading Barcodes from an Image published by Benjamin Liedblad in 2004.

Using the code

To open the solution, you'll need Visual Studio 2008. However, I have not used any constructs that are not .NET 1.1 compatible, so the actual code should also be compilable in Visual Studio 2003 or 2005.

To use the code, call FullScanPage or ScanPage with the Windows Bitmap object containing your image. The included TestApp (written in VB.NET) demonstrates the basic use:

VB
Dim barcodes As New System.Collections.ArrayList
BarcodeImaging.FullScanPage(barcodes, Me.PictureBox1.Image, 100)
If barcodes.Count > 0 Then
  ' Found one or more barcodes ...

The numscans parameter in both functions indicates how many bands of pixels should be scanned across or down the image. With a higher number, the code finds more barcodes, but of course, will also run slightly slower. Usually 50 - 100 scans will be OK to find all barcodes on a full page image.

Difference between FullScanPage and ScanPage

FullScanPage always scans horizontally and vertically, and attempts to detect all supported barcode types. If you know that your input material is always scanned in the same orientation, or if you do not need detection of all barcode types, you can make your program run faster by using ScanPage.

C#
public static void ScanPage(ref System.Collections.ArrayList CodesRead, 
       Bitmap bmp, int numscans, ScanDirection direction, BarcodeType types)

With the additional parameters direction and types, you can fine-tune barcode detection:

  • direction: can be ScanDirection.Vertical or ScanDirection.Horizontal. Use Vertical for detecting barcodes with vertical bars, or Horizontal if you expect barcodes that are rotated 90 degrees.
  • types: Pass BarcodeType.All to detect all supported barcode types, or you can specify one or more specific barcode types, like this:
    C#
    ScanPage(ref CodesRead, bmp, numscans, ScanDirection.Vertical,
             BarcodeType.Code39 | BarcodeType.Code128);

    Supported types are Code39, EAN, and Code128. The EAN reader will also detect UPC codes.

Points of interest

  • The EAN reader also reads the 2 or 5 digits supplemental barcodes often found on books and periodicals. As shown in the screenshot, a supplemental barcode will be returned as a separate barcode string starting with "S".
  • The Code128 reader has mixed code page support. The serial number in the sample image Code128test-CodeC.png starts as Code C, but the last digit is added as Code B.
  • The code uses a more advanced approach for measuring the "narrow bar width" than qlipoth's and Liedblad's versions. This should allow for better detection rates when reading EAN and Code128. In Code39, we only need to distinguish between narrow and wide bars, but the other barcode types use four different bar widths.
  • I have added the concept of "barcode zones", to allow detection of differently scaled barcodes on the same scan line. In Code128test-CodeC.png, this enables the software to read both the serial number and the UPC code that are printed side-by-side.

    barcode zones

References

I used the following references while writing this project:

  1. For implementing EAN detection: Wikipedia articles on the European Article Number, EAN-2, and EAN-5.
  2. For implementing Code 128: the character table and checksum calculation as published on code128barcodes.com, and the barcode generator published by IDAutomation.com Inc., for testing.

History

  • October 5, 2009: Original.
  • October 19, 2009: Improved Code39 detection, bugfixes. Added VB.NET translation of the barcode detection class and the COM interface provided by Alessandro Gubbiotti.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Decos Software Engineering BV
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Windows Phone 7 Version Pin
Berend Engelbrecht16-Jan-11 0:58
Berend Engelbrecht16-Jan-11 0:58 
GeneralRe: Windows Phone 7 Version Pin
gdorleus23-Feb-11 7:31
gdorleus23-Feb-11 7:31 
QuestionRe: Windows Phone 7 Version Pin
Diamonddrake8-Aug-11 17:38
Diamonddrake8-Aug-11 17:38 
I actually hit the article looking to write a windows phone version. I have a windows phone 7 app called PackageTracker. Some user's have asked that I include a way to scan a barcode to get the tracking number for outgoing shipments. I am interested in rewriting this code to work on the windows phone 7 platform but if someone has already done it (probably better than I would do) it would certainly make things much easier, credit would be given in the application.
GeneralRe: Windows Phone 7 Version Pin
umair18087-Oct-12 4:22
umair18087-Oct-12 4:22 
GeneralExcellent Pin
vermis014-Oct-10 10:10
vermis014-Oct-10 10:10 
QuestionI can't read Barcodes from some image by this code please suggest me for that.. Pin
Chandra Shekhar GuptaJI24-Sep-10 0:06
Chandra Shekhar GuptaJI24-Sep-10 0:06 
GeneralMy vote of 5 Pin
krisstoddart4-Sep-10 0:39
krisstoddart4-Sep-10 0:39 
QuestionScan PDFs [modified] Pin
Member 44427721-Sep-10 8:02
Member 44427721-Sep-10 8:02 
GeneralWonderful Work Pin
Steven Siessman3-Aug-10 19:11
Steven Siessman3-Aug-10 19:11 
GeneralAwesome! Pin
WashCaps2-Aug-10 3:30
WashCaps2-Aug-10 3:30 
GeneralUnsafe code Pin
eyale14-Jul-10 12:32
eyale14-Jul-10 12:32 
GeneralCan't detect light barcodes Pin
hderoubaix13-Jun-10 12:15
hderoubaix13-Jun-10 12:15 
Generalcode93 Pin
miste10-Jun-10 23:01
miste10-Jun-10 23:01 
GeneralUnreadable Code39 Barcode Pin
miste10-Jun-10 21:24
miste10-Jun-10 21:24 
GeneralRe: Unreadable Code39 Barcode Pin
miste10-Jun-10 23:03
miste10-Jun-10 23:03 
GeneralUnreadable Code128 Barcode Pin
Kinian18-May-10 4:17
Kinian18-May-10 4:17 
QuestionHow to read in a specific location !!! Pin
forkus200025-Apr-10 6:09
forkus200025-Apr-10 6:09 
AnswerRe: How to read in a specific location !!! Pin
Berend Engelbrecht25-Apr-10 6:46
Berend Engelbrecht25-Apr-10 6:46 
GeneralFantastic! Pin
Tim.Faraday8-Apr-10 9:38
Tim.Faraday8-Apr-10 9:38 
GeneralDetecting patch codes Pin
Nico Cuppen5-Apr-10 23:54
Nico Cuppen5-Apr-10 23:54 
GeneralRe: Detecting patch codes Pin
Berend Engelbrecht6-Apr-10 0:04
Berend Engelbrecht6-Apr-10 0:04 
GeneralImage Resolution Pin
Steve G Holt22-Feb-10 21:09
Steve G Holt22-Feb-10 21:09 
QuestionSometimes It fails on some images, Pin
Gurgen Chlingaryan14-Feb-10 22:43
Gurgen Chlingaryan14-Feb-10 22:43 
AnswerRe: Sometimes It fails on some images, Pin
Anna Nahapetyan5-Mar-10 5:59
Anna Nahapetyan5-Mar-10 5:59 
QuestionConfused about performance difference Pin
polyester4-Feb-10 20:20
polyester4-Feb-10 20:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.