You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does this version of Tesseract OCR resolve the following issues
In Tesseract most of the work is done with a C++ library.
Interoperability is not good with .Net and .Net Core
it offers poor cross-platform compatibility, including with Azure.
It requires us to choose the bit-version of our application, meaning that we may only deploy to either 32-bit or 64-bit targets.
Visual C++ runtimes are required for running Tesseract.
I need to use Tesseract OCR with .NET 7 and Azure deployment shall be there.
The text was updated successfully, but these errors were encountered:
Hi, everyone. Tesseract is great. I would like to make Tesseract OCR run on cross-platform .NET MAUI on Android/iOS/Windows.
But I haven't found how to specify the proper path to load tessdata when initializing TesseractEngine. The following sample code in the documentationdoesn't work in MAUI projects:
new TesseractEngine(@"./tessdata", "eng", EngineMode.Default)
MAUI cross-platform support disscussion here
Are there any way to make it compatible with such cross-platform projects?
Thanks a lot.
Does this version of Tesseract OCR resolve the following issues
In Tesseract most of the work is done with a C++ library.
Interoperability is not good with .Net and .Net Core
it offers poor cross-platform compatibility, including with Azure.
It requires us to choose the bit-version of our application, meaning that we may only deploy to either 32-bit or 64-bit targets.
Visual C++ runtimes are required for running Tesseract.
I need to use Tesseract OCR with .NET 7 and Azure deployment shall be there.
The text was updated successfully, but these errors were encountered: