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

https://github.com/lsevero/tiny-handwritten-ocr

A tiny app that recognizes handwritten digits using IBM watson
https://github.com/lsevero/tiny-handwritten-ocr

Last synced: 2 months ago
JSON representation

A tiny app that recognizes handwritten digits using IBM watson

Awesome Lists containing this project

README

        

Tiny Handwritten OCR (using IBM Watson)
=======================================

![img](https://github.com/lsevero/tiny-handwritten-ocr/blob/master/img.png?raw=true)

This is a tiny example of how to recognize handwritten digits using IBM Watson Visual Recognition, this app runs solely on the client's browser, and sends and receives data to Watson through ajax calls.

The training set is at the folder digits/ , with the code to train Watson to recognize the digits ('training.sh').

You could open the 'index.html' with the browser or serve it with python or any static file server:

```python
#python 3
python -m http.server 8080
```

Or

```python
#python 2
python -m SimpleHTTPServer 8080
```

Then access it with 'localhost:8080' in a web browser.

The server/ folder holds the server code deployed to IBM Bluemix.