An open API service indexing awesome lists of open source software.

https://github.com/wax911/vision-barcode-scanner

Customized Google Vision API Barcode Scanner
https://github.com/wax911/vision-barcode-scanner

barcode-scanner qrcode-scanner vision-api

Last synced: 8 months ago
JSON representation

Customized Google Vision API Barcode Scanner

Awesome Lists containing this project

README

          

# Vision API: Barcode Scanner   [![Codacy Badge](https://api.codacy.com/project/badge/Grade/b3769f68c9134e9db6887e6fa910705c)](https://www.codacy.com/app/wax911/Vision-Barcode-Scanner?utm_source=github.com&utm_medium=referral&utm_content=wax911/Vision-Barcode-Scanner&utm_campaign=Badge_Grade)

__[Why this project exists?](https://stackoverflow.com/questions/33371331/how-to-get-detected-barcode-qr-automatically/33450716#33450716)__

This project is based on the [Google Vision Barcode API](https://github.com/googlesamples/android-vision). The Barcode Scanner API detects barcodes in real time in any orientation. You can also detect and parse several barcodes in different formats at the same time. The API supports the following barcode formats:

# 1D barcodes:

- EAN-13
- EAN-8
- UPC-A
- UPC-E
- Code-39
- Code-93
- Code-128
- ITF
- Codabar

# 2D barcodes: QR Code, Data Matrix, PDF-417, AZTEC

It automatically parses QR Codes, Data Matrix, PDF-417, and Aztec values, for the following supported formats:

- URL
- Contact information (VCARD, etc.)
- Calendar event
- Email
- Phone
- SMS
- ISBN
- WiFi
- Geo-location (latitude and longitude)
- AAMVA driver license/ID

# Modifications

- Full Screen Size Display
- Auto Capture Barcode on Detection

__Actual Files Modified__

1. [MainAcitivity.java](https://github.com/wax911/Vision-Barcode-Scanner/blob/master/barcode-reader/app/src/main/java/com/google/android/gms/samples/vision/barcodereader/MainActivity.java)
2. [BarcodeCaptureActivity.java](https://github.com/wax911/Vision-Barcode-Scanner/blob/master/barcode-reader/app/src/main/java/com/google/android/gms/samples/vision/barcodereader/BarcodeCaptureActivity.java)
3. [CameraSource.java](https://github.com/wax911/Vision-Barcode-Scanner/blob/master/barcode-reader/app/src/main/java/com/google/android/gms/samples/vision/barcodereader/ui/camera/CameraSource.java)
4. [BarcodeGraphicTracker.java](https://github.com/wax911/Vision-Barcode-Scanner/blob/master/barcode-reader/app/src/main/java/com/google/android/gms/samples/vision/barcodereader/BarcodeGraphicTracker.java)

Buy Me a Coffee at ko-fi.com

# Screen Shots

# Project License

GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.

# Original Licence

Copyright 2015 Google, Inc. All Rights Reserved.

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.