android - Category for Receipt OCR -
i trying create receipt ocr app using tesseract. after recognition process, want determine category receipt belongs to, e.g food & drinks, transportation, phone bills etc. current approach is:
- create dictionary of categories alongside common stores.
- after recognition, use approximate string matching try , find store name inside dictionary , if exists, allocate receipt category.
- if not found, allocate receipt default category , wait user select 1 list. save pair in dictionary future.
the problem apart limitations of store category pairs, extremely slow if try use approximate string recognition each line dictionary. there way can improve process?
Comments
Post a Comment