HCIILAB/Scene-Text-Recognition-Recommendations

Papers, Datasets, Algorithms, SOTA for STR. Long-time Maintaining

Python

354

114 commits

updated Nov 29, 2023

See the code

README

Scene Text Recognition Recommendations


Everything about Scene Text Recognition

SOTA Papers Datasets Code Our Framework

Contents


Checkout Our New Work!

Revisiting Scene Text Recognition: A Data Perspective



1. Papers

All Papers Can be Find Here

  • Latest Papers:
up to (2023-11-29)
up to (2023-8-11)
up to (2023-7-25)
up to (2023-7-25)
up to (2023-7-20)
up to (2023-6-1)
up to (2023-5-16)
up to (2023-3-16)
up to (2022-12-29)
up to (2022-11-1)
up to (2022-11-1)
up to (2022-9-20)
up to (2022-8-9)
up to (2022-7-24)
up to (2022-7-9)
up to (2022-5-12)

2. Datasets

All Datasets Can be Find Here

2.1 Synthetic Training Datasets

DatasetDescriptionExamplesBaiduNetdisk link
SynthText9 million synthetic text instance images from a set of 90k common English words. Words are rendered onto nartural images with random transformationsSynthTextScene text datasets(提取码:emco)
MJSynth6 million synthetic text instances. It's a generation of SynthText.MJTextScene text datasets(提取码:emco)

2.2 Benchmarks

DatasetDescriptionExamplesBaiduNetdisk link
IIIT5k-Words(IIIT5K)3000 test images instances. Take from street scenes and from originally-digital imagesIIIT5KScene text datasets(提取码:emco)
Street View Text(SVT)647 test images instances. Some images are severely corrupted by noise, blur, and low resolutionSVTScene text datasets(提取码:emco)
StreetViewText-Perspective(SVT-P)639 test images instances. It is specifically designed to evaluate perspective distorted textrecognition. It is built based on the original SVT dataset by selecting the images at the sameaddress on Google Street View but with different view angles. Therefore, most text instancesare heavily distorted by the non-frontal view angle.SVTPScene text datasets(提取码:emco)
ICDAR 2003(IC03)867 test image instancesIC03Scene text datasets(提取码:mfir)
ICDAR 2013(IC13)1015 test images instancesIC13Scene text datasets(提取码:emco)
ICDAR 2015(IC15)2077 test images instances. As text images were taken by Google Glasses without ensuringthe image quality, most of the text is very small, blurred, and multi-orientedIC15Scene text datasets(提取码:emco)
CUTE80(CUTE)288 It focuses on curved text recognition. Most images in CUTE have acomplex background, perspective distortion, and poor resolutionCUTEScene text datasets(提取码:emco)

2.3 Other Real Datasets

DatasetDescriptionExamplesBaiduNetdisk link
COCO-Text39K Created from the MS COCO dataset. As the MS COCO dataset is not intended to capture text. COCO contains many occluded or low-resolution textsIIIT5KOthers(提取码:DLVC)
RCTW8186 in English. RCTW is created for Reading Chinese Text in the Wild competition. We select those in englishIIIT5KOthers(提取码:DLVC)
Uber-Text92K. Collecetd from Bing Maps Streetside. Many are house number, and some are text on signboardsIIIT5KOthers(提取码:DLVC)
Art29K. Art is created to recognize Arbitrary-shaped Text. Many are perspective or curved texts. It also includes Totaltext and CTW1500, which contain many rotated or curved textsIIIT5KOthers(提取码:DLVC)
LSVT34K in English. LSVT is a Large-scale Streeet View Text dataset, collected from streets in China. We select those in englishIIIT5KOthers(提取码:DLVC)
MLT1946K in English. MLT19 is created to recognize Multi-Lingual Text. It consists of seven languages:Arabic, Latin, Chinese, Japanese, Korean, Bangla, and Hindi. We select those in englishIIIT5KOthers(提取码:DLVC)
ReCTS23K in English. ReCTS is created for the Reading Chinese Text on Signboard competition. It contains many irregular texts arranged in various layouts or written with unique fonts. We select those in englishIIIT5KOthers(提取码:DLVC)

3 Public Code

3.1 Frameworks

