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
I had errors trying to install the Tesseract package, and traced it back to this change in tesseract v5.0:
Removed proprietary data types like GenericVector and STRING from public API
As a result, it is necessary to change STRING to std::string and GenericVector<STRING> to std::vector<std::string> throughout the Rtesseract code. I've done this and gotten a working install onto the fork of Rtesseract on the datalab-dev account. I will try to turn it into a Pull Request.
The text was updated successfully, but these errors were encountered:
I had errors trying to install the Tesseract package, and traced it back to this change in tesseract v5.0:
As a result, it is necessary to change
STRING
tostd::string
andGenericVector<STRING>
tostd::vector<std::string>
throughout the Rtesseract code. I've done this and gotten a working install onto the fork of Rtesseract on thedatalab-dev
account. I will try to turn it into a Pull Request.The text was updated successfully, but these errors were encountered: