Out of Length Text Recognition with Sub-String Matching
Yongkun Du, Zhineng Chen, Caiyan Jia, Xieping Gao, Yu-Gang Jiang
TL;DR
This work tackles Out of Length (OOL) text recognition by introducing SMTR, a sub-String Matching-based method that iteratively recognizes text of arbitrary length using two cross-attention modules. Trained solely on short-text data, SMTR achieves strong performance on standard short-text benchmarks and demonstrates a clear advantage on the proposed Long Text Benchmark (LTB), aided by Regularization Training to distinguish similar substrings and Inference Augmentation to mitigate repeated-substring confusion and improve efficiency. The authors also establish the Long Text Benchmark to evaluate long-text capabilities and show SMTR's effectiveness across English and Chinese datasets, highlighting significant gains over state-of-the-art baselines in long-text scenarios. While iterative decoding yields accuracy benefits, the approach accepts a trade-off with decoding speed, which the authors plan to address in future work.
Abstract
Scene Text Recognition (STR) methods have demonstrated robust performance in word-level text recognition. However, in real applications the text image is sometimes long due to detected with multiple horizontal words. It triggers the requirement to build long text recognition models from readily available short (i.e., word-level) text datasets, which has been less studied previously. In this paper, we term this task Out of Length (OOL) text recognition. We establish the first Long Text Benchmark (LTB) to facilitate the assessment of different methods in long text recognition. Meanwhile, we propose a novel method called OOL Text Recognition with sub-String Matching (SMTR). SMTR comprises two cross-attention-based modules: one encodes a sub-string containing multiple characters into next and previous queries, and the other employs the queries to attend to the image features, matching the sub-string and simultaneously recognizing its next and previous character. SMTR can recognize text of arbitrary length by iterating the process above. To avoid being trapped in recognizing highly similar sub-strings, we introduce a regularization training to compel SMTR to effectively discover subtle differences between similar sub-strings for precise matching. In addition, we propose an inference augmentation strategy to alleviate confusion caused by identical sub-strings in the same text and improve the overall recognition efficiency. Extensive experimental results reveal that SMTR, even when trained exclusively on short text, outperforms existing methods in public short text benchmarks and exhibits a clear advantage on LTB. Code: https://github.com/Topdu/OpenOCR.
