Recognize text from image, with non Latin characters

I am trying to use Vision to recognize text from an image; it works fine for English but I would need to set it for other languages which are not using Latin characters.
I found in the documentation that for the class "VNRecognizeTextRequest" there is a "var recognitionLanguages: [String]" which is "An array of languages to detect, in priority order." but unfortunately it seems not to work, even though I tried to set it to other languages, using the ISO code as required.
Does anyone has any idea how to properly to do it?

Thanks!
Answered by Engineer in 615705022
Support for several new languages has been introduced to VNRecognizeTextRequest in iOS 14, iPadOS 14, macOS Big Sur, and tvOS 14. 

You can query the supported languages for each different paths and revisions using the VNRecognizeTextRequest class method supportedRecognitionLanguages(for:revision:)

The following guide has some information that you may find helpful https://developer.apple.com/documentation/vision/recognizing_text_in_images
Accepted Answer
Support for several new languages has been introduced to VNRecognizeTextRequest in iOS 14, iPadOS 14, macOS Big Sur, and tvOS 14. 

You can query the supported languages for each different paths and revisions using the VNRecognizeTextRequest class method supportedRecognitionLanguages(for:revision:)

The following guide has some information that you may find helpful https://developer.apple.com/documentation/vision/recognizing_text_in_images
Thanks a lot!!
The fast pass can now recognize: ["en-US", "fr-FR", "it-IT", "de-DE", "es-ES", "pt-BR"]
The accurate pass adds Chinese to that ["en-US", "fr-FR", "it-IT", "de-DE", "es-ES", "pt-BR", "zh-Hans", "zh-Hant"]


Recognize text from image, with non Latin characters
 
 
Q