Skip to content

Commit ed67eef

Browse files
committed
add initial README.
1 parent 486d01f commit ed67eef

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
[![HitCount](http://hits.dwyl.io/ro6ley/python-ocr-example.svg)](http://hits.dwyl.io/ro6ley/python-ocr-example)
2+
3+
# A Python Approach to Character Recognition
4+
5+
This repository contains the code for this [blogpost]() on [StackAbuse](https://stackabuse.com/).
6+
7+
## Getting Started
8+
9+
### Prerequisites
10+
11+
Kindly ensure you have the following installed on your machine:
12+
13+
- [ ] [Python 3](https://www.java.com/en/download/help/download_options.xml)
14+
- [ ] [Tesseract](https://maven.apache.org/install.html)
15+
- [ ] [Git]()
16+
- [ ] An IDE or Editor of your choice
17+
18+
### Running the Application
19+
20+
1. Clone the repository
21+
```
22+
$ git clone https://github.com/ro6ley/python-ocr-example.git
23+
```
24+
25+
2. Check into the cloned repository
26+
```
27+
$ cd python-ocr-example
28+
```
29+
30+
3. If you are using Pipenv, setup the virtual environment and start it as follows:
31+
```
32+
$ pipenv install && pipenv shell
33+
```
34+
35+
4. Install the requirements
36+
```
37+
$ pip install -r requirements.txt
38+
```
39+
40+
4. Run OCR server
41+
```
42+
43+
```
44+
45+
## Contribution
46+
47+
Please feel free to raise issues using this [template](./.github/ISSUE_TEMPLATE.md) and I'll get back to you.
48+
49+
You can also fork the repository, make changes and submit a Pull Request using this [template](./.github/PULL_REQUEST_TEMPLATE.md).

0 commit comments

Comments
 (0)