Skip to content

Commit 3a1468d

Browse files
committed
Merge pull request #55 from serratus/issue-49
Issue 49: Added support for ITF (Interleaved 2 of 5) barcodes
2 parents 59e3466 + 4b1c923 commit 3a1468d

25 files changed

+6543
-5758
lines changed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
quaggaJS
22
========
33

4-
- [Changelog](#changelog) (2015-07-08)
4+
- [Changelog](#changelog) (2015-07-29)
55

66
## What is QuaggaJS?
77

88
QuaggaJS is a barcode-scanner entirely written in JavaScript supporting real-
99
time localization and decoding of various types of barcodes such as __EAN__,
10-
__CODE 128__, __CODE 39__, __EAN 8__, __UPC-A__, __UPC-C__ and __CODABAR__.
11-
The library is also capable of using `getUserMedia` to get direct access to
12-
the user's camera stream. Although the code relies on heavy image-processing
13-
even recent smartphones are capable of locating and decoding barcodes in
14-
real-time.
10+
__CODE 128__, __CODE 39__, __EAN 8__, __UPC-A__, __UPC-C__, __I2of5__ and
11+
__CODABAR__. The library is also capable of using `getUserMedia` to get direct
12+
access to the user's camera stream. Although the code relies on heavy image-
13+
processing even recent smartphones are capable of locating and decoding
14+
barcodes in real-time.
1515

1616
Try some [examples](http://serratus.github.io/quaggaJS/examples) and check out
1717
the blog post ([How barcode-localization works in QuaggaJS][oberhofer_co_how])
@@ -367,6 +367,10 @@ on the ``singleChannel`` flag in the configuration when using ``decodeSingle``.
367367

368368
## <a name="changelog">Changelog</a>
369369

370+
### 2015-07-29
371+
- Features
372+
- Added basic support for [ITF][i2of5_wiki] barcodes (`i2of5_reader`)
373+
370374
### 2015-07-08
371375
- Improvements
372376
- Parameter tweaking to reduce false-positives significantly (for the
@@ -479,3 +483,4 @@ introduced to the API.
479483
[ean_8_wiki]: http://en.wikipedia.org/wiki/EAN-8
480484
[oberhofer_co_how]: http://www.oberhofer.co/how-barcode-localization-works-in-quaggajs/
481485
[github_examples]: http://serratus.github.io/quaggaJS/examples
486+
[i2of5_wiki]: https://en.wikipedia.org/wiki/Interleaved_2_of_5

bower.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quagga",
3-
"version": "0.6.13",
3+
"version": "0.6.14",
44
"description": "An advanced barcode-scanner written in JavaScript",
55
"main": "dist/quagga.js",
66
"ignore": [
@@ -58,6 +58,7 @@
5858
"code128",
5959
"code39",
6060
"codabar",
61+
"i2of5",
6162
"upc",
6263
"getusermedia",
6364
"imageprocessing"

0 commit comments

Comments
 (0)