Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eansearch/barcodescanner
Barcode scanner application that automatically looks up the barcodes on ean-search.org (based on GStreamer and Qt)
https://github.com/eansearch/barcodescanner
barcode barcode-reader barcode-scanner cpp ean13 gstreamer gtin qt qt5 upc upc-a
Last synced: 15 days ago
JSON representation
Barcode scanner application that automatically looks up the barcodes on ean-search.org (based on GStreamer and Qt)
- Host: GitHub
- URL: https://github.com/eansearch/barcodescanner
- Owner: eansearch
- License: gpl-3.0
- Created: 2022-01-02T15:34:49.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-19T18:34:31.000Z (about 3 years ago)
- Last Synced: 2024-11-13T04:31:49.015Z (2 months ago)
- Topics: barcode, barcode-reader, barcode-scanner, cpp, ean13, gstreamer, gtin, qt, qt5, upc, upc-a
- Language: Makefile
- Homepage: https://www.ean-search.org/
- Size: 36.1 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Barcode Scanner for Linux
This barcode scanner uses the Webcam on your PC and is based on Qt and GStreamer. It may also works on Windows (untested).
It can also automatically look up the products for the scanned EAN and UPC barcodes online on https://www.ean-search.org/ .
## Compiling (tested with Ubuntu 21.10 and Mint 20.2)
Open a terminal window:
```bash
sudo apt install build-essential git qtbase5-dev libgstreamer1.0-dev \
libgstreamer-plugins-base1.0-dev gstreamer1.0-plugins-base \
gstreamer1.0-plugins-good gstreamer1.0-plugins-badgit clone https://github.com/eansearch/BarcodeScanner
cd BarcodeScanner
qmake
make
```Then start it with
```bash
./BarcodeScanner &
```