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:

  1. create dictionary of categories alongside common stores.
  2. after recognition, use approximate string matching try , find store name inside dictionary , if exists, allocate receipt category.
  3. 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

Popular posts from this blog

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -

c# - Populating Gridview inside Listview ItemTemplate On Web User Control from Code Behind -