├── .coveragerc ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── configs └── tpsnet │ ├── tpsnet_ctw1500.py │ ├── tpsnet_pretrain.py │ ├── tpsnet_totaltext.py │ └── tpsnet_totaltext_det.py ├── docker └── Dockerfile ├── docs ├── Makefile ├── api.rst ├── changelog.md ├── code_of_conduct.md ├── conf.py ├── datasets.md ├── deployment.md ├── getting_started.md ├── index.rst ├── install.md ├── make.bat ├── merge_docs.sh ├── requirements.txt └── stats.py ├── docs_zh_CN ├── Makefile ├── api.rst ├── conf.py ├── datasets.md ├── deployment.md ├── getting_started.md ├── index.rst ├── install.md ├── make.bat ├── merge_docs.sh └── stats.py ├── mmocr ├── __init__.py ├── apis │ ├── __init__.py │ ├── inference.py │ └── train.py ├── core │ ├── __init__.py │ ├── deployment │ │ ├── __init__.py │ │ └── deploy_utils.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── evaluation_e2e │ │ │ ├── Readme.txt │ │ │ ├── create_custom_test.py │ │ │ ├── ctw1500_res │ │ │ │ └── text_results.json │ │ │ ├── datasets │ │ │ │ └── evaluation │ │ │ │ │ ├── gt_ctw1500.zip │ │ │ │ │ ├── gt_totaltext.zip │ │ │ │ │ └── gt_totaltext │ │ │ │ │ ├── 0000000.txt │ │ │ │ │ ├── 0000001.txt │ │ │ │ │ ├── 0000002.txt │ │ │ │ │ ├── 0000003.txt │ │ │ │ │ ├── 0000004.txt │ │ │ │ │ ├── 0000005.txt │ │ │ │ │ ├── 0000006.txt │ │ │ │ │ ├── 0000007.txt │ │ │ │ │ ├── 0000008.txt │ │ │ │ │ ├── 0000009.txt │ │ │ │ │ ├── 0000010.txt │ │ │ │ │ ├── 0000011.txt │ │ │ │ │ ├── 0000012.txt │ │ │ │ │ ├── 0000013.txt │ │ │ │ │ ├── 0000014.txt │ │ │ │ │ ├── 0000015.txt │ │ │ │ │ ├── 0000016.txt │ │ │ │ │ ├── 0000017.txt │ │ │ │ │ ├── 0000018.txt │ │ │ │ │ ├── 0000019.txt │ │ │ │ │ ├── 0000020.txt │ │ │ │ │ ├── 0000021.txt │ │ │ │ │ ├── 0000022.txt │ │ │ │ │ ├── 0000023.txt │ │ │ │ │ ├── 0000024.txt │ │ │ │ │ ├── 0000025.txt │ │ │ │ │ ├── 0000026.txt │ │ │ │ │ ├── 0000027.txt │ │ │ │ │ ├── 0000028.txt │ │ │ │ │ ├── 0000029.txt │ │ │ │ │ ├── 0000030.txt │ │ │ │ │ ├── 0000031.txt │ │ │ │ │ ├── 0000032.txt │ │ │ │ │ ├── 0000033.txt │ │ │ │ │ ├── 0000034.txt │ │ │ │ │ ├── 0000035.txt │ │ │ │ │ ├── 0000036.txt │ │ │ │ │ ├── 0000037.txt │ │ │ │ │ ├── 0000038.txt │ │ │ │ │ ├── 0000039.txt │ │ │ │ │ ├── 0000040.txt │ │ │ │ │ ├── 0000041.txt │ │ │ │ │ ├── 0000042.txt │ │ │ │ │ ├── 0000043.txt │ │ │ │ │ ├── 0000044.txt │ │ │ │ │ ├── 0000045.txt │ │ │ │ │ ├── 0000046.txt │ │ │ │ │ ├── 0000047.txt │ │ │ │ │ ├── 0000048.txt │ │ │ │ │ ├── 0000049.txt │ │ │ │ │ ├── 0000050.txt │ │ │ │ │ ├── 0000051.txt │ │ │ │ │ ├── 0000052.txt │ │ │ │ │ ├── 0000053.txt │ │ │ │ │ ├── 0000054.txt │ │ │ │ │ ├── 0000055.txt │ │ │ │ │ ├── 0000056.txt │ │ │ │ │ ├── 0000057.txt │ │ │ │ │ ├── 0000058.txt │ │ │ │ │ ├── 0000059.txt │ │ │ │ │ ├── 0000060.txt │ │ │ │ │ ├── 0000061.txt │ │ │ │ │ ├── 0000062.txt │ │ │ │ │ ├── 0000063.txt │ │ │ │ │ ├── 0000064.txt │ │ │ │ │ ├── 0000065.txt │ │ │ │ │ ├── 0000066.txt │ │ │ │ │ ├── 0000067.txt │ │ │ │ │ ├── 0000068.txt │ │ │ │ │ ├── 0000069.txt │ │ │ │ │ ├── 0000070.txt │ │ │ │ │ ├── 0000071.txt │ │ │ │ │ ├── 0000072.txt │ │ │ │ │ ├── 0000073.txt │ │ │ │ │ ├── 0000074.txt │ │ │ │ │ ├── 0000075.txt │ │ │ │ │ ├── 0000076.txt │ │ │ │ │ ├── 0000077.txt │ │ │ │ │ ├── 0000078.txt │ │ │ │ │ ├── 0000079.txt │ │ │ │ │ ├── 0000080.txt │ │ │ │ │ ├── 0000081.txt │ │ │ │ │ ├── 0000082.txt │ │ │ │ │ ├── 0000083.txt │ │ │ │ │ ├── 0000084.txt │ │ │ │ │ ├── 0000085.txt │ │ │ │ │ ├── 0000086.txt │ │ │ │ │ ├── 0000087.txt │ │ │ │ │ ├── 0000088.txt │ │ │ │ │ ├── 0000089.txt │ │ │ │ │ ├── 0000090.txt │ │ │ │ │ ├── 0000091.txt │ │ │ │ │ ├── 0000092.txt │ │ │ │ │ ├── 0000093.txt │ │ │ │ │ ├── 0000094.txt │ │ │ │ │ ├── 0000095.txt │ │ │ │ │ ├── 0000096.txt │ │ │ │ │ ├── 0000097.txt │ │ │ │ │ ├── 0000098.txt │ │ │ │ │ ├── 0000099.txt │ │ │ │ │ ├── 0000100.txt │ │ │ │ │ ├── 0000101.txt │ │ │ │ │ ├── 0000102.txt │ │ │ │ │ ├── 0000103.txt │ │ │ │ │ ├── 0000104.txt │ │ │ │ │ ├── 0000105.txt │ │ │ │ │ ├── 0000106.txt │ │ │ │ │ ├── 0000107.txt │ │ │ │ │ ├── 0000108.txt │ │ │ │ │ ├── 0000109.txt │ │ │ │ │ ├── 0000110.txt │ │ │ │ │ ├── 0000111.txt │ │ │ │ │ ├── 0000112.txt │ │ │ │ │ ├── 0000113.txt │ │ │ │ │ ├── 0000114.txt │ │ │ │ │ ├── 0000115.txt │ │ │ │ │ ├── 0000116.txt │ │ │ │ │ ├── 0000117.txt │ │ │ │ │ ├── 0000118.txt │ │ │ │ │ ├── 0000119.txt │ │ │ │ │ ├── 0000120.txt │ │ │ │ │ ├── 0000121.txt │ │ │ │ │ ├── 0000122.txt │ │ │ │ │ ├── 0000123.txt │ │ │ │ │ ├── 0000124.txt │ │ │ │ │ ├── 0000125.txt │ │ │ │ │ ├── 0000126.txt │ │ │ │ │ ├── 0000127.txt │ │ │ │ │ ├── 0000128.txt │ │ │ │ │ ├── 0000129.txt │ │ │ │ │ ├── 0000130.txt │ │ │ │ │ ├── 0000131.txt │ │ │ │ │ ├── 0000132.txt │ │ │ │ │ ├── 0000133.txt │ │ │ │ │ ├── 0000134.txt │ │ │ │ │ ├── 0000135.txt │ │ │ │ │ ├── 0000136.txt │ │ │ │ │ ├── 0000137.txt │ │ │ │ │ ├── 0000138.txt │ │ │ │ │ ├── 0000139.txt │ │ │ │ │ ├── 0000140.txt │ │ │ │ │ ├── 0000141.txt │ │ │ │ │ ├── 0000142.txt │ │ │ │ │ ├── 0000143.txt │ │ │ │ │ ├── 0000144.txt │ │ │ │ │ ├── 0000145.txt │ │ │ │ │ ├── 0000146.txt │ │ │ │ │ ├── 0000147.txt │ │ │ │ │ ├── 0000148.txt │ │ │ │ │ ├── 0000149.txt │ │ │ │ │ ├── 0000150.txt │ │ │ │ │ ├── 0000151.txt │ │ │ │ │ ├── 0000152.txt │ │ │ │ │ ├── 0000153.txt │ │ │ │ │ ├── 0000154.txt │ │ │ │ │ ├── 0000155.txt │ │ │ │ │ ├── 0000156.txt │ │ │ │ │ ├── 0000157.txt │ │ │ │ │ ├── 0000158.txt │ │ │ │ │ ├── 0000159.txt │ │ │ │ │ ├── 0000160.txt │ │ │ │ │ ├── 0000161.txt │ │ │ │ │ ├── 0000162.txt │ │ │ │ │ ├── 0000163.txt │ │ │ │ │ ├── 0000164.txt │ │ │ │ │ ├── 0000165.txt │ │ │ │ │ ├── 0000166.txt │ │ │ │ │ ├── 0000167.txt │ │ │ │ │ ├── 0000168.txt │ │ │ │ │ ├── 0000169.txt │ │ │ │ │ ├── 0000170.txt │ │ │ │ │ ├── 0000171.txt │ │ │ │ │ ├── 0000172.txt │ │ │ │ │ ├── 0000173.txt │ │ │ │ │ ├── 0000174.txt │ │ │ │ │ ├── 0000175.txt │ │ │ │ │ ├── 0000176.txt │ │ │ │ │ ├── 0000177.txt │ │ │ │ │ ├── 0000178.txt │ │ │ │ │ ├── 0000179.txt │ │ │ │ │ ├── 0000180.txt │ │ │ │ │ ├── 0000181.txt │ │ │ │ │ ├── 0000182.txt │ │ │ │ │ ├── 0000183.txt │ │ │ │ │ ├── 0000184.txt │ │ │ │ │ ├── 0000185.txt │ │ │ │ │ ├── 0000186.txt │ │ │ │ │ ├── 0000187.txt │ │ │ │ │ ├── 0000188.txt │ │ │ │ │ ├── 0000189.txt │ │ │ │ │ ├── 0000190.txt │ │ │ │ │ ├── 0000191.txt │ │ │ │ │ ├── 0000192.txt │ │ │ │ │ ├── 0000193.txt │ │ │ │ │ ├── 0000194.txt │ │ │ │ │ ├── 0000195.txt │ │ │ │ │ ├── 0000196.txt │ │ │ │ │ ├── 0000197.txt │ │ │ │ │ ├── 0000198.txt │ │ │ │ │ ├── 0000199.txt │ │ │ │ │ ├── 0000200.txt │ │ │ │ │ ├── 0000201.txt │ │ │ │ │ ├── 0000202.txt │ │ │ │ │ ├── 0000203.txt │ │ │ │ │ ├── 0000204.txt │ │ │ │ │ ├── 0000205.txt │ │ │ │ │ ├── 0000206.txt │ │ │ │ │ ├── 0000207.txt │ │ │ │ │ ├── 0000208.txt │ │ │ │ │ ├── 0000209.txt │ │ │ │ │ ├── 0000210.txt │ │ │ │ │ ├── 0000211.txt │ │ │ │ │ ├── 0000212.txt │ │ │ │ │ ├── 0000213.txt │ │ │ │ │ ├── 0000214.txt │ │ │ │ │ ├── 0000215.txt │ │ │ │ │ ├── 0000216.txt │ │ │ │ │ ├── 0000217.txt │ │ │ │ │ ├── 0000218.txt │ │ │ │ │ ├── 0000219.txt │ │ │ │ │ ├── 0000220.txt │ │ │ │ │ ├── 0000221.txt │ │ │ │ │ ├── 0000222.txt │ │ │ │ │ ├── 0000223.txt │ │ │ │ │ ├── 0000224.txt │ │ │ │ │ ├── 0000225.txt │ │ │ │ │ ├── 0000226.txt │ │ │ │ │ ├── 0000227.txt │ │ │ │ │ ├── 0000228.txt │ │ │ │ │ ├── 0000229.txt │ │ │ │ │ ├── 0000230.txt │ │ │ │ │ ├── 0000231.txt │ │ │ │ │ ├── 0000232.txt │ │ │ │ │ ├── 0000233.txt │ │ │ │ │ ├── 0000234.txt │ │ │ │ │ ├── 0000235.txt │ │ │ │ │ ├── 0000236.txt │ │ │ │ │ ├── 0000237.txt │ │ │ │ │ ├── 0000238.txt │ │ │ │ │ ├── 0000239.txt │ │ │ │ │ ├── 0000240.txt │ │ │ │ │ ├── 0000241.txt │ │ │ │ │ ├── 0000242.txt │ │ │ │ │ ├── 0000243.txt │ │ │ │ │ ├── 0000244.txt │ │ │ │ │ ├── 0000245.txt │ │ │ │ │ ├── 0000246.txt │ │ │ │ │ ├── 0000247.txt │ │ │ │ │ ├── 0000248.txt │ │ │ │ │ ├── 0000249.txt │ │ │ │ │ ├── 0000250.txt │ │ │ │ │ ├── 0000251.txt │ │ │ │ │ ├── 0000252.txt │ │ │ │ │ ├── 0000253.txt │ │ │ │ │ ├── 0000254.txt │ │ │ │ │ ├── 0000255.txt │ │ │ │ │ ├── 0000256.txt │ │ │ │ │ ├── 0000257.txt │ │ │ │ │ ├── 0000258.txt │ │ │ │ │ ├── 0000259.txt │ │ │ │ │ ├── 0000260.txt │ │ │ │ │ ├── 0000261.txt │ │ │ │ │ ├── 0000262.txt │ │ │ │ │ ├── 0000263.txt │ │ │ │ │ ├── 0000264.txt │ │ │ │ │ ├── 0000265.txt │ │ │ │ │ ├── 0000266.txt │ │ │ │ │ ├── 0000267.txt │ │ │ │ │ ├── 0000268.txt │ │ │ │ │ ├── 0000269.txt │ │ │ │ │ ├── 0000270.txt │ │ │ │ │ ├── 0000271.txt │ │ │ │ │ ├── 0000272.txt │ │ │ │ │ ├── 0000273.txt │ │ │ │ │ ├── 0000274.txt │ │ │ │ │ ├── 0000275.txt │ │ │ │ │ ├── 0000276.txt │ │ │ │ │ ├── 0000277.txt │ │ │ │ │ ├── 0000278.txt │ │ │ │ │ ├── 0000279.txt │ │ │ │ │ ├── 0000280.txt │ │ │ │ │ ├── 0000281.txt │ │ │ │ │ ├── 0000282.txt │ │ │ │ │ ├── 0000283.txt │ │ │ │ │ ├── 0000284.txt │ │ │ │ │ ├── 0000285.txt │ │ │ │ │ ├── 0000286.txt │ │ │ │ │ ├── 0000287.txt │ │ │ │ │ ├── 0000288.txt │ │ │ │ │ ├── 0000289.txt │ │ │ │ │ ├── 0000290.txt │ │ │ │ │ ├── 0000291.txt │ │ │ │ │ ├── 0000292.txt │ │ │ │ │ ├── 0000293.txt │ │ │ │ │ ├── 0000294.txt │ │ │ │ │ ├── 0000295.txt │ │ │ │ │ ├── 0000296.txt │ │ │ │ │ ├── 0000297.txt │ │ │ │ │ ├── 0000298.txt │ │ │ │ │ └── 0000299.txt │ │ │ ├── rrc_evaluation_funcs.py │ │ │ ├── text_eval_script.py │ │ │ ├── text_evaluation.py │ │ │ └── totaltext_res │ │ │ │ └── text_results.json │ │ ├── hmean.py │ │ ├── hmean_e2e.py │ │ ├── hmean_ic13.py │ │ ├── hmean_iou.py │ │ ├── kie_metric.py │ │ ├── ner_metric.py │ │ ├── ocr_metric.py │ │ └── utils.py │ ├── mask.py │ └── visualize.py ├── datasets │ ├── __init__.py │ ├── base_dataset.py │ ├── builder.py │ ├── icdar_dataset.py │ ├── icdar_e2e_dataset.py │ ├── kie_dataset.py │ ├── ner_dataset.py │ ├── ocr_dataset.py │ ├── ocr_seg_dataset.py │ ├── pipelines │ │ ├── __init__.py │ │ ├── box_utils.py │ │ ├── crop.py │ │ ├── custom_format_bundle.py │ │ ├── dbnet_transforms.py │ │ ├── kie_transforms.py │ │ ├── loading.py │ │ ├── ner_transforms.py │ │ ├── ocr_seg_targets.py │ │ ├── ocr_transforms.py │ │ ├── test_time_aug.py │ │ ├── textdet_targets │ │ │ ├── __init__.py │ │ │ ├── base_textdet_targets.py │ │ │ ├── dbnet_targets.py │ │ │ ├── drrg_targets.py │ │ │ ├── fcenet_targets.py │ │ │ ├── panet_targets.py │ │ │ ├── psenet_targets.py │ │ │ ├── textsnake_targets.py │ │ │ └── tpsnet_targets.py │ │ ├── transforms.py │ │ └── transforms_e2e.py │ ├── text_det_dataset.py │ ├── uniform_concat_dataset.py │ └── utils │ │ ├── __init__.py │ │ ├── loader.py │ │ └── parser.py ├── models │ ├── __init__.py │ ├── builder.py │ ├── common │ │ ├── __init__.py │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ └── unet.py │ │ └── losses │ │ │ ├── __init__.py │ │ │ ├── dice_loss.py │ │ │ └── focal_loss.py │ ├── kie │ │ ├── __init__.py │ │ ├── extractors │ │ │ ├── __init__.py │ │ │ └── sdmgr.py │ │ ├── heads │ │ │ ├── __init__.py │ │ │ └── sdmgr_head.py │ │ └── losses │ │ │ ├── __init__.py │ │ │ └── sdmgr_loss.py │ ├── ner │ │ ├── __init__.py │ │ ├── classifiers │ │ │ ├── __init__.py │ │ │ └── ner_classifier.py │ │ ├── convertors │ │ │ ├── __init__.py │ │ │ └── ner_convertor.py │ │ ├── decoders │ │ │ ├── __init__.py │ │ │ └── fc_decoder.py │ │ ├── encoders │ │ │ ├── __init__.py │ │ │ └── bert_encoder.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ ├── masked_cross_entropy_loss.py │ │ │ └── masked_focal_loss.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── activations.py │ │ │ └── bert.py │ ├── textdet │ │ ├── __init__.py │ │ ├── dense_heads │ │ │ ├── __init__.py │ │ │ ├── db_head.py │ │ │ ├── drrg_head.py │ │ │ ├── fce_head.py │ │ │ ├── head_mixin.py │ │ │ ├── pan_head.py │ │ │ ├── pse_head.py │ │ │ └── textsnake_head.py │ │ ├── detectors │ │ │ ├── __init__.py │ │ │ ├── dbnet.py │ │ │ ├── drrg.py │ │ │ ├── fcenet.py │ │ │ ├── ocr_mask_rcnn.py │ │ │ ├── panet.py │ │ │ ├── psenet.py │ │ │ ├── single_stage_text_detector.py │ │ │ ├── text_detector_mixin.py │ │ │ └── textsnake.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ ├── db_loss.py │ │ │ ├── drrg_loss.py │ │ │ ├── fce_loss.py │ │ │ ├── pan_loss.py │ │ │ ├── pse_loss.py │ │ │ └── textsnake_loss.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── gcn.py │ │ │ ├── local_graph.py │ │ │ ├── proposal_local_graph.py │ │ │ └── utils.py │ │ ├── necks │ │ │ ├── __init__.py │ │ │ ├── fpem_ffm.py │ │ │ ├── fpn_cat.py │ │ │ ├── fpn_unet.py │ │ │ └── fpnf.py │ │ └── postprocess │ │ │ ├── __init__.py │ │ │ └── wrapper.py │ ├── textend2end │ │ ├── __init__.py │ │ ├── det_heads │ │ │ ├── __init__.py │ │ │ └── tpsnet_head.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ └── tpsnet_losses.py │ │ ├── postprocess │ │ │ ├── __init__.py │ │ │ └── tps_decoder.py │ │ ├── recog_heads │ │ │ ├── __init__.py │ │ │ ├── attn_predictor.py │ │ │ └── tps_recog_head.py │ │ ├── spotters │ │ │ ├── TPSNet.py │ │ │ └── __init__.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── grid_sample_batch │ │ │ ├── grid_sample_batch.py │ │ │ ├── setup.py │ │ │ └── src │ │ │ │ ├── GridSamplerBatch.cpp │ │ │ │ ├── GridSamplerBatch.h │ │ │ │ ├── GridSamplerBatch_cuda.cu │ │ │ │ ├── GridSamplerBatch_cuda.cuh │ │ │ │ └── grid_sampler.cpp │ │ │ └── tps_align.py │ └── textrecog │ │ ├── __init__.py │ │ ├── backbones │ │ ├── __init__.py │ │ ├── nrtr_modality_transformer.py │ │ ├── resnet31_ocr.py │ │ └── very_deep_vgg.py │ │ ├── convertors │ │ ├── __init__.py │ │ ├── attn.py │ │ ├── base.py │ │ ├── ctc.py │ │ └── seg.py │ │ ├── decoders │ │ ├── __init__.py │ │ ├── base_decoder.py │ │ ├── crnn_decoder.py │ │ ├── position_attention_decoder.py │ │ ├── robust_scanner_decoder.py │ │ ├── sar_decoder.py │ │ ├── sar_decoder_with_bs.py │ │ ├── sequence_attention_decoder.py │ │ └── transformer_decoder.py │ │ ├── encoders │ │ ├── __init__.py │ │ ├── base_encoder.py │ │ ├── channel_reduction_encoder.py │ │ ├── sar_encoder.py │ │ └── transformer_encoder.py │ │ ├── heads │ │ ├── __init__.py │ │ └── seg_head.py │ │ ├── layers │ │ ├── __init__.py │ │ ├── conv_layer.py │ │ ├── dot_product_attention_layer.py │ │ ├── lstm_layer.py │ │ ├── position_aware_layer.py │ │ ├── robust_scanner_fusion_layer.py │ │ └── transformer_layer.py │ │ ├── losses │ │ ├── __init__.py │ │ ├── ce_loss.py │ │ ├── ctc_loss.py │ │ └── seg_loss.py │ │ ├── necks │ │ ├── __init__.py │ │ └── fpn_ocr.py │ │ ├── preprocessor │ │ ├── __init__.py │ │ ├── base_preprocessor.py │ │ └── tps_preprocessor.py │ │ └── recognizer │ │ ├── __init__.py │ │ ├── base.py │ │ ├── crnn.py │ │ ├── encode_decode_recognizer.py │ │ ├── nrtr.py │ │ ├── robust_scanner.py │ │ ├── sar.py │ │ └── seg_recognizer.py ├── utils │ ├── __init__.py │ ├── box_util.py │ ├── check_argument.py │ ├── collect_env.py │ ├── data_convert_util.py │ ├── fileio.py │ ├── img_util.py │ ├── lmdb_util.py │ ├── logger.py │ ├── ocr.py │ ├── string_util.py │ └── tps_util.py └── version.py ├── model-index.yml ├── requirements.txt ├── requirements ├── build.txt ├── docs.txt ├── mminstall.txt ├── optional.txt ├── readthedocs.txt ├── runtime.txt └── tests.txt ├── setup.cfg ├── setup.py ├── tests ├── data │ ├── ocr_char_ann_toy_dataset │ │ ├── imgs │ │ │ ├── resort_88_101_1.png │ │ │ ├── resort_95_53_6.png │ │ │ ├── richard+feynman_101_8_6.png │ │ │ ├── richard+feynman_104_58_9.png │ │ │ ├── richard+feynman_110_1_6.png │ │ │ ├── richard+feynman_12_61_4.png │ │ │ ├── richard+feynman_130_74_1.png │ │ │ ├── richard+feynman_134_30_15.png │ │ │ ├── richard+feynman_15_43_4.png │ │ │ └── richard+feynman_18_18_5.png │ │ ├── instances_test.txt │ │ └── instances_train.txt │ ├── ocr_toy_dataset │ │ ├── imgs │ │ │ ├── 1036169.jpg │ │ │ ├── 1058891.jpg │ │ │ ├── 1058892.jpg │ │ │ ├── 1190237.jpg │ │ │ ├── 1210236.jpg │ │ │ ├── 1223729.jpg │ │ │ ├── 1223731.jpg │ │ │ ├── 1223732.jpg │ │ │ ├── 1223733.jpg │ │ │ └── 1240078.jpg │ │ ├── label.lmdb │ │ │ ├── data.mdb │ │ │ └── lock.mdb │ │ └── label.txt │ ├── test_img1.jpg │ ├── test_img1.png │ ├── test_img2.jpg │ └── toy_dataset │ │ ├── annotations │ │ └── test │ │ │ ├── gt_img_1.txt │ │ │ ├── gt_img_10.txt │ │ │ ├── gt_img_2.txt │ │ │ ├── gt_img_3.txt │ │ │ ├── gt_img_4.txt │ │ │ ├── gt_img_5.txt │ │ │ ├── gt_img_6.txt │ │ │ ├── gt_img_7.txt │ │ │ ├── gt_img_8.txt │ │ │ └── gt_img_9.txt │ │ ├── img_list.txt │ │ ├── imgs │ │ └── test │ │ │ ├── img_1.jpg │ │ │ ├── img_10.jpg │ │ │ ├── img_2.jpg │ │ │ ├── img_3.jpg │ │ │ ├── img_4.jpg │ │ │ ├── img_5.jpg │ │ │ ├── img_6.jpg │ │ │ ├── img_7.jpg │ │ │ ├── img_8.jpg │ │ │ └── img_9.jpg │ │ ├── instances_test.json │ │ └── instances_test.txt ├── test_apis │ └── test_model_inference.py ├── test_core │ ├── test_deploy_utils.py │ └── test_end2end_vis.py ├── test_dataset │ ├── test_base_dataset.py │ ├── test_crop.py │ ├── test_dbnet_transforms.py │ ├── test_detect_dataset.py │ ├── test_icdar_dataset.py │ ├── test_kie_dataset.py │ ├── test_loader.py │ ├── test_loading.py │ ├── test_ner_dataset.py │ ├── test_ocr_dataset.py │ ├── test_ocr_seg_dataset.py │ ├── test_ocr_seg_target.py │ ├── test_ocr_transforms.py │ ├── test_parser.py │ ├── test_test_time_aug.py │ ├── test_textdet_targets.py │ ├── test_transforms.py │ └── test_uniform_concat_dataset.py ├── test_metrics │ ├── test_eval_utils.py │ ├── test_hmean_detect.py │ ├── test_hmean_ic13.py │ └── test_hmean_iou.py ├── test_models │ ├── test_detector.py │ ├── test_kie_config.py │ ├── test_label_convertor │ │ ├── test_attn_label_convertor.py │ │ └── test_ctc_label_convertor.py │ ├── test_loss.py │ ├── test_modules.py │ ├── test_ner_model.py │ ├── test_ocr_backbone.py │ ├── test_ocr_decoder.py │ ├── test_ocr_encoder.py │ ├── test_ocr_head.py │ ├── test_ocr_layer.py │ ├── test_ocr_loss.py │ ├── test_ocr_neck.py │ ├── test_ocr_preprocessor.py │ ├── test_panhead.py │ ├── test_recog_config.py │ ├── test_recognizer.py │ ├── test_targets.py │ ├── test_textdet_head.py │ └── test_textdet_neck.py ├── test_tools │ └── test_data_converter.py └── test_utils │ ├── test_box.py │ ├── test_check_argument.py │ ├── test_mask │ └── test_mask_utils.py │ ├── test_string_util.py │ ├── test_text │ └── test_text_utils.py │ ├── test_textio.py │ └── test_wrapper.py └── tools ├── benchmark_processing.py ├── data ├── textdet │ ├── coco_to_line_dict.py │ ├── ctw1500_converter.py │ ├── icdar_converter.py │ ├── synthtext_converter.py │ ├── textocr_converter.py │ └── totaltext_converter.py ├── texte2e │ ├── bezier2polygon_coco.py │ ├── ctw1500_converter.py │ ├── icdar_converter.py │ └── totaltext_converter.py ├── textrecog │ ├── seg_synthtext_converter.py │ ├── svt_converter.py │ ├── synthtext_converter.py │ ├── textocr_converter.py │ └── totaltext_converter.py └── utils │ └── txt2lmdb.py ├── deployment ├── deploy_test.py ├── onnx2tensorrt.py └── pytorch2onnx.py ├── det_test_imgs.py ├── dist_test.sh ├── dist_train.sh ├── kie_test_imgs.py ├── kie_test_imgs.sh ├── publish_model.py ├── recog_test_imgs.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py └── train.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = 3 | */__init__.py 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/README.md -------------------------------------------------------------------------------- /configs/tpsnet/tpsnet_ctw1500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/configs/tpsnet/tpsnet_ctw1500.py -------------------------------------------------------------------------------- /configs/tpsnet/tpsnet_pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/configs/tpsnet/tpsnet_pretrain.py -------------------------------------------------------------------------------- /configs/tpsnet/tpsnet_totaltext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/configs/tpsnet/tpsnet_totaltext.py -------------------------------------------------------------------------------- /configs/tpsnet/tpsnet_totaltext_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/configs/tpsnet/tpsnet_totaltext_det.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/code_of_conduct.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/datasets.md -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/deployment.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/merge_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/merge_docs.sh -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs/stats.py -------------------------------------------------------------------------------- /docs_zh_CN/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs_zh_CN/Makefile -------------------------------------------------------------------------------- /docs_zh_CN/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs_zh_CN/api.rst -------------------------------------------------------------------------------- /docs_zh_CN/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs_zh_CN/conf.py -------------------------------------------------------------------------------- /docs_zh_CN/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs_zh_CN/datasets.md -------------------------------------------------------------------------------- /docs_zh_CN/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs_zh_CN/deployment.md -------------------------------------------------------------------------------- /docs_zh_CN/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs_zh_CN/getting_started.md -------------------------------------------------------------------------------- /docs_zh_CN/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs_zh_CN/index.rst -------------------------------------------------------------------------------- /docs_zh_CN/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs_zh_CN/install.md -------------------------------------------------------------------------------- /docs_zh_CN/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs_zh_CN/make.bat -------------------------------------------------------------------------------- /docs_zh_CN/merge_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs_zh_CN/merge_docs.sh -------------------------------------------------------------------------------- /docs_zh_CN/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/docs_zh_CN/stats.py -------------------------------------------------------------------------------- /mmocr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/__init__.py -------------------------------------------------------------------------------- /mmocr/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/apis/__init__.py -------------------------------------------------------------------------------- /mmocr/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/apis/inference.py -------------------------------------------------------------------------------- /mmocr/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/apis/train.py -------------------------------------------------------------------------------- /mmocr/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/__init__.py -------------------------------------------------------------------------------- /mmocr/core/deployment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/deployment/__init__.py -------------------------------------------------------------------------------- /mmocr/core/deployment/deploy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/deployment/deploy_utils.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/__init__.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/Readme.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/create_custom_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/create_custom_test.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/ctw1500_res/text_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/ctw1500_res/text_results.json -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_ctw1500.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_ctw1500.zip -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext.zip -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000000.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000001.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000002.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000003.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000004.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000005.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000006.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000007.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000008.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000009.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000010.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000011.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000012.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000013.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000014.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000015.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000016.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000017.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000018.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000019.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000020.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000021.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000022.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000023.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000024.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000025.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000026.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000026.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000027.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000027.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000028.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000028.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000029.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000029.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000030.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000031.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000031.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000032.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000032.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000033.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000033.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000034.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000034.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000035.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000035.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000036.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000036.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000037.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000037.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000038.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000038.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000039.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000039.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000040.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000040.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000041.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000041.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000042.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000042.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000043.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000043.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000044.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000044.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000045.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000045.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000046.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000046.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000047.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000047.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000048.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000048.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000049.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000049.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000050.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000051.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000051.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000052.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000052.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000053.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000053.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000054.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000054.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000055.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000055.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000056.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000056.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000057.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000057.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000058.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000058.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000059.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000059.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000060.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000060.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000061.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000061.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000062.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000062.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000063.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000063.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000064.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000064.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000065.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000065.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000066.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000066.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000067.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000067.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000068.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000068.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000069.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000069.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000070.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000070.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000071.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000071.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000072.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000072.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000073.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000073.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000074.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000074.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000075.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000075.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000076.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000076.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000077.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000077.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000078.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000078.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000079.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000079.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000080.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000081.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000081.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000082.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000082.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000083.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000083.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000084.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000084.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000085.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000085.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000086.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000086.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000087.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000087.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000088.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000088.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000089.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000089.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000090.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000090.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000091.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000091.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000092.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000092.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000093.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000093.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000094.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000094.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000095.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000095.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000096.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000096.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000097.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000097.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000098.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000098.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000099.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000099.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000100.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000101.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000102.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000103.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000104.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000105.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000106.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000107.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000108.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000109.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000110.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000111.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000112.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000113.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000113.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000114.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000115.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000116.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000117.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000118.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000119.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000119.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000120.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000121.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000121.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000122.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000123.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000124.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000125.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000125.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000126.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000126.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000127.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000128.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000129.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000129.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000130.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000130.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000131.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000131.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000132.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000132.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000133.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000133.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000134.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000134.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000135.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000135.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000136.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000136.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000137.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000137.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000138.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000138.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000139.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000139.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000140.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000140.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000141.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000141.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000142.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000142.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000143.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000143.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000144.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000144.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000145.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000145.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000146.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000146.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000147.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000147.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000148.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000148.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000149.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000149.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000150.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000151.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000151.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000152.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000152.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000153.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000153.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000154.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000154.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000155.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000155.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000156.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000156.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000157.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000157.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000158.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000158.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000159.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000159.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000160.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000161.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000161.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000162.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000162.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000163.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000163.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000164.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000164.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000165.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000165.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000166.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000166.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000167.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000167.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000168.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000168.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000169.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000169.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000170.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000170.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000171.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000171.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000172.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000172.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000173.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000173.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000174.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000174.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000175.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000175.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000176.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000176.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000177.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000177.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000178.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000178.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000179.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000179.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000180.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000180.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000181.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000181.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000182.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000182.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000183.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000183.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000184.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000184.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000185.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000185.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000186.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000187.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000187.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000188.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000188.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000189.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000189.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000190.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000190.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000191.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000191.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000192.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000192.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000193.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000193.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000194.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000194.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000195.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000195.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000196.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000196.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000197.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000197.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000198.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000198.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000199.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000199.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000200.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000201.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000202.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000202.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000203.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000204.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000205.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000206.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000207.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000208.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000208.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000209.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000209.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000210.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000211.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000212.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000212.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000213.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000213.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000214.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000214.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000215.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000215.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000216.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000216.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000217.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000217.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000218.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000218.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000219.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000219.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000220.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000220.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000221.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000221.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000222.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000222.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000223.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000223.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000224.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000225.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000225.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000226.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000226.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000227.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000227.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000228.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000228.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000229.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000229.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000230.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000230.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000231.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000231.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000232.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000232.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000233.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000233.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000234.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000234.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000235.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000235.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000236.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000236.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000237.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000237.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000238.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000238.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000239.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000239.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000240.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000240.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000241.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000241.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000242.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000242.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000243.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000243.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000244.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000244.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000245.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000245.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000246.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000246.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000247.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000247.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000248.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000248.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000249.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000249.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000250.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000251.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000251.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000252.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000253.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000253.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000254.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000254.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000255.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000255.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000256.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000257.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000257.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000258.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000258.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000259.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000259.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000260.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000260.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000261.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000261.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000262.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000262.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000263.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000263.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000264.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000264.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000265.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000265.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000266.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000266.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000267.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000267.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000268.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000268.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000269.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000269.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000270.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000270.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000271.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000271.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000272.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000272.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000273.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000273.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000274.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000274.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000275.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000275.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000276.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000276.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000277.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000277.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000278.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000278.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000279.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000279.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000280.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000280.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000281.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000281.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000282.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000282.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000283.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000283.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000284.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000284.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000285.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000285.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000286.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000286.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000287.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000287.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000288.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000288.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000289.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000289.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000290.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000290.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000291.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000291.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000292.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000292.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000293.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000293.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000294.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000294.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000295.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000295.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000296.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000296.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000297.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000297.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000298.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000298.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000299.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/datasets/evaluation/gt_totaltext/0000299.txt -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/rrc_evaluation_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/rrc_evaluation_funcs.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/text_eval_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/text_eval_script.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/text_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/text_evaluation.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/evaluation_e2e/totaltext_res/text_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/evaluation_e2e/totaltext_res/text_results.json -------------------------------------------------------------------------------- /mmocr/core/evaluation/hmean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/hmean.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/hmean_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/hmean_e2e.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/hmean_ic13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/hmean_ic13.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/hmean_iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/hmean_iou.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/kie_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/kie_metric.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/ner_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/ner_metric.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/ocr_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/ocr_metric.py -------------------------------------------------------------------------------- /mmocr/core/evaluation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/evaluation/utils.py -------------------------------------------------------------------------------- /mmocr/core/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/mask.py -------------------------------------------------------------------------------- /mmocr/core/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/core/visualize.py -------------------------------------------------------------------------------- /mmocr/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/__init__.py -------------------------------------------------------------------------------- /mmocr/datasets/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/base_dataset.py -------------------------------------------------------------------------------- /mmocr/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/builder.py -------------------------------------------------------------------------------- /mmocr/datasets/icdar_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/icdar_dataset.py -------------------------------------------------------------------------------- /mmocr/datasets/icdar_e2e_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/icdar_e2e_dataset.py -------------------------------------------------------------------------------- /mmocr/datasets/kie_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/kie_dataset.py -------------------------------------------------------------------------------- /mmocr/datasets/ner_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/ner_dataset.py -------------------------------------------------------------------------------- /mmocr/datasets/ocr_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/ocr_dataset.py -------------------------------------------------------------------------------- /mmocr/datasets/ocr_seg_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/ocr_seg_dataset.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/box_utils.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/crop.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/custom_format_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/custom_format_bundle.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/dbnet_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/dbnet_transforms.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/kie_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/kie_transforms.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/ner_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/ner_transforms.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/ocr_seg_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/ocr_seg_targets.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/ocr_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/ocr_transforms.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/test_time_aug.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/textdet_targets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/textdet_targets/__init__.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/textdet_targets/base_textdet_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/textdet_targets/base_textdet_targets.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/textdet_targets/dbnet_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/textdet_targets/dbnet_targets.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/textdet_targets/drrg_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/textdet_targets/drrg_targets.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/textdet_targets/fcenet_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/textdet_targets/fcenet_targets.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/textdet_targets/panet_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/textdet_targets/panet_targets.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/textdet_targets/psenet_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/textdet_targets/psenet_targets.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/textdet_targets/textsnake_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/textdet_targets/textsnake_targets.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/textdet_targets/tpsnet_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/textdet_targets/tpsnet_targets.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /mmocr/datasets/pipelines/transforms_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/pipelines/transforms_e2e.py -------------------------------------------------------------------------------- /mmocr/datasets/text_det_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/text_det_dataset.py -------------------------------------------------------------------------------- /mmocr/datasets/uniform_concat_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/uniform_concat_dataset.py -------------------------------------------------------------------------------- /mmocr/datasets/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/utils/__init__.py -------------------------------------------------------------------------------- /mmocr/datasets/utils/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/utils/loader.py -------------------------------------------------------------------------------- /mmocr/datasets/utils/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/datasets/utils/parser.py -------------------------------------------------------------------------------- /mmocr/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/__init__.py -------------------------------------------------------------------------------- /mmocr/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/builder.py -------------------------------------------------------------------------------- /mmocr/models/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/common/__init__.py -------------------------------------------------------------------------------- /mmocr/models/common/backbones/__init__.py: -------------------------------------------------------------------------------- 1 | from .unet import UNet 2 | 3 | __all__ = ['UNet'] 4 | -------------------------------------------------------------------------------- /mmocr/models/common/backbones/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/common/backbones/unet.py -------------------------------------------------------------------------------- /mmocr/models/common/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/common/losses/__init__.py -------------------------------------------------------------------------------- /mmocr/models/common/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/common/losses/dice_loss.py -------------------------------------------------------------------------------- /mmocr/models/common/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/common/losses/focal_loss.py -------------------------------------------------------------------------------- /mmocr/models/kie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/kie/__init__.py -------------------------------------------------------------------------------- /mmocr/models/kie/extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/kie/extractors/__init__.py -------------------------------------------------------------------------------- /mmocr/models/kie/extractors/sdmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/kie/extractors/sdmgr.py -------------------------------------------------------------------------------- /mmocr/models/kie/heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/kie/heads/__init__.py -------------------------------------------------------------------------------- /mmocr/models/kie/heads/sdmgr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/kie/heads/sdmgr_head.py -------------------------------------------------------------------------------- /mmocr/models/kie/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/kie/losses/__init__.py -------------------------------------------------------------------------------- /mmocr/models/kie/losses/sdmgr_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/kie/losses/sdmgr_loss.py -------------------------------------------------------------------------------- /mmocr/models/ner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/__init__.py -------------------------------------------------------------------------------- /mmocr/models/ner/classifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/classifiers/__init__.py -------------------------------------------------------------------------------- /mmocr/models/ner/classifiers/ner_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/classifiers/ner_classifier.py -------------------------------------------------------------------------------- /mmocr/models/ner/convertors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/convertors/__init__.py -------------------------------------------------------------------------------- /mmocr/models/ner/convertors/ner_convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/convertors/ner_convertor.py -------------------------------------------------------------------------------- /mmocr/models/ner/decoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/decoders/__init__.py -------------------------------------------------------------------------------- /mmocr/models/ner/decoders/fc_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/decoders/fc_decoder.py -------------------------------------------------------------------------------- /mmocr/models/ner/encoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/encoders/__init__.py -------------------------------------------------------------------------------- /mmocr/models/ner/encoders/bert_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/encoders/bert_encoder.py -------------------------------------------------------------------------------- /mmocr/models/ner/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/losses/__init__.py -------------------------------------------------------------------------------- /mmocr/models/ner/losses/masked_cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/losses/masked_cross_entropy_loss.py -------------------------------------------------------------------------------- /mmocr/models/ner/losses/masked_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/losses/masked_focal_loss.py -------------------------------------------------------------------------------- /mmocr/models/ner/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/utils/__init__.py -------------------------------------------------------------------------------- /mmocr/models/ner/utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/utils/activations.py -------------------------------------------------------------------------------- /mmocr/models/ner/utils/bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/ner/utils/bert.py -------------------------------------------------------------------------------- /mmocr/models/textdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textdet/dense_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/dense_heads/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textdet/dense_heads/db_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/dense_heads/db_head.py -------------------------------------------------------------------------------- /mmocr/models/textdet/dense_heads/drrg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/dense_heads/drrg_head.py -------------------------------------------------------------------------------- /mmocr/models/textdet/dense_heads/fce_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/dense_heads/fce_head.py -------------------------------------------------------------------------------- /mmocr/models/textdet/dense_heads/head_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/dense_heads/head_mixin.py -------------------------------------------------------------------------------- /mmocr/models/textdet/dense_heads/pan_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/dense_heads/pan_head.py -------------------------------------------------------------------------------- /mmocr/models/textdet/dense_heads/pse_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/dense_heads/pse_head.py -------------------------------------------------------------------------------- /mmocr/models/textdet/dense_heads/textsnake_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/dense_heads/textsnake_head.py -------------------------------------------------------------------------------- /mmocr/models/textdet/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/detectors/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textdet/detectors/dbnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/detectors/dbnet.py -------------------------------------------------------------------------------- /mmocr/models/textdet/detectors/drrg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/detectors/drrg.py -------------------------------------------------------------------------------- /mmocr/models/textdet/detectors/fcenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/detectors/fcenet.py -------------------------------------------------------------------------------- /mmocr/models/textdet/detectors/ocr_mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/detectors/ocr_mask_rcnn.py -------------------------------------------------------------------------------- /mmocr/models/textdet/detectors/panet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/detectors/panet.py -------------------------------------------------------------------------------- /mmocr/models/textdet/detectors/psenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/detectors/psenet.py -------------------------------------------------------------------------------- /mmocr/models/textdet/detectors/single_stage_text_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/detectors/single_stage_text_detector.py -------------------------------------------------------------------------------- /mmocr/models/textdet/detectors/text_detector_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/detectors/text_detector_mixin.py -------------------------------------------------------------------------------- /mmocr/models/textdet/detectors/textsnake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/detectors/textsnake.py -------------------------------------------------------------------------------- /mmocr/models/textdet/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/losses/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textdet/losses/db_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/losses/db_loss.py -------------------------------------------------------------------------------- /mmocr/models/textdet/losses/drrg_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/losses/drrg_loss.py -------------------------------------------------------------------------------- /mmocr/models/textdet/losses/fce_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/losses/fce_loss.py -------------------------------------------------------------------------------- /mmocr/models/textdet/losses/pan_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/losses/pan_loss.py -------------------------------------------------------------------------------- /mmocr/models/textdet/losses/pse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/losses/pse_loss.py -------------------------------------------------------------------------------- /mmocr/models/textdet/losses/textsnake_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/losses/textsnake_loss.py -------------------------------------------------------------------------------- /mmocr/models/textdet/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/modules/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textdet/modules/gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/modules/gcn.py -------------------------------------------------------------------------------- /mmocr/models/textdet/modules/local_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/modules/local_graph.py -------------------------------------------------------------------------------- /mmocr/models/textdet/modules/proposal_local_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/modules/proposal_local_graph.py -------------------------------------------------------------------------------- /mmocr/models/textdet/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/modules/utils.py -------------------------------------------------------------------------------- /mmocr/models/textdet/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/necks/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textdet/necks/fpem_ffm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/necks/fpem_ffm.py -------------------------------------------------------------------------------- /mmocr/models/textdet/necks/fpn_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/necks/fpn_cat.py -------------------------------------------------------------------------------- /mmocr/models/textdet/necks/fpn_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/necks/fpn_unet.py -------------------------------------------------------------------------------- /mmocr/models/textdet/necks/fpnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/necks/fpnf.py -------------------------------------------------------------------------------- /mmocr/models/textdet/postprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/postprocess/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textdet/postprocess/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textdet/postprocess/wrapper.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/det_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/det_heads/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/det_heads/tpsnet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/det_heads/tpsnet_head.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/losses/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/losses/tpsnet_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/losses/tpsnet_losses.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/postprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/postprocess/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/postprocess/tps_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/postprocess/tps_decoder.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/recog_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/recog_heads/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/recog_heads/attn_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/recog_heads/attn_predictor.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/recog_heads/tps_recog_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/recog_heads/tps_recog_head.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/spotters/TPSNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/spotters/TPSNet.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/spotters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/spotters/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/utils/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/utils/grid_sample_batch/grid_sample_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/utils/grid_sample_batch/grid_sample_batch.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/utils/grid_sample_batch/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/utils/grid_sample_batch/setup.py -------------------------------------------------------------------------------- /mmocr/models/textend2end/utils/grid_sample_batch/src/GridSamplerBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/utils/grid_sample_batch/src/GridSamplerBatch.cpp -------------------------------------------------------------------------------- /mmocr/models/textend2end/utils/grid_sample_batch/src/GridSamplerBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/utils/grid_sample_batch/src/GridSamplerBatch.h -------------------------------------------------------------------------------- /mmocr/models/textend2end/utils/grid_sample_batch/src/GridSamplerBatch_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/utils/grid_sample_batch/src/GridSamplerBatch_cuda.cu -------------------------------------------------------------------------------- /mmocr/models/textend2end/utils/grid_sample_batch/src/GridSamplerBatch_cuda.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/utils/grid_sample_batch/src/GridSamplerBatch_cuda.cuh -------------------------------------------------------------------------------- /mmocr/models/textend2end/utils/grid_sample_batch/src/grid_sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/utils/grid_sample_batch/src/grid_sampler.cpp -------------------------------------------------------------------------------- /mmocr/models/textend2end/utils/tps_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textend2end/utils/tps_align.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/backbones/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/backbones/nrtr_modality_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/backbones/nrtr_modality_transformer.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/backbones/resnet31_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/backbones/resnet31_ocr.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/backbones/very_deep_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/backbones/very_deep_vgg.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/convertors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/convertors/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/convertors/attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/convertors/attn.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/convertors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/convertors/base.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/convertors/ctc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/convertors/ctc.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/convertors/seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/convertors/seg.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/decoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/decoders/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/decoders/base_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/decoders/base_decoder.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/decoders/crnn_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/decoders/crnn_decoder.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/decoders/position_attention_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/decoders/position_attention_decoder.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/decoders/robust_scanner_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/decoders/robust_scanner_decoder.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/decoders/sar_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/decoders/sar_decoder.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/decoders/sar_decoder_with_bs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/decoders/sar_decoder_with_bs.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/decoders/sequence_attention_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/decoders/sequence_attention_decoder.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/decoders/transformer_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/decoders/transformer_decoder.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/encoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/encoders/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/encoders/base_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/encoders/base_encoder.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/encoders/channel_reduction_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/encoders/channel_reduction_encoder.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/encoders/sar_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/encoders/sar_encoder.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/encoders/transformer_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/encoders/transformer_encoder.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/heads/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/heads/seg_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/heads/seg_head.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/layers/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/layers/conv_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/layers/conv_layer.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/layers/dot_product_attention_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/layers/dot_product_attention_layer.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/layers/lstm_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/layers/lstm_layer.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/layers/position_aware_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/layers/position_aware_layer.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/layers/robust_scanner_fusion_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/layers/robust_scanner_fusion_layer.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/layers/transformer_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/layers/transformer_layer.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/losses/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/losses/ce_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/losses/ce_loss.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/losses/ctc_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/losses/ctc_loss.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/losses/seg_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/losses/seg_loss.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/necks/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/necks/fpn_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/necks/fpn_ocr.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/preprocessor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/preprocessor/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/preprocessor/base_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/preprocessor/base_preprocessor.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/preprocessor/tps_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/preprocessor/tps_preprocessor.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/recognizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/recognizer/__init__.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/recognizer/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/recognizer/base.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/recognizer/crnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/recognizer/crnn.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/recognizer/encode_decode_recognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/recognizer/encode_decode_recognizer.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/recognizer/nrtr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/recognizer/nrtr.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/recognizer/robust_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/recognizer/robust_scanner.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/recognizer/sar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/recognizer/sar.py -------------------------------------------------------------------------------- /mmocr/models/textrecog/recognizer/seg_recognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/models/textrecog/recognizer/seg_recognizer.py -------------------------------------------------------------------------------- /mmocr/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/__init__.py -------------------------------------------------------------------------------- /mmocr/utils/box_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/box_util.py -------------------------------------------------------------------------------- /mmocr/utils/check_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/check_argument.py -------------------------------------------------------------------------------- /mmocr/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/collect_env.py -------------------------------------------------------------------------------- /mmocr/utils/data_convert_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/data_convert_util.py -------------------------------------------------------------------------------- /mmocr/utils/fileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/fileio.py -------------------------------------------------------------------------------- /mmocr/utils/img_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/img_util.py -------------------------------------------------------------------------------- /mmocr/utils/lmdb_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/lmdb_util.py -------------------------------------------------------------------------------- /mmocr/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/logger.py -------------------------------------------------------------------------------- /mmocr/utils/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/ocr.py -------------------------------------------------------------------------------- /mmocr/utils/string_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/string_util.py -------------------------------------------------------------------------------- /mmocr/utils/tps_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/utils/tps_util.py -------------------------------------------------------------------------------- /mmocr/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/mmocr/version.py -------------------------------------------------------------------------------- /model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/model-index.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/requirements/build.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv-full>=1.3.4 2 | mmdet>=2.11.0 3 | -------------------------------------------------------------------------------- /requirements/optional.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/requirements/readthedocs.txt -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/requirements/runtime.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/imgs/resort_88_101_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/imgs/resort_88_101_1.png -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/imgs/resort_95_53_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/imgs/resort_95_53_6.png -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_101_8_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_101_8_6.png -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_104_58_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_104_58_9.png -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_110_1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_110_1_6.png -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_12_61_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_12_61_4.png -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_130_74_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_130_74_1.png -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_134_30_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_134_30_15.png -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_15_43_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_15_43_4.png -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_18_18_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/imgs/richard+feynman_18_18_5.png -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/instances_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/instances_test.txt -------------------------------------------------------------------------------- /tests/data/ocr_char_ann_toy_dataset/instances_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_char_ann_toy_dataset/instances_train.txt -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/imgs/1036169.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/imgs/1036169.jpg -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/imgs/1058891.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/imgs/1058891.jpg -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/imgs/1058892.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/imgs/1058892.jpg -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/imgs/1190237.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/imgs/1190237.jpg -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/imgs/1210236.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/imgs/1210236.jpg -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/imgs/1223729.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/imgs/1223729.jpg -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/imgs/1223731.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/imgs/1223731.jpg -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/imgs/1223732.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/imgs/1223732.jpg -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/imgs/1223733.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/imgs/1223733.jpg -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/imgs/1240078.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/imgs/1240078.jpg -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/label.lmdb/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/label.lmdb/data.mdb -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/label.lmdb/lock.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/label.lmdb/lock.mdb -------------------------------------------------------------------------------- /tests/data/ocr_toy_dataset/label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/ocr_toy_dataset/label.txt -------------------------------------------------------------------------------- /tests/data/test_img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/test_img1.jpg -------------------------------------------------------------------------------- /tests/data/test_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/test_img1.png -------------------------------------------------------------------------------- /tests/data/test_img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/test_img2.jpg -------------------------------------------------------------------------------- /tests/data/toy_dataset/annotations/test/gt_img_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/annotations/test/gt_img_1.txt -------------------------------------------------------------------------------- /tests/data/toy_dataset/annotations/test/gt_img_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/annotations/test/gt_img_10.txt -------------------------------------------------------------------------------- /tests/data/toy_dataset/annotations/test/gt_img_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/annotations/test/gt_img_2.txt -------------------------------------------------------------------------------- /tests/data/toy_dataset/annotations/test/gt_img_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/annotations/test/gt_img_3.txt -------------------------------------------------------------------------------- /tests/data/toy_dataset/annotations/test/gt_img_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/annotations/test/gt_img_4.txt -------------------------------------------------------------------------------- /tests/data/toy_dataset/annotations/test/gt_img_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/annotations/test/gt_img_5.txt -------------------------------------------------------------------------------- /tests/data/toy_dataset/annotations/test/gt_img_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/annotations/test/gt_img_6.txt -------------------------------------------------------------------------------- /tests/data/toy_dataset/annotations/test/gt_img_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/annotations/test/gt_img_7.txt -------------------------------------------------------------------------------- /tests/data/toy_dataset/annotations/test/gt_img_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/annotations/test/gt_img_8.txt -------------------------------------------------------------------------------- /tests/data/toy_dataset/annotations/test/gt_img_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/annotations/test/gt_img_9.txt -------------------------------------------------------------------------------- /tests/data/toy_dataset/img_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/img_list.txt -------------------------------------------------------------------------------- /tests/data/toy_dataset/imgs/test/img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/imgs/test/img_1.jpg -------------------------------------------------------------------------------- /tests/data/toy_dataset/imgs/test/img_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/imgs/test/img_10.jpg -------------------------------------------------------------------------------- /tests/data/toy_dataset/imgs/test/img_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/imgs/test/img_2.jpg -------------------------------------------------------------------------------- /tests/data/toy_dataset/imgs/test/img_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/imgs/test/img_3.jpg -------------------------------------------------------------------------------- /tests/data/toy_dataset/imgs/test/img_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/imgs/test/img_4.jpg -------------------------------------------------------------------------------- /tests/data/toy_dataset/imgs/test/img_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/imgs/test/img_5.jpg -------------------------------------------------------------------------------- /tests/data/toy_dataset/imgs/test/img_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/imgs/test/img_6.jpg -------------------------------------------------------------------------------- /tests/data/toy_dataset/imgs/test/img_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/imgs/test/img_7.jpg -------------------------------------------------------------------------------- /tests/data/toy_dataset/imgs/test/img_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/imgs/test/img_8.jpg -------------------------------------------------------------------------------- /tests/data/toy_dataset/imgs/test/img_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/imgs/test/img_9.jpg -------------------------------------------------------------------------------- /tests/data/toy_dataset/instances_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/instances_test.json -------------------------------------------------------------------------------- /tests/data/toy_dataset/instances_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/data/toy_dataset/instances_test.txt -------------------------------------------------------------------------------- /tests/test_apis/test_model_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_apis/test_model_inference.py -------------------------------------------------------------------------------- /tests/test_core/test_deploy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_core/test_deploy_utils.py -------------------------------------------------------------------------------- /tests/test_core/test_end2end_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_core/test_end2end_vis.py -------------------------------------------------------------------------------- /tests/test_dataset/test_base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_base_dataset.py -------------------------------------------------------------------------------- /tests/test_dataset/test_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_crop.py -------------------------------------------------------------------------------- /tests/test_dataset/test_dbnet_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_dbnet_transforms.py -------------------------------------------------------------------------------- /tests/test_dataset/test_detect_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_detect_dataset.py -------------------------------------------------------------------------------- /tests/test_dataset/test_icdar_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_icdar_dataset.py -------------------------------------------------------------------------------- /tests/test_dataset/test_kie_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_kie_dataset.py -------------------------------------------------------------------------------- /tests/test_dataset/test_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_loader.py -------------------------------------------------------------------------------- /tests/test_dataset/test_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_loading.py -------------------------------------------------------------------------------- /tests/test_dataset/test_ner_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_ner_dataset.py -------------------------------------------------------------------------------- /tests/test_dataset/test_ocr_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_ocr_dataset.py -------------------------------------------------------------------------------- /tests/test_dataset/test_ocr_seg_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_ocr_seg_dataset.py -------------------------------------------------------------------------------- /tests/test_dataset/test_ocr_seg_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_ocr_seg_target.py -------------------------------------------------------------------------------- /tests/test_dataset/test_ocr_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_ocr_transforms.py -------------------------------------------------------------------------------- /tests/test_dataset/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_parser.py -------------------------------------------------------------------------------- /tests/test_dataset/test_test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_test_time_aug.py -------------------------------------------------------------------------------- /tests/test_dataset/test_textdet_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_textdet_targets.py -------------------------------------------------------------------------------- /tests/test_dataset/test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_transforms.py -------------------------------------------------------------------------------- /tests/test_dataset/test_uniform_concat_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_dataset/test_uniform_concat_dataset.py -------------------------------------------------------------------------------- /tests/test_metrics/test_eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_metrics/test_eval_utils.py -------------------------------------------------------------------------------- /tests/test_metrics/test_hmean_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_metrics/test_hmean_detect.py -------------------------------------------------------------------------------- /tests/test_metrics/test_hmean_ic13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_metrics/test_hmean_ic13.py -------------------------------------------------------------------------------- /tests/test_metrics/test_hmean_iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_metrics/test_hmean_iou.py -------------------------------------------------------------------------------- /tests/test_models/test_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_detector.py -------------------------------------------------------------------------------- /tests/test_models/test_kie_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_kie_config.py -------------------------------------------------------------------------------- /tests/test_models/test_label_convertor/test_attn_label_convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_label_convertor/test_attn_label_convertor.py -------------------------------------------------------------------------------- /tests/test_models/test_label_convertor/test_ctc_label_convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_label_convertor/test_ctc_label_convertor.py -------------------------------------------------------------------------------- /tests/test_models/test_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_loss.py -------------------------------------------------------------------------------- /tests/test_models/test_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_modules.py -------------------------------------------------------------------------------- /tests/test_models/test_ner_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_ner_model.py -------------------------------------------------------------------------------- /tests/test_models/test_ocr_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_ocr_backbone.py -------------------------------------------------------------------------------- /tests/test_models/test_ocr_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_ocr_decoder.py -------------------------------------------------------------------------------- /tests/test_models/test_ocr_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_ocr_encoder.py -------------------------------------------------------------------------------- /tests/test_models/test_ocr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_ocr_head.py -------------------------------------------------------------------------------- /tests/test_models/test_ocr_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_ocr_layer.py -------------------------------------------------------------------------------- /tests/test_models/test_ocr_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_ocr_loss.py -------------------------------------------------------------------------------- /tests/test_models/test_ocr_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_ocr_neck.py -------------------------------------------------------------------------------- /tests/test_models/test_ocr_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_ocr_preprocessor.py -------------------------------------------------------------------------------- /tests/test_models/test_panhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_panhead.py -------------------------------------------------------------------------------- /tests/test_models/test_recog_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_recog_config.py -------------------------------------------------------------------------------- /tests/test_models/test_recognizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_recognizer.py -------------------------------------------------------------------------------- /tests/test_models/test_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_targets.py -------------------------------------------------------------------------------- /tests/test_models/test_textdet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_textdet_head.py -------------------------------------------------------------------------------- /tests/test_models/test_textdet_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_models/test_textdet_neck.py -------------------------------------------------------------------------------- /tests/test_tools/test_data_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_tools/test_data_converter.py -------------------------------------------------------------------------------- /tests/test_utils/test_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_utils/test_box.py -------------------------------------------------------------------------------- /tests/test_utils/test_check_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_utils/test_check_argument.py -------------------------------------------------------------------------------- /tests/test_utils/test_mask/test_mask_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_utils/test_mask/test_mask_utils.py -------------------------------------------------------------------------------- /tests/test_utils/test_string_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_utils/test_string_util.py -------------------------------------------------------------------------------- /tests/test_utils/test_text/test_text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_utils/test_text/test_text_utils.py -------------------------------------------------------------------------------- /tests/test_utils/test_textio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_utils/test_textio.py -------------------------------------------------------------------------------- /tests/test_utils/test_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tests/test_utils/test_wrapper.py -------------------------------------------------------------------------------- /tools/benchmark_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/benchmark_processing.py -------------------------------------------------------------------------------- /tools/data/textdet/coco_to_line_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/textdet/coco_to_line_dict.py -------------------------------------------------------------------------------- /tools/data/textdet/ctw1500_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/textdet/ctw1500_converter.py -------------------------------------------------------------------------------- /tools/data/textdet/icdar_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/textdet/icdar_converter.py -------------------------------------------------------------------------------- /tools/data/textdet/synthtext_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/textdet/synthtext_converter.py -------------------------------------------------------------------------------- /tools/data/textdet/textocr_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/textdet/textocr_converter.py -------------------------------------------------------------------------------- /tools/data/textdet/totaltext_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/textdet/totaltext_converter.py -------------------------------------------------------------------------------- /tools/data/texte2e/bezier2polygon_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/texte2e/bezier2polygon_coco.py -------------------------------------------------------------------------------- /tools/data/texte2e/ctw1500_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/texte2e/ctw1500_converter.py -------------------------------------------------------------------------------- /tools/data/texte2e/icdar_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/texte2e/icdar_converter.py -------------------------------------------------------------------------------- /tools/data/texte2e/totaltext_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/texte2e/totaltext_converter.py -------------------------------------------------------------------------------- /tools/data/textrecog/seg_synthtext_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/textrecog/seg_synthtext_converter.py -------------------------------------------------------------------------------- /tools/data/textrecog/svt_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/textrecog/svt_converter.py -------------------------------------------------------------------------------- /tools/data/textrecog/synthtext_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/textrecog/synthtext_converter.py -------------------------------------------------------------------------------- /tools/data/textrecog/textocr_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/textrecog/textocr_converter.py -------------------------------------------------------------------------------- /tools/data/textrecog/totaltext_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/textrecog/totaltext_converter.py -------------------------------------------------------------------------------- /tools/data/utils/txt2lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/data/utils/txt2lmdb.py -------------------------------------------------------------------------------- /tools/deployment/deploy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/deployment/deploy_test.py -------------------------------------------------------------------------------- /tools/deployment/onnx2tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/deployment/onnx2tensorrt.py -------------------------------------------------------------------------------- /tools/deployment/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/deployment/pytorch2onnx.py -------------------------------------------------------------------------------- /tools/det_test_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/det_test_imgs.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/kie_test_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/kie_test_imgs.py -------------------------------------------------------------------------------- /tools/kie_test_imgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/kie_test_imgs.sh -------------------------------------------------------------------------------- /tools/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/publish_model.py -------------------------------------------------------------------------------- /tools/recog_test_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/recog_test_imgs.py -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wei-ucas/TPSNet/HEAD/tools/train.py --------------------------------------------------------------------------------