我正在Google Cloud Vision的帮助下在车牌上执行OCR。 问题在于它还识别出车牌中不必要的单词。
我试图为车牌编译一个模式,并在字符串上使用了search()。但是,它返回None。这是我到目前为止尝试过的。
pnum = 'REGISTERED AE 12435' #example of OCR result
plate1 = compile('^[A-Z]{2}[ ][0-9]{5}$')
result = plate1.search(pnum)
print(result)