The CMake Build System is enabled. If you already know how that works, you can go ahead and do the following:
mkdir build;
cd build;
cmake ..;
make
libnnl.so
- Graves' neural net library.libocr.so
- OCR implemented as a facade tolibnnl
._pyocr.so
- Python interface library generated by SWIG- ocr.py - Wrapper which takes in python native types and handles SWIG Types.
Post building, put ports/python/test.py
inside the same folder as
pyocr.py
and _pyocr.so
.
In the directory run
LD_LIBRARY_PATH=. python test.py
Take a look at test.py
, for figuring out how to use the API.
- [] Proper packaging