One of my android projects requires a feature of OCR reader to read the MICR code on the bank cheque leaf in. We have tried a sample code of android native application which is scanning the page and reading the maximum different types of fonts. But when scanning the MICR code, the app is not able to read the number and giving entirely different number. Please suggest if any feature available for OCR scanning in the MobileFirst platform, if possible please share the sample code. Please tell me whether it is possible to read a MICR code through the OCR scanner?
How to scan and read MICR code on Bank cheque using OCR scanner or any API available in MobileFirst Platform?
2.8k Views Asked by Bhaskar Reddi At
1
There are 1 best solutions below
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in OCR
- Tesseract - The specified module could not be found
- Linux OCR of LCD characters
- Calculating equation from image in Java
- Python Tesseract OCR training to a specific list of words
- How correct send encoded base64 image to nodeJS and get response in Java
- OCR serial number CRC, check algorithm
- How to extract a specific text from an image
- Can Tesseract be set to OCR only (no image modification) when producing a PDF?
- OCR on text stamped into metal plate
- Arabic number recognization
- Tesseract Assert failed trainingsampleset.cpp line 622 with mftraining
- Camera Preview and OCR
- Getting the ocrad.js demo to work?
- What is the image type in MNIST dataset?
- Issue reading Bold fonts with Tesseract API / Tess4j
Related Questions in IBM-CLOUD
- difference between IoT Foundation and Node-RED?
- Single Sign On service hangs when configuring it
- Error when adding a new build stage on Bluemix DevOps Services
- How to logout from Bluemix Single Sign On service?
- How to add users to Cloud Directory via API?
- node.js processing a form with Node.js Cloudant DB Web Starter
- How to gain authorization to perform requested action, specifically create an instance of a service in Bluemix?
- Insights for Twitter service in IBM Bluemix: Search case-sensitive string and other questions
- What file formats are supported by Watson Speech to Text in Bluemix
- Service broker error when adding Single Sign On service
- Example of using dashdb out node in Node-RED
- The links in the Bluemix confirmation email do not work
- Does Bluemix include a JBoss runtime?
- How to write query to my Cloudant database?
- Bluemix Single Sign On service: Node.js code for getting the currently logged in userid?
Related Questions in IBM-CLOUD-PLUGIN
- IBM Bluemix Cloud: IBM SDK for Node.js - Can our apps in Bluemix keep the existing version without auto-updates?
- Eclipse Neon 3 (4.6.3) is giving publishing error while deploying Node js onto IBM Bluemix
- IBM-Logging Plugin
- Running error opening app when deploying; uses a Github Watson Voice Bot tutorial
- Having an issue installing IBM Cloud CLI on Windows 10
- Unable to install IBM Bluemix Eclipse plugin for Luna and Mars
- How to scan and read MICR code on Bank cheque using OCR scanner or any API available in MobileFirst Platform?
- Application upload issue in bluemix
- How to customize Bluemix push notification?
- IBM Bluemix Push Notification not working on the production mode
- Visual analytics on bluemix
- Watson machine learning deployment takes too much time
- cf ic create volume error in bluemix
- error installing eclipse neon 2 bluemix plugin
- Where to put Bluemix Service documentation
Related Questions in MICR
- Any Java based examples to use LEADTOOLS for reading Bank Check's details?
- How to scan and read MICR code on Bank cheque using OCR scanner or any API available in MobileFirst Platform?
- printing to php script with micr font
- How to recognize MICR codes in Android
- How can I get MICR string from scanner by using TWAIN driver
- Javascript prototype extension method
- String is Not Numeric
- How to check MICR code for validity after the OCR step?
- How use MICR / E13-B Fonts in HTML Page
- How to recognize MICR codes?
- Check Printing with MICR E13-B Font
- Assignment aand Precedence of operators in c
- MICR Check Printing not working on Windows-7
- MICR Check printing precision using SSRS
- How to parse MICR line data?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This is not really related to MobileFirst Platform. MobileFirst provides you with an SDK to connection to backend systems with a security layer via Adapters, and an application structure if you've created a Hybrid app.
However the client-side of the application is Cordova based. As such you can use Cordova plug-ins to add missing functionality. For example, this OCR scanner plug-in: https://github.com/rmtheis/android-ocr
If you created a Native app, then this is really completely decoupled from MobileFirst and you need to find native libraries that does what you want, or write one such on your own.