views:

778

answers:

3

I would like to read a EAN-13 bar-code from an image in C. I found the OpenCV library that should help me to compute the image as well as an article about an iPhone App that can read Sudoku.

But in an other hand, I found an opensource library to read DataMatrix bar-code.

I would like to join an existing OpenSource project about reading bar-code instead of starting one, since I am sure that some people already worked on this.

Do you have an idea of were to start and what to use to read EAN-13 barcode in C ?

A: 

There is already some very broad 1990's patent on reading barcodes from a cell phone camera. I'm sorry I don't recall the details.

It killed a project I was working on, I do know that.

Daren Schwenke
I am doing that for an internship. but it is interesting to know.By the way it seams that there is an opensource project to read barcodes using Android's cellphones
Natim
A: 

This project looks quite close to what I am looking for : http://sourceforge.net/projects/zbar/

Natim
A: 

set a scan line through the image, record the pixel value and rebuild the waveform to bar width, so you can decode the barcode .

godsky