 |
 |
|
 |
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
Invisible schrieb:
> 8. If you're using a 2D *camera* instead of a real laser barcode
> scanner, multiply all of the above issues by 7.
Not really. Just pick a random straight line through the picture, and
pretend that's your laser beam.
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
>> 8. If you're using a 2D *camera* instead of a real laser barcode
>> scanner, multiply all of the above issues by 7.
>
> Not really. Just pick a random straight line through the picture, and
> pretend that's your laser beam.
Except that a human wouldn't aim the laser beam at random, see? Also, as
I understand it, lasers don't go out of focus...
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
Invisible schrieb:
> Oh, and I finally found out what all those zig-zags are for:
>
> http://en.wikipedia.org/wiki/RM4SCC
Yeah. Back to Ogham. Somehow.
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
> Except that a human wouldn't aim the laser beam at random, see?
Humans don't aim the beam, usually it's wiggled about all over the place
automatically very quickly, in the hope of picking up a valid barcode scan
at some point. You could do the same on a 2D image (just pick points at
random on the edges and scan between them).
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
scott wrote:
>> Except that a human wouldn't aim the laser beam at random, see?
>
> Humans don't aim the beam, usually it's wiggled about all over the place
> automatically very quickly, in the hope of picking up a valid barcode
> scan at some point. You could do the same on a 2D image (just pick
> points at random on the edges and scan between them).
Actually you could do better. You could search around for a rectangular
area of white with black stuff inside it, try to figure out the
orientation of its edges, and then skim a line across the line edge.
It's kinda tricky though...
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
> Actually you could do better. You could search around for a rectangular
> area of white with black stuff inside it, try to figure out the
> orientation of its edges, and then skim a line across the line edge.
> It's kinda tricky though...
Why bother?
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
scott wrote:
>> Actually you could do better. You could search around for a
>> rectangular area of white with black stuff inside it, try to figure
>> out the orientation of its edges, and then skim a line across the line
>> edge. It's kinda tricky though...
>
> Why bother?
Well, true. I guess we're all going to die anyway, so...
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
Invisible schrieb:
>>> 8. If you're using a 2D *camera* instead of a real laser barcode
>>> scanner, multiply all of the above issues by 7.
>>
>> Not really. Just pick a random straight line through the picture, and
>> pretend that's your laser beam.
>
> Except that a human wouldn't aim the laser beam at random, see? Also, as
> I understand it, lasers don't go out of focus...
A human wouldn't aim a camera at random either. And as for the focus
thing, just use an auto-focusing camera and you're there.
Of course, if you want to make the /most/ out of a camera-based device,
to actually unleash all the advantages a camera potentially has over a
laser-based device - now that's a totally different story...
... but in that case you'd use 2D barcodes anyway :-)
There are matrix barcodes out there that I'd expect to be particularly
easy to use in this sort of application, featuring "bull's eye"-like
patterns or the like to faciliate finding the center by basically doing
some simple frequency filtering on the image.
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
clipka wrote:
> There are matrix barcodes out there that I'd expect to be particularly
> easy to use in this sort of application, featuring "bull's eye"-like
> patterns or the like to faciliate finding the center by basically doing
> some simple frequency filtering on the image.
Depends which symbiology.
Data Matrix uses black bars along two sides of the rectangle, as does
Semacode. MaxiCode has a "bull's eye" of concentric circles at the
center, while Aztec Code has concentric squares instead. And then QR
Codes have squares on three corners...
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |
|  |
|
 |
Invisible wrote:
> I'm currently writing a small Haskell library for this. Currently it
> understands 2 of 5 standard and interleaved, code 128, and I'm currently
> implementing code 39. Of course, the library only handles converting
> characters into 1s and 0s and back again. In "real" barcode handling
> things are far more complex; bar thicknesses have to be within certain
> tollerances when printing, and scanning is a fairly sophisticated
> problem...
I added a function which spits out a PostScript file containing the
barcode. Printed one out and compared it to a real barcode that encodes
the same messages. It seems the bar thicknesses don't quite match, but
otherwise it's quite similar.
In particular, Code 39 uses thin and thick bars and spaces. On my
barcode, thick is twice the size of thin, but on the real barcode it
seems to be something like 2.5 or something. (Obviously, you can't
easily represent this as a sequence of 1s and 0s. But hey, that's the
Real World for ya...)
I'm almost tempted to see if the reader can actually read my barcode.
Almost.
Post a reply to this message
|
 |
|  |
|  |
|
 |
|
 |
|  |