I'm trying to do simple OCR .Net program using C# in Windows 10 without using Visual Studio. What i did is using ironpython + python script. I've managed to pass bitmap data into a python script and output it. However, when i tried to process it using OpenCV and Tesseract-OCR, ironpython fail to import opencv and pytesseract ( this is just a guess ) and further research about ironpython made me realize it doesn't support both of it.
Currently, i'm trying to switch to Cpython.
My questions is:
- Does Cpython support import of OpenCV and Pytesseract for python file?
- Or is there a more elegant and simple method for OCR using C#, with the help of OpenCV and Tesseract-OCR in Windows 10 without using Visual Studio?