Giter Club home page Giter Club logo

simple-gcv-ocr-script's Introduction

Simple GCV OCR Script

Basic Scala script for sending image requests to Google's CloudVision OCR REST API.
Creates an output file with the response from GCV containing all of the document texts with locations.

Sends images either from local files or urls.
Currently support only jpgs and pngs, if you want to send your pdf using this script you'll need to convert it to multiple jpgs.

What you need

Usage

Generate your access token and put it in the .gcv_token file in the same directory as script:

gcloud auth application-default print-access-token > .gcv_token

Launch the script using ammonite, provide either url or local path to each image file you want to send as a separate argument separated with space:

amm simpleGcvOcr.sc url1 url2 local_file1 local_file2

Order of the files doesn't matter. The response from GCV will be saved in an out.json file in the same directory.

You may want to change default paths to token and output files, if you do simply change the following lines inside simpleGcvOcr.sc:

val tokenFile = ".gcv_token"
val outFile   = "out.json"

Text documents vs pictures

This script in default is configured for text-dense documents, though you can use it for pictures containing sparse text (see "Document text detection" vs "Text detection" https://cloud.google.com/vision/docs/features-list).

If you want to send requests for text-sparse pictures, simply change the line

val featureType = "DOCUMENT_TEXT_DETECTION"

to

val featureType = "TEXT_DETECTION"

Dependancies

simple-gcv-ocr-script's People

Contributors

dominikpiskorz avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.