Giter VIP home page Giter VIP logo

phonegapocrplugin's Introduction

PhonegapOCRPlugin

ocr plugin for phonegap using tesseract

drag the tessdata folder to your phonegap project mark the checkbox "copy items into destination group" Choose the radio-button "Create folder references for any added folders"

drag the dependencies folder to your phonegap project mark the checkbox "copy items into destination group" Choose the radio-button "Created groups for any added folders"

drag OCRPlugin.h, OCRPlugin.m, claseAuxiliar.h and claseAuxiliar.mm

drag OCRPlugin.js to your www folder

Add the plugin to Cordova.plist

com.jcesarmobile.OCRPlugin OCRPlugin

Thanks to suzuki for compiling tesseract in this post http://tinsuke.wordpress.com/2011/11/01/how-to-compile-and-use-tesseract-3-01-on-ios-sdk-5

I have included an index.html with an example.

It uses the camera function with destinationType.FILE_URI (IMPORTANT!!!)

        // A button will call this function
        //
        function capturePhoto() {
            // Take picture using device camera and retrieve image as base64-encoded string
            navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality: 100,
                                        destinationType: destinationType.FILE_URI });
        }
        
        // Call the plugin when a photo is successfully retrieved
        //
        function onPhotoURISuccess(imageURI) {
            callNativePlugin({url_imagen: imageURI});
        }
        

        function callNativePlugin( returnSuccess ) { 
            OCRPlugin.callNativeFunction( nativePluginResultHandler, nativePluginErrorHandler, returnSuccess ); 
        } 
        
        function nativePluginResultHandler (result) { 
            alert("ok: "+result);
        } 
        
        function nativePluginErrorHandler (error) { 
            alert("error: "+error);
        }

phonegapocrplugin's People

Contributors

jcesarmobile avatar

Watchers

James Cloos avatar  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.