Does Keras OCR support other languages?

Viewed 609

I am trying to extract text from image using keras-ocr. Does it support other language? I am not getting proper documentation for supporting other languages.

1 Answers

Unfortunately the answer is no. Keras is written in Python and can only be used in this language. What you are looking for is referred to as an API wrapper and there is none available at this time. As an alternative, you can look into converting your Keras model into another language such as by using keras2cpp explained in a similar question.

Related