Files
OCR/README.md
2025-09-28 21:33:24 +02:00

475 B

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