PaddleOCR (百度)

  • PaddlePaddle/PaddleOCR
  • 特性 (截取至PaddleOCR):
    • 使用百度自研深度学习框架PaddlePaddle搭建
    • PP-OCR系列高质量预训练模型,准确的识别效果
      • 超轻量PP-OCRv2系列:检测(3.1M)+ 方向分类器(1.4M)+ 识别(8.5M)= 13.0M
      • 超轻量PP-OCR mobile移动端系列:检测(3.0M)+方向分类器(1.4M)+ 识别(5.0M)= 9.4M
      • 通用PPOCR server系列:检测(47.1M)+方向分类器(1.4M)+ 识别(94.9M)= 143.4M
      • 支持中英文数字组合识别、竖排文本识别、长文本识别
      • 支持多语言识别:韩语、日语、德语、法语
      • 丰富易用的OCR相关工具组件
    • 半自动数据标注工具PPOCRLabel:支持快速高效的数据标注
      • 数据合成工具Style-Text:批量合成大量与目标场景类似的图像
      • 文档分析能力PP-Structure:版面分析与表格识别
      • 支持用户自定义训练,提供丰富的预测推理部署方案
      • 支持PIP快速安装使用
      • 可运行于Linux、Windows、MacOS等多种系统
  • 支持算法(识别):
    • CRNN
    • Rosetta
    • STAR-Net
    • RARE
    • SRN
    • NRTR

