shannanyinxiang / SPTS

Official implementation of SPTS: Single-Point Text Spotting (ACM MM 2022 Oral)
137 stars 12 forks source link

Annotation files for ICDAR15 #9

Closed k-styles closed 1 year ago

k-styles commented 1 year ago

Hi, just starting out in this field, and amazing paper by the way! I wanted to test this model on a custom dataset. So I would like to know a bit about the rec field in your json annotations files. Could you please let me know how that kind of embedding is done in the literature?

shannanyinxiang commented 1 year ago

The rec field sequentially records the indices of the characters in a word. The word content can be recovered using the indices in the rec field and the character list in args.chars.

k-styles commented 1 year ago

Thanks! That clears it!