Reynet is a simple OCR (Optical Character Recognition) made in C and intended to solve a Sodoku from an image.
To build both the Sodoku solver and Reynet, run the following command:
$ make
To run the Reynet OCR gui, run the following command:
$ ./build/reynet
To run the command-line solver, run the following command:
$ ./build/solver <path_to_the_sudoku>
To build the test and run it, run the following commands:
$ make test/<name_of_the_test>
To build the test, run:
$ make build/<name_of_the_test>
To run the test, run:
$ make run/<name_of_the_test>