Configuring ALPR (and paddleOCR) for Korean characters. #313
-
Hello, I am using codeproject.ai + AgentDVR combo to detect vehicles as well as license plates. Korean plates are usually in forms of nnn X nnnn or nn X nnnn. Problem is that numerals are recognize relatively well but I have fiddled with installed paddleOCR even within the venv and when tested against korean plates, paddleocr itself recognize koreans very well and puts out correct results. I am running this on Mac Mini M1 (so MacOS), and so far impressed with the results except this Korean character. Am I missing something here? I have changed modulesetting.json and added "COUNTRY" : "kr" under environment variable and changed following in options.py
I made sure of downloading both multi lingual detection and korean recognition inference modes and they are in place and ALPR module isn't complaining when started up. Still, I don't get Korean back. Does the module have any filtering sort of things in place? What's the correct github repository for this project? Thanks so much for providing this wonderful package if Mike is seeing this post. But I just have this itch that I cannot seem to scratch myself..... :( |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
There is a filter |
Beta Was this translation helpful? Give feedback.
There is a filter
Try change line 245 to this
pattern = re.compile('[^a-zA-Z0-9\uAC00-\uD7A3\u1100-\u11FF\uA960-\uA97F\uD7B0-\uD7FF]+')