MMOCR (OpenMMLab)

  • open-mmlab/mmocr
  • 特性(截取至MMOCR):
    • MMOCR 是基于 PyTorchmmdetection 的开源工具箱,专注于文本检测,文本识别以及相应的下游任务,如关键信息提取。 它是 OpenMMLab 项目的一部分。
    • 该工具箱不仅支持文本检测和文本识别,还支持其下游任务,例如关键信息提取。
  • 支持算法(识别)
    • ABINet (CVPR'2021)
    • CRNN (TPAMI'2016)
    • MASTER (PR'2021)
    • NRTR (ICDAR'2019)
    • RobustScanner (ECCV'2020)
    • SAR (AAAI'2019)
    • SATRN (CVPR'2020 Workshop on Text and Documents in the Deep Learning Era)
    • SegOCR (Manuscript'2021)

Deep Text Recognition Benchmark (ClovaAI)


DAVAR-Lab-OCR (海康威视)

  • hikopensource/DAVAR-Lab-OCR
  • 特性:
    • 基于mmocr搭建,复现了一些算法,同时将来会用于海康自研算法开源
  • 支持算法(识别)
    • Attention(CVPR 2016)
    • CRNN(TPAMI 2017)
    • ACE(CVPR 2019)
    • SPIN(AAAI 2021)
    • RF-Learning(ICDAR 2021)

3.2. Algorithms

CRNN


ASTER

  • Tensorflow, official, 651⭐: bgshih/aster
    • 官方实现版本,使用Tensorflow
  • Pytorch, 535⭐:ayumuymk/aster.pytorch
    • Pytorch版本,准确率相较原文有明显提升

MORANv2

  • Pytorch, official, 572⭐:Canjie-Luo/MORAN_v2
    • MORAN v2版本。更加稳定的单阶段训练,更换ResNet做backbone,使用双向解码器

4. SOTAs

All the models are evaluated in a lexicon-free manner

Regular DatasetIrregular  dataset
ModelYearIIITSVTIC13(857)IC13(1015)IC15(1811)IC15(2077)SVTPCUTE
CRNN 201578.280.8-86.7----
ASTER(L2R) 201592.6791.16-90.7476.1-78.7676.39
CombBest 201987.987.593.692.377.671.879.274
ESIR201993.390.2-91.3-76.979.683.3
SE-ASTER 202093.889.6-92.88081.483.6
DAN 202094.389.2-93.9-74.58084.4
RobustScanner 202095.388.1-94.8-77.179.590.3
AutoSTR 202094.790.9-94.281.8-81.7-
Yang et al. 202094.788.9-93.279.577.180.985.4
SATRN 202092.891.3-94.1-7986.587.8
SRN 202094.891.595.5-82.7-85.187.8
GA-SPIN 202195.290.9-94.882.879.583.287.5
PREN2D 202195.69496.4-83-87.691.7
Bhunia et al. 202195.292.2-95.5-8485.789.7
Luo et al. 202195.690.6- 96.0 83.981.485.191.3
VisionLAN 202195.891.795.7-83.7-8688.5
ABINet 202196.293.597.4-86.0-89.389.2
MATRN202196.794.997.995.886.682.990.594.1

Baek's Reimplementation Version

img

aster-pytorch
crnn-pytorch
datasets
frameworks
paper-recommendations
scene-text-recogniton
sotas

Contributors

Mountchicken

113 commits

HCIILAB

1 commits

HCIILAB/Scene-Text-Recognition-Recommendations

Papers, Datasets, Algorithms, SOTA for STR. Long-time Maintaining

Python

354

114 commits

updated Nov 29, 2023

See the code

README

Scene Text Recognition Recommendations


Everything about Scene Text Recognition

SOTA Papers Datasets Code Our Framework

Contents


Checkout Our New Work!

Revisiting Scene Text Recognition: A Data Perspective



1. Papers

All Papers Can be Find Here

  • Latest Papers:
up to (2023-11-29)
up to (2023-8-11)
up to (2023-7-25)
up to (2023-7-25)
up to (2023-7-20)
up to (2023-6-1)
up to (2023-5-16)
up to (2023-3-16)
up to (2022-12-29)
up to (2022-11-1)
up to (2022-11-1)
up to (2022-9-20)
up to (2022-8-9)
up to (2022-7-24)
up to (2022-7-9)
up to (2022-5-12)

2. Datasets

All Datasets Can be Find Here

2.1 Synthetic Training Datasets

DatasetDescriptionExamplesBaiduNetdisk link
SynthText9 million synthetic text instance images from a set of 90k common English words. Words are rendered onto nartural images with random transformationsSynthTextScene text datasets(提取码:emco)
MJSynth6 million synthetic text instances. It's a generation of SynthText.MJTextScene text datasets(提取码:emco)

2.2 Benchmarks

DatasetDescriptionExamplesBaiduNetdisk link
IIIT5k-Words(IIIT5K)3000 test images instances. Take from street scenes and from originally-digital imagesIIIT5KScene text datasets(提取码:emco)
Street View Text(SVT)647 test images instances. Some images are severely corrupted by noise, blur, and low resolutionSVTScene text datasets(提取码:emco)
StreetViewText-Perspective(SVT-P)639 test images instances. It is specifically designed to evaluate perspective distorted textrecognition. It is built based on the original SVT dataset by selecting the images at the sameaddress on Google Street View but with different view angles. Therefore, most text instancesare heavily distorted by the non-frontal view angle.SVTPScene text datasets(提取码:emco)
ICDAR 2003(IC03)867 test image instancesIC03Scene text datasets(提取码:mfir)
ICDAR 2013(IC13)1015 test images instancesIC13Scene text datasets(提取码:emco)
ICDAR 2015(IC15)2077 test images instances. As text images were taken by Google Glasses without ensuringthe image quality, most of the text is very small, blurred, and multi-orientedIC15Scene text datasets(提取码:emco)
CUTE80(CUTE)288 It focuses on curved text recognition. Most images in CUTE have acomplex background, perspective distortion, and poor resolutionCUTEScene text datasets(提取码:emco)

2.3 Other Real Datasets

DatasetDescriptionExamplesBaiduNetdisk link
COCO-Text39K Created from the MS COCO dataset. As the MS COCO dataset is not intended to capture text. COCO contains many occluded or low-resolution textsIIIT5KOthers(提取码:DLVC)
RCTW8186 in English. RCTW is created for Reading Chinese Text in the Wild competition. We select those in englishIIIT5KOthers(提取码:DLVC)
Uber-Text92K. Collecetd from Bing Maps Streetside. Many are house number, and some are text on signboardsIIIT5KOthers(提取码:DLVC)
Art29K. Art is created to recognize Arbitrary-shaped Text. Many are perspective or curved texts. It also includes Totaltext and CTW1500, which contain many rotated or curved textsIIIT5KOthers(提取码:DLVC)
LSVT34K in English. LSVT is a Large-scale Streeet View Text dataset, collected from streets in China. We select those in englishIIIT5KOthers(提取码:DLVC)
MLT1946K in English. MLT19 is created to recognize Multi-Lingual Text. It consists of seven languages:Arabic, Latin, Chinese, Japanese, Korean, Bangla, and Hindi. We select those in englishIIIT5KOthers(提取码:DLVC)
ReCTS23K in English. ReCTS is created for the Reading Chinese Text on Signboard competition. It contains many irregular texts arranged in various layouts or written with unique fonts. We select those in englishIIIT5KOthers(提取码:DLVC)

3 Public Code

3.1 Frameworks

PaddleOCR (百度)

  • PaddlePaddle/PaddleOCR
  • 特性 (截取至PaddleOCR):
    • 使用百度自研深度学习框架PaddlePaddle搭建
    • PP-OCR系列高质量预训练模型,准确的识别效果
      • 超轻量PP-OCRv2系列:检测(3.1M)+ 方向分类器(1.4M)+ 识别(8.5M)= 13.0M
      • 超轻量PP-OCR mobile移动端系列:检测(3.0M)+方向分类器(1.4M)+ 识别(5.0M)= 9.4M
      • 通用PPOCR server系列:检测(47.1M)+方向分类器(1.4M)+ 识别(94.9M)= 143.4M
      • 支持中英文数字组合识别、竖排文本识别、长文本识别
      • 支持多语言识别:韩语、日语、德语、法语
      • 丰富易用的OCR相关工具组件
    • 半自动数据标注工具PPOCRLabel:支持快速高效的数据标注
      • 数据合成工具Style-Text:批量合成大量与目标场景类似的图像
      • 文档分析能力PP-Structure:版面分析与表格识别
      • 支持用户自定义训练,提供丰富的预测推理部署方案
      • 支持PIP快速安装使用
      • 可运行于Linux、Windows、MacOS等多种系统
  • 支持算法(识别):
    • CRNN
    • Rosetta
    • STAR-Net
    • RARE
    • SRN
    • NRTR

MMOCR (OpenMMLab)

  • open-mmlab/mmocr
  • 特性(截取至MMOCR):
    • MMOCR 是基于 PyTorchmmdetection 的开源工具箱,专注于文本检测,文本识别以及相应的下游任务,如关键信息提取。 它是 OpenMMLab 项目的一部分。
    • 该工具箱不仅支持文本检测和文本识别,还支持其下游任务,例如关键信息提取。
  • 支持算法(识别)
    • ABINet (CVPR'2021)
    • CRNN (TPAMI'2016)
    • MASTER (PR'2021)
    • NRTR (ICDAR'2019)
    • RobustScanner (ECCV'2020)
    • SAR (AAAI'2019)
    • SATRN (CVPR'2020 Workshop on Text and Documents in the Deep Learning Era)
    • SegOCR (Manuscript'2021)

Deep Text Recognition Benchmark (ClovaAI)


DAVAR-Lab-OCR (海康威视)

  • hikopensource/DAVAR-Lab-OCR
  • 特性:
    • 基于mmocr搭建,复现了一些算法,同时将来会用于海康自研算法开源
  • 支持算法(识别)
    • Attention(CVPR 2016)
    • CRNN(TPAMI 2017)
    • ACE(CVPR 2019)
    • SPIN(AAAI 2021)
    • RF-Learning(ICDAR 2021)

3.2. Algorithms

CRNN


ASTER

  • Tensorflow, official, 651⭐: bgshih/aster
    • 官方实现版本,使用Tensorflow
  • Pytorch, 535⭐:ayumuymk/aster.pytorch
    • Pytorch版本,准确率相较原文有明显提升

MORANv2

  • Pytorch, official, 572⭐:Canjie-Luo/MORAN_v2
    • MORAN v2版本。更加稳定的单阶段训练,更换ResNet做backbone,使用双向解码器

4. SOTAs

All the models are evaluated in a lexicon-free manner

Regular DatasetIrregular  dataset
ModelYearIIITSVTIC13(857)IC13(1015)IC15(1811)IC15(2077)SVTPCUTE
CRNN 201578.280.8-86.7----
ASTER(L2R) 201592.6791.16-90.7476.1-78.7676.39
CombBest 201987.987.593.692.377.671.879.274
ESIR201993.390.2-91.3-76.979.683.3
SE-ASTER 202093.889.6-92.88081.483.6
DAN 202094.389.2-93.9-74.58084.4
RobustScanner 202095.388.1-94.8-77.179.590.3
AutoSTR 202094.790.9-94.281.8-81.7-
Yang et al. 202094.788.9-93.279.577.180.985.4
SATRN 202092.891.3-94.1-7986.587.8
SRN 202094.891.595.5-82.7-85.187.8
GA-SPIN 202195.290.9-94.882.879.583.287.5
PREN2D 202195.69496.4-83-87.691.7
Bhunia et al. 202195.292.2-95.5-8485.789.7
Luo et al. 202195.690.6- 96.0 83.981.485.191.3
VisionLAN 202195.891.795.7-83.7-8688.5
ABINet 202196.293.597.4-86.0-89.389.2
MATRN202196.794.997.995.886.682.990.594.1

Baek's Reimplementation Version

img

aster-pytorch
crnn-pytorch
datasets
frameworks
paper-recommendations
scene-text-recogniton
sotas

Contributors

Mountchicken

113 commits

HCIILAB

1 commits

Languages

Python

96.7%

Shell

3.3%