29 lines
475 B
Markdown
29 lines
475 B
Markdown
# OCR
|
|
|
|
This project implement an OCR in C. The OCR is made of a one hidden layer neural network and is aimed to reconise alpha numeric charactere.
|
|
|
|
## Compile
|
|
|
|
You compile the project using:
|
|
```
|
|
make
|
|
```
|
|
|
|
You can test the binary with:
|
|
```
|
|
./OCR -i misc/test_images/test_image.bmp -l misc/nnweight/nnweight.txt
|
|
```
|
|
|
|
For additional information, please use:
|
|
```
|
|
./OCR --help
|
|
```
|
|
|
|
Note: The OCR only read bitmap image.
|
|
|
|
## Clean
|
|
|
|
To clean the environment use:
|
|
```
|
|
make clean
|
|
``` |