Rm GUI / Add cmd line intf

This commit is contained in:
brice.boisson
2025-09-28 21:22:34 +02:00
parent eaa4da6ade
commit ac1dc513a1
3480 changed files with 2790 additions and 663 deletions

View File

@@ -1,20 +1,29 @@
# OCR
This project implement an OCR in C. The OCR use a one layer neural network to reconise charactere.
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 can use this program with this command
You compile the project using:
```
make
./OCR
```
When the program run you should first load an image in BitMap format
You can test the binary with:
```
./OCR -i misc/test_images/test_image.bmp -l misc/nnweight/nnweight.txt
```
Then you can upgrade the quality of your image with our different options. When you are ready simply press ```play```
For additional information, please use:
```
./OCR --help
```
Note: The OCR only read bitmap image.
## Clean
Use ```make clean``` to delete all trash files
To clean the environment use:
```
make clean
```