I want to detect korean language from the image and only korean. I don't want to detect english even if it occurs in the image. I can't seem to find any way on internet that could do this for me.
What I've tried:
I'm aware of the the image_context
attribute and am already using it to mention only korean but that didn't ignore english text. I did:
response = client.document_text_detection(image=image, image_context={"language_hints": ["ko"]})
What I want?
Is there a way to not detect English language from the image?
Or is there a way to block certain symbols from being detected ?
I believe the
image_context
attribute is not used to restrict the language that you want to extract on a single image. It does the opposite as it helps to amplify and get better results for understanding the language. 1One way to achieve your use-case might be by manipulating the return response from the Vision API. You can extract only the Korean characters or exclude the results with English text.
Or you can file a feature request for this.