├── README.md ├── bg_img ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg └── 9.jpg ├── config ├── det_DB_mobilev3.yaml ├── det_DB_resnet50.yaml ├── det_DB_resnet50_3_3.yaml ├── det_DB_resnet50_mul.yaml ├── det_PAN_mobilev3.yaml ├── det_PAN_resnet18.yaml ├── det_PAN_resnet18_3_3.yaml ├── det_PSE_mobilev3.yaml ├── det_PSE_resnet50.yaml ├── det_PSE_resnet50_3_3.yaml ├── det_SAST_resnet50.yaml ├── det_SAST_resnet50_3_3_ori_dataload.yaml ├── det_SAST_resnet50_ori_dataload.yaml ├── rec_CRNN_mobilev3_large_english_all.yaml ├── rec_CRNN_mobilev3_large_english_lmdb.yaml ├── rec_CRNN_mobilev3_small_english_all.yaml ├── rec_CRNN_mobilev3_small_english_lmdb.yaml ├── rec_CRNN_resnet34_english_lmdb.yaml ├── rec_CRNN_resnet_english.yaml ├── rec_CRNN_resnet_english_all.yaml └── rec_FC_resnet_english_all.yaml ├── doc ├── example │ ├── det_test_list.txt │ ├── det_train_list.txt │ ├── label.txt │ ├── rec_test_list.txt │ └── rec_train_list.txt ├── md │ ├── ocr.jpg │ ├── onnx_to_tensorrt.md │ ├── pytorch_to_onnx.md │ ├── 文本检测训练文档.md │ ├── 文本识别训练文档.md │ ├── 模型剪枝.md │ └── 模型蒸馏.md └── show │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── ocr1.jpg │ └── ocr2.jpg ├── make.sh ├── onnx └── onnx-simple.sh ├── ptocr ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── optimizer.cpython-36.pyc ├── dataloader │ ├── DetLoad │ │ ├── DBProcess.py │ │ ├── MakeBorderMap.py │ │ ├── MakeSegMap.py │ │ ├── PANProcess.py │ │ ├── PSEProcess.py │ │ ├── SASTProcess.py │ │ ├── SASTProcess_ori.py │ │ ├── SASTProcess_ori1.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── DBProcess.cpython-36.pyc │ │ │ ├── MakeBorderMap.cpython-36.pyc │ │ │ ├── MakeSegMap.cpython-36.pyc │ │ │ ├── SASTProcess_ori.cpython-36.pyc │ │ │ ├── SASTProcess_ori1.cpython-36.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── transform_img.cpython-36.pyc │ │ └── transform_img.py │ ├── RecLoad │ │ ├── CRNNProcess.py │ │ ├── CRNNProcess1.py │ │ ├── DataAgument.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── CRNNProcess.cpython-36.pyc │ │ │ ├── CRNNProcess1.cpython-36.pyc │ │ │ ├── DataAgument.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-36.pyc ├── model │ ├── CommonFunction.py │ ├── CommonFunction_Q.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── CommonFunction.cpython-36.pyc │ │ └── __init__.cpython-36.pyc │ ├── architectures │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── det_model.cpython-35.pyc │ │ │ ├── det_model.cpython-36.pyc │ │ │ ├── rec_model.cpython-36.pyc │ │ │ ├── stn.cpython-36.pyc │ │ │ ├── stn_head.cpython-36.pyc │ │ │ └── tps_spatial_transformer.cpython-36.pyc │ │ ├── det_model.py │ │ ├── det_model_q.py │ │ ├── paddle_tps.py │ │ └── rec_model.py │ ├── backbone │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── det_mobilev3.cpython-35.pyc │ │ │ ├── det_mobilev3.cpython-36.pyc │ │ │ ├── det_mobilev3_dcd.cpython-36.pyc │ │ │ ├── det_resnet.cpython-35.pyc │ │ │ ├── det_resnet.cpython-36.pyc │ │ │ ├── det_resnet_3_3.cpython-36.pyc │ │ │ ├── det_resnet_sast.cpython-35.pyc │ │ │ ├── det_resnet_sast.cpython-36.pyc │ │ │ ├── det_resnet_sast_3_3.cpython-36.pyc │ │ │ ├── det_scnet.cpython-35.pyc │ │ │ ├── rec_crnn_backbone.cpython-36.pyc │ │ │ ├── rec_mobilev3_bd.cpython-36.pyc │ │ │ ├── rec_vgg.cpython-36.pyc │ │ │ └── reg_resnet_bd.cpython-36.pyc │ │ ├── det_mobilev3.py │ │ ├── det_mobilev3_pytorch_qua.py │ │ ├── det_resnet.py │ │ ├── det_resnet_3_3.py │ │ ├── det_resnet_sast.py │ │ ├── det_resnet_sast_3_3.py │ │ ├── rec_mobilev3_bd.py │ │ ├── reg_mobilev3.py │ │ └── reg_resnet_bd.py │ ├── head │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── det_DBHead.cpython-35.pyc │ │ │ ├── det_DBHead.cpython-36.pyc │ │ │ ├── det_FPEM_FFM_Head.cpython-35.pyc │ │ │ ├── det_FPEM_FFM_Head.cpython-36.pyc │ │ │ ├── det_FPNHead.cpython-35.pyc │ │ │ ├── det_FPNHead.cpython-36.pyc │ │ │ ├── det_SASTHead.cpython-35.pyc │ │ │ ├── det_SASTHead.cpython-36.pyc │ │ │ ├── rec_CRNNHead.cpython-36.pyc │ │ │ └── rec_FCHead.cpython-36.pyc │ │ ├── det_DBHead.py │ │ ├── det_DBHead_Qua.py │ │ ├── det_FPEM_FFM_Head.py │ │ ├── det_FPNHead.py │ │ ├── det_SASTHead.py │ │ ├── rec_CRNNHead.py │ │ └── rec_FCHead.py │ ├── loss │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── basical_loss.cpython-35.pyc │ │ │ ├── basical_loss.cpython-36.pyc │ │ │ ├── centerloss.cpython-36.pyc │ │ │ ├── ctc_loss.cpython-36.pyc │ │ │ ├── db_loss.cpython-35.pyc │ │ │ ├── db_loss.cpython-36.pyc │ │ │ ├── fc_loss.cpython-36.pyc │ │ │ ├── pan_loss.cpython-35.pyc │ │ │ ├── pan_loss.cpython-36.pyc │ │ │ ├── pse_loss.cpython-35.pyc │ │ │ ├── pse_loss.cpython-36.pyc │ │ │ ├── sast_loss.cpython-35.pyc │ │ │ └── sast_loss.cpython-36.pyc │ │ ├── basical_loss.py │ │ ├── centerloss.py │ │ ├── ctc_loss.py │ │ ├── db_loss.py │ │ ├── fc_loss.py │ │ ├── pan_loss.py │ │ ├── pse_loss.py │ │ └── sast_loss.py │ └── segout │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── det_DB_segout.cpython-35.pyc │ │ ├── det_DB_segout.cpython-36.pyc │ │ ├── det_PAN_segout.cpython-35.pyc │ │ ├── det_PAN_segout.cpython-36.pyc │ │ ├── det_PSE_segout.cpython-35.pyc │ │ ├── det_PSE_segout.cpython-36.pyc │ │ ├── det_SAST_segout.cpython-35.pyc │ │ └── det_SAST_segout.cpython-36.pyc │ │ ├── det_DB_segout.py │ │ ├── det_DB_segout_qua.py │ │ ├── det_PAN_segout.py │ │ ├── det_PSE_segout.py │ │ └── det_SAST_segout.py ├── optimizer.py ├── postprocess │ ├── DBpostprocess.py │ ├── PANpostprocess.py │ ├── PSEpostprocess.py │ ├── SASTpostprocess.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── DBpostprocess.cpython-36.pyc │ │ ├── SASTpostprocess.cpython-36.pyc │ │ ├── __init__.cpython-36.pyc │ │ └── locality_aware_nms.cpython-36.pyc │ ├── dbprocess │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ ├── cppdbprocess.cpp │ │ ├── cppdbprocess.so │ │ └── include │ │ │ ├── clipper.h │ │ │ ├── clipper │ │ │ ├── clipper.cpp │ │ │ └── clipper.hpp │ │ │ ├── postprocess_op.h │ │ │ └── pybind11 │ │ │ ├── attr.h │ │ │ ├── buffer_info.h │ │ │ ├── cast.h │ │ │ ├── chrono.h │ │ │ ├── class_support.h │ │ │ ├── common.h │ │ │ ├── complex.h │ │ │ ├── descr.h │ │ │ ├── detail │ │ │ ├── class.h │ │ │ ├── common.h │ │ │ ├── descr.h │ │ │ ├── init.h │ │ │ ├── internals.h │ │ │ └── typeid.h │ │ │ ├── eigen.h │ │ │ ├── embed.h │ │ │ ├── eval.h │ │ │ ├── functional.h │ │ │ ├── iostream.h │ │ │ ├── numpy.h │ │ │ ├── operators.h │ │ │ ├── options.h │ │ │ ├── pybind11.h │ │ │ ├── pytypes.h │ │ │ ├── stl.h │ │ │ ├── stl_bind.h │ │ │ └── typeid.h │ ├── lanms │ │ ├── .gitignore │ │ ├── .ycm_extra_conf.py │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ ├── adaptor.cpp │ │ ├── include │ │ │ ├── clipper │ │ │ │ ├── clipper.cpp │ │ │ │ └── clipper.hpp │ │ │ └── pybind11 │ │ │ │ ├── attr.h │ │ │ │ ├── buffer_info.h │ │ │ │ ├── cast.h │ │ │ │ ├── chrono.h │ │ │ │ ├── class_support.h │ │ │ │ ├── common.h │ │ │ │ ├── complex.h │ │ │ │ ├── descr.h │ │ │ │ ├── eigen.h │ │ │ │ ├── embed.h │ │ │ │ ├── eval.h │ │ │ │ ├── functional.h │ │ │ │ ├── numpy.h │ │ │ │ ├── operators.h │ │ │ │ ├── options.h │ │ │ │ ├── pybind11.h │ │ │ │ ├── pytypes.h │ │ │ │ ├── stl.h │ │ │ │ ├── stl_bind.h │ │ │ │ └── typeid.h │ │ └── lanms.h │ ├── locality_aware_nms.py │ └── piexlmerge │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── include │ │ ├── clipper │ │ │ ├── clipper.cpp │ │ │ └── clipper.hpp │ │ └── pybind11 │ │ │ ├── attr.h │ │ │ ├── buffer_info.h │ │ │ ├── cast.h │ │ │ ├── chrono.h │ │ │ ├── class_support.h │ │ │ ├── common.h │ │ │ ├── complex.h │ │ │ ├── descr.h │ │ │ ├── detail │ │ │ ├── class.h │ │ │ ├── common.h │ │ │ ├── descr.h │ │ │ ├── init.h │ │ │ ├── internals.h │ │ │ └── typeid.h │ │ │ ├── eigen.h │ │ │ ├── embed.h │ │ │ ├── eval.h │ │ │ ├── functional.h │ │ │ ├── iostream.h │ │ │ ├── numpy.h │ │ │ ├── operators.h │ │ │ ├── options.h │ │ │ ├── pybind11.h │ │ │ ├── pytypes.h │ │ │ ├── stl.h │ │ │ ├── stl_bind.h │ │ │ └── typeid.h │ │ ├── lanms.h │ │ ├── pixelmerge.cpp │ │ └── pixelmerge.so └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── cal_iou_acc.cpython-36.pyc │ ├── gen_teacher_model.cpython-36.pyc │ ├── logger.cpython-36.pyc │ ├── metrics.cpython-36.pyc │ ├── prune_script.cpython-36.pyc │ ├── transform_label.cpython-36.pyc │ └── util_function.cpython-36.pyc │ ├── cal_iou_acc.py │ ├── gen_teacher_model.py │ ├── logger.py │ ├── metrics.py │ ├── prune_script.py │ ├── transform_label.py │ └── util_function.py ├── requirement.txt ├── script ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── onnx_to_tensorrt.cpython-36.pyc ├── create_lmdb.py ├── create_lmdb_multiprocessing.py ├── get_key_label.py ├── get_train_list.py ├── onnx_to_tensorrt.py ├── pytorch_to_onnx.py └── warp_polar.py ├── to_onnx.sh ├── to_tensorrt.sh └── tools ├── __init__.py ├── __pycache__ ├── MarginLoss.cpython-36.pyc └── __init__.cpython-36.pyc ├── cal.py ├── cal_rescall ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── cal_det.cpython-36.pyc │ ├── cal_iou.cpython-36.pyc │ ├── rrc_evaluation_funcs.cpython-35.pyc │ ├── rrc_evaluation_funcs.cpython-36.pyc │ ├── script.cpython-35.pyc │ └── script.cpython-36.pyc ├── cal_det.py ├── cal_iou.py ├── rrc_evaluation_funcs.py └── script.py ├── det_infer.py ├── det_sast.py ├── det_train.py ├── det_train_qua.py ├── pruned ├── __init__.py ├── prune_model_all.py └── prune_model_backbone.py ├── rec_infer.py ├── rec_infer_bk1.py ├── rec_train.py ├── rec_train_bk1.py ├── rec_train_bk2.py └── rec_train_bk3.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/README.md -------------------------------------------------------------------------------- /bg_img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/bg_img/1.jpg -------------------------------------------------------------------------------- /bg_img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/bg_img/2.jpg -------------------------------------------------------------------------------- /bg_img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/bg_img/3.jpg -------------------------------------------------------------------------------- /bg_img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/bg_img/4.jpg -------------------------------------------------------------------------------- /bg_img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/bg_img/5.jpg -------------------------------------------------------------------------------- /bg_img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/bg_img/6.jpg -------------------------------------------------------------------------------- /bg_img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/bg_img/7.jpg -------------------------------------------------------------------------------- /bg_img/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/bg_img/8.jpg -------------------------------------------------------------------------------- /bg_img/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/bg_img/9.jpg -------------------------------------------------------------------------------- /config/det_DB_mobilev3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_DB_mobilev3.yaml -------------------------------------------------------------------------------- /config/det_DB_resnet50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_DB_resnet50.yaml -------------------------------------------------------------------------------- /config/det_DB_resnet50_3_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_DB_resnet50_3_3.yaml -------------------------------------------------------------------------------- /config/det_DB_resnet50_mul.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_DB_resnet50_mul.yaml -------------------------------------------------------------------------------- /config/det_PAN_mobilev3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_PAN_mobilev3.yaml -------------------------------------------------------------------------------- /config/det_PAN_resnet18.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_PAN_resnet18.yaml -------------------------------------------------------------------------------- /config/det_PAN_resnet18_3_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_PAN_resnet18_3_3.yaml -------------------------------------------------------------------------------- /config/det_PSE_mobilev3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_PSE_mobilev3.yaml -------------------------------------------------------------------------------- /config/det_PSE_resnet50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_PSE_resnet50.yaml -------------------------------------------------------------------------------- /config/det_PSE_resnet50_3_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_PSE_resnet50_3_3.yaml -------------------------------------------------------------------------------- /config/det_SAST_resnet50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_SAST_resnet50.yaml -------------------------------------------------------------------------------- /config/det_SAST_resnet50_3_3_ori_dataload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_SAST_resnet50_3_3_ori_dataload.yaml -------------------------------------------------------------------------------- /config/det_SAST_resnet50_ori_dataload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/det_SAST_resnet50_ori_dataload.yaml -------------------------------------------------------------------------------- /config/rec_CRNN_mobilev3_large_english_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/rec_CRNN_mobilev3_large_english_all.yaml -------------------------------------------------------------------------------- /config/rec_CRNN_mobilev3_large_english_lmdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/rec_CRNN_mobilev3_large_english_lmdb.yaml -------------------------------------------------------------------------------- /config/rec_CRNN_mobilev3_small_english_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/rec_CRNN_mobilev3_small_english_all.yaml -------------------------------------------------------------------------------- /config/rec_CRNN_mobilev3_small_english_lmdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/rec_CRNN_mobilev3_small_english_lmdb.yaml -------------------------------------------------------------------------------- /config/rec_CRNN_resnet34_english_lmdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/rec_CRNN_resnet34_english_lmdb.yaml -------------------------------------------------------------------------------- /config/rec_CRNN_resnet_english.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/rec_CRNN_resnet_english.yaml -------------------------------------------------------------------------------- /config/rec_CRNN_resnet_english_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/rec_CRNN_resnet_english_all.yaml -------------------------------------------------------------------------------- /config/rec_FC_resnet_english_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/config/rec_FC_resnet_english_all.yaml -------------------------------------------------------------------------------- /doc/example/det_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/example/det_test_list.txt -------------------------------------------------------------------------------- /doc/example/det_train_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/example/det_train_list.txt -------------------------------------------------------------------------------- /doc/example/label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/example/label.txt -------------------------------------------------------------------------------- /doc/example/rec_test_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/example/rec_test_list.txt -------------------------------------------------------------------------------- /doc/example/rec_train_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/example/rec_train_list.txt -------------------------------------------------------------------------------- /doc/md/ocr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/md/ocr.jpg -------------------------------------------------------------------------------- /doc/md/onnx_to_tensorrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/md/onnx_to_tensorrt.md -------------------------------------------------------------------------------- /doc/md/pytorch_to_onnx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/md/pytorch_to_onnx.md -------------------------------------------------------------------------------- /doc/md/文本检测训练文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/md/文本检测训练文档.md -------------------------------------------------------------------------------- /doc/md/文本识别训练文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/md/文本识别训练文档.md -------------------------------------------------------------------------------- /doc/md/模型剪枝.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/md/模型剪枝.md -------------------------------------------------------------------------------- /doc/md/模型蒸馏.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/md/模型蒸馏.md -------------------------------------------------------------------------------- /doc/show/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/show/1.jpg -------------------------------------------------------------------------------- /doc/show/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/show/2.jpg -------------------------------------------------------------------------------- /doc/show/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/show/3.jpg -------------------------------------------------------------------------------- /doc/show/ocr1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/show/ocr1.jpg -------------------------------------------------------------------------------- /doc/show/ocr2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/doc/show/ocr2.jpg -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/make.sh -------------------------------------------------------------------------------- /onnx/onnx-simple.sh: -------------------------------------------------------------------------------- 1 | python3 -m onnxsim $1 $2 -------------------------------------------------------------------------------- /ptocr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/__init__.py -------------------------------------------------------------------------------- /ptocr/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/__pycache__/optimizer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/__pycache__/optimizer.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/DBProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/DBProcess.py -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/MakeBorderMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/MakeBorderMap.py -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/MakeSegMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/MakeSegMap.py -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/PANProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/PANProcess.py -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/PSEProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/PSEProcess.py -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/SASTProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/SASTProcess.py -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/SASTProcess_ori.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/SASTProcess_ori.py -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/SASTProcess_ori1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/SASTProcess_ori1.py -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/__init__.py -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/__pycache__/DBProcess.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/__pycache__/DBProcess.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/__pycache__/MakeBorderMap.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/__pycache__/MakeBorderMap.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/__pycache__/MakeSegMap.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/__pycache__/MakeSegMap.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/__pycache__/SASTProcess_ori.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/__pycache__/SASTProcess_ori.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/__pycache__/SASTProcess_ori1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/__pycache__/SASTProcess_ori1.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/__pycache__/transform_img.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/__pycache__/transform_img.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/DetLoad/transform_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/DetLoad/transform_img.py -------------------------------------------------------------------------------- /ptocr/dataloader/RecLoad/CRNNProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/RecLoad/CRNNProcess.py -------------------------------------------------------------------------------- /ptocr/dataloader/RecLoad/CRNNProcess1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/RecLoad/CRNNProcess1.py -------------------------------------------------------------------------------- /ptocr/dataloader/RecLoad/DataAgument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/RecLoad/DataAgument.py -------------------------------------------------------------------------------- /ptocr/dataloader/RecLoad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/RecLoad/__init__.py -------------------------------------------------------------------------------- /ptocr/dataloader/RecLoad/__pycache__/CRNNProcess.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/RecLoad/__pycache__/CRNNProcess.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/RecLoad/__pycache__/CRNNProcess1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/RecLoad/__pycache__/CRNNProcess1.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/RecLoad/__pycache__/DataAgument.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/RecLoad/__pycache__/DataAgument.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/RecLoad/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/RecLoad/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/dataloader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/__init__.py -------------------------------------------------------------------------------- /ptocr/dataloader/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/dataloader/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/CommonFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/CommonFunction.py -------------------------------------------------------------------------------- /ptocr/model/CommonFunction_Q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/CommonFunction_Q.py -------------------------------------------------------------------------------- /ptocr/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/__init__.py -------------------------------------------------------------------------------- /ptocr/model/__pycache__/CommonFunction.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/__pycache__/CommonFunction.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/architectures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/__init__.py -------------------------------------------------------------------------------- /ptocr/model/architectures/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/architectures/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/architectures/__pycache__/det_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/__pycache__/det_model.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/architectures/__pycache__/det_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/__pycache__/det_model.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/architectures/__pycache__/rec_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/__pycache__/rec_model.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/architectures/__pycache__/stn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/__pycache__/stn.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/architectures/__pycache__/stn_head.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/__pycache__/stn_head.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/architectures/__pycache__/tps_spatial_transformer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/__pycache__/tps_spatial_transformer.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/architectures/det_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/det_model.py -------------------------------------------------------------------------------- /ptocr/model/architectures/det_model_q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/det_model_q.py -------------------------------------------------------------------------------- /ptocr/model/architectures/paddle_tps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/paddle_tps.py -------------------------------------------------------------------------------- /ptocr/model/architectures/rec_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/architectures/rec_model.py -------------------------------------------------------------------------------- /ptocr/model/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__init__.py -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/det_mobilev3.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/det_mobilev3.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/det_mobilev3.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/det_mobilev3.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/det_mobilev3_dcd.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/det_mobilev3_dcd.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/det_resnet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/det_resnet.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/det_resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/det_resnet.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/det_resnet_3_3.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/det_resnet_3_3.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/det_resnet_sast.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/det_resnet_sast.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/det_resnet_sast.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/det_resnet_sast.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/det_resnet_sast_3_3.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/det_resnet_sast_3_3.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/det_scnet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/det_scnet.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/rec_crnn_backbone.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/rec_crnn_backbone.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/rec_mobilev3_bd.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/rec_mobilev3_bd.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/rec_vgg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/rec_vgg.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/__pycache__/reg_resnet_bd.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/__pycache__/reg_resnet_bd.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/backbone/det_mobilev3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/det_mobilev3.py -------------------------------------------------------------------------------- /ptocr/model/backbone/det_mobilev3_pytorch_qua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/det_mobilev3_pytorch_qua.py -------------------------------------------------------------------------------- /ptocr/model/backbone/det_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/det_resnet.py -------------------------------------------------------------------------------- /ptocr/model/backbone/det_resnet_3_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/det_resnet_3_3.py -------------------------------------------------------------------------------- /ptocr/model/backbone/det_resnet_sast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/det_resnet_sast.py -------------------------------------------------------------------------------- /ptocr/model/backbone/det_resnet_sast_3_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/det_resnet_sast_3_3.py -------------------------------------------------------------------------------- /ptocr/model/backbone/rec_mobilev3_bd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/rec_mobilev3_bd.py -------------------------------------------------------------------------------- /ptocr/model/backbone/reg_mobilev3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/reg_mobilev3.py -------------------------------------------------------------------------------- /ptocr/model/backbone/reg_resnet_bd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/backbone/reg_resnet_bd.py -------------------------------------------------------------------------------- /ptocr/model/head/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__init__.py -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/det_DBHead.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/det_DBHead.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/det_DBHead.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/det_DBHead.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/det_FPEM_FFM_Head.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/det_FPEM_FFM_Head.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/det_FPEM_FFM_Head.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/det_FPEM_FFM_Head.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/det_FPNHead.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/det_FPNHead.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/det_FPNHead.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/det_FPNHead.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/det_SASTHead.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/det_SASTHead.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/det_SASTHead.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/det_SASTHead.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/rec_CRNNHead.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/rec_CRNNHead.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/head/__pycache__/rec_FCHead.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/__pycache__/rec_FCHead.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/head/det_DBHead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/det_DBHead.py -------------------------------------------------------------------------------- /ptocr/model/head/det_DBHead_Qua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/det_DBHead_Qua.py -------------------------------------------------------------------------------- /ptocr/model/head/det_FPEM_FFM_Head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/det_FPEM_FFM_Head.py -------------------------------------------------------------------------------- /ptocr/model/head/det_FPNHead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/det_FPNHead.py -------------------------------------------------------------------------------- /ptocr/model/head/det_SASTHead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/det_SASTHead.py -------------------------------------------------------------------------------- /ptocr/model/head/rec_CRNNHead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/rec_CRNNHead.py -------------------------------------------------------------------------------- /ptocr/model/head/rec_FCHead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/head/rec_FCHead.py -------------------------------------------------------------------------------- /ptocr/model/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__init__.py -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/basical_loss.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/basical_loss.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/basical_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/basical_loss.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/centerloss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/centerloss.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/ctc_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/ctc_loss.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/db_loss.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/db_loss.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/db_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/db_loss.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/fc_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/fc_loss.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/pan_loss.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/pan_loss.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/pan_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/pan_loss.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/pse_loss.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/pse_loss.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/pse_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/pse_loss.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/sast_loss.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/sast_loss.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/__pycache__/sast_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/__pycache__/sast_loss.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/loss/basical_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/basical_loss.py -------------------------------------------------------------------------------- /ptocr/model/loss/centerloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/centerloss.py -------------------------------------------------------------------------------- /ptocr/model/loss/ctc_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/ctc_loss.py -------------------------------------------------------------------------------- /ptocr/model/loss/db_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/db_loss.py -------------------------------------------------------------------------------- /ptocr/model/loss/fc_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/fc_loss.py -------------------------------------------------------------------------------- /ptocr/model/loss/pan_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/pan_loss.py -------------------------------------------------------------------------------- /ptocr/model/loss/pse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/pse_loss.py -------------------------------------------------------------------------------- /ptocr/model/loss/sast_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/loss/sast_loss.py -------------------------------------------------------------------------------- /ptocr/model/segout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/__init__.py -------------------------------------------------------------------------------- /ptocr/model/segout/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/segout/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/segout/__pycache__/det_DB_segout.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/__pycache__/det_DB_segout.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/segout/__pycache__/det_DB_segout.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/__pycache__/det_DB_segout.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/segout/__pycache__/det_PAN_segout.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/__pycache__/det_PAN_segout.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/segout/__pycache__/det_PAN_segout.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/__pycache__/det_PAN_segout.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/segout/__pycache__/det_PSE_segout.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/__pycache__/det_PSE_segout.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/segout/__pycache__/det_PSE_segout.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/__pycache__/det_PSE_segout.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/segout/__pycache__/det_SAST_segout.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/__pycache__/det_SAST_segout.cpython-35.pyc -------------------------------------------------------------------------------- /ptocr/model/segout/__pycache__/det_SAST_segout.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/__pycache__/det_SAST_segout.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/model/segout/det_DB_segout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/det_DB_segout.py -------------------------------------------------------------------------------- /ptocr/model/segout/det_DB_segout_qua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/det_DB_segout_qua.py -------------------------------------------------------------------------------- /ptocr/model/segout/det_PAN_segout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/det_PAN_segout.py -------------------------------------------------------------------------------- /ptocr/model/segout/det_PSE_segout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/det_PSE_segout.py -------------------------------------------------------------------------------- /ptocr/model/segout/det_SAST_segout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/model/segout/det_SAST_segout.py -------------------------------------------------------------------------------- /ptocr/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/optimizer.py -------------------------------------------------------------------------------- /ptocr/postprocess/DBpostprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/DBpostprocess.py -------------------------------------------------------------------------------- /ptocr/postprocess/PANpostprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/PANpostprocess.py -------------------------------------------------------------------------------- /ptocr/postprocess/PSEpostprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/PSEpostprocess.py -------------------------------------------------------------------------------- /ptocr/postprocess/SASTpostprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/SASTpostprocess.py -------------------------------------------------------------------------------- /ptocr/postprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/__init__.py -------------------------------------------------------------------------------- /ptocr/postprocess/__pycache__/DBpostprocess.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/__pycache__/DBpostprocess.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/postprocess/__pycache__/SASTpostprocess.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/__pycache__/SASTpostprocess.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/postprocess/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/postprocess/__pycache__/locality_aware_nms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/__pycache__/locality_aware_nms.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/Makefile -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/__init__.py -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/cppdbprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/cppdbprocess.cpp -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/cppdbprocess.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/cppdbprocess.so -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/clipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/clipper.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/clipper/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/clipper/clipper.cpp -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/clipper/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/clipper/clipper.hpp -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/postprocess_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/postprocess_op.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/attr.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/buffer_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/buffer_info.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/cast.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/chrono.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/class_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/class_support.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/common.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/complex.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/descr.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/detail/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/detail/class.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/detail/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/detail/common.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/detail/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/detail/descr.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/detail/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/detail/init.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/detail/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/detail/internals.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/detail/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/detail/typeid.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/eigen.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/embed.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/eval.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/functional.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/iostream.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/numpy.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/operators.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/options.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/pybind11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/pybind11.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/pytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/pytypes.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/stl.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/stl_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/stl_bind.h -------------------------------------------------------------------------------- /ptocr/postprocess/dbprocess/include/pybind11/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/dbprocess/include/pybind11/typeid.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/.gitignore: -------------------------------------------------------------------------------- 1 | adaptor.so 2 | -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/.ycm_extra_conf.py -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/Makefile -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/__init__.py -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/__main__.py -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/adaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/adaptor.cpp -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/clipper/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/clipper/clipper.cpp -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/clipper/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/clipper/clipper.hpp -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/attr.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/buffer_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/buffer_info.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/cast.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/chrono.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/class_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/class_support.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/common.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/complex.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/descr.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/eigen.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/embed.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/eval.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/functional.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/numpy.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/operators.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/options.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/pybind11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/pybind11.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/pytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/pytypes.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/stl.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/stl_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/stl_bind.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/include/pybind11/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/include/pybind11/typeid.h -------------------------------------------------------------------------------- /ptocr/postprocess/lanms/lanms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/lanms/lanms.h -------------------------------------------------------------------------------- /ptocr/postprocess/locality_aware_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/locality_aware_nms.py -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/Makefile -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/__init__.py -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/clipper/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/clipper/clipper.cpp -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/clipper/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/clipper/clipper.hpp -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/attr.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/buffer_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/buffer_info.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/cast.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/chrono.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/class_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/class_support.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/common.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/complex.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/descr.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/detail/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/detail/class.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/detail/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/detail/common.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/detail/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/detail/descr.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/detail/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/detail/init.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/detail/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/detail/internals.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/detail/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/detail/typeid.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/eigen.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/embed.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/eval.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/functional.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/iostream.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/numpy.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/operators.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/options.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/pybind11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/pybind11.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/pytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/pytypes.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/stl.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/stl_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/stl_bind.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/include/pybind11/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/include/pybind11/typeid.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/lanms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/lanms.h -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/pixelmerge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/pixelmerge.cpp -------------------------------------------------------------------------------- /ptocr/postprocess/piexlmerge/pixelmerge.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/postprocess/piexlmerge/pixelmerge.so -------------------------------------------------------------------------------- /ptocr/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/__init__.py -------------------------------------------------------------------------------- /ptocr/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/utils/__pycache__/cal_iou_acc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/__pycache__/cal_iou_acc.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/utils/__pycache__/gen_teacher_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/__pycache__/gen_teacher_model.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/utils/__pycache__/logger.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/__pycache__/logger.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/utils/__pycache__/metrics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/__pycache__/metrics.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/utils/__pycache__/prune_script.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/__pycache__/prune_script.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/utils/__pycache__/transform_label.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/__pycache__/transform_label.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/utils/__pycache__/util_function.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/__pycache__/util_function.cpython-36.pyc -------------------------------------------------------------------------------- /ptocr/utils/cal_iou_acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/cal_iou_acc.py -------------------------------------------------------------------------------- /ptocr/utils/gen_teacher_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/gen_teacher_model.py -------------------------------------------------------------------------------- /ptocr/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/logger.py -------------------------------------------------------------------------------- /ptocr/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/metrics.py -------------------------------------------------------------------------------- /ptocr/utils/prune_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/prune_script.py -------------------------------------------------------------------------------- /ptocr/utils/transform_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/transform_label.py -------------------------------------------------------------------------------- /ptocr/utils/util_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/ptocr/utils/util_function.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/requirement.txt -------------------------------------------------------------------------------- /script/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/script/__init__.py -------------------------------------------------------------------------------- /script/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/script/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /script/__pycache__/onnx_to_tensorrt.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/script/__pycache__/onnx_to_tensorrt.cpython-36.pyc -------------------------------------------------------------------------------- /script/create_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/script/create_lmdb.py -------------------------------------------------------------------------------- /script/create_lmdb_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/script/create_lmdb_multiprocessing.py -------------------------------------------------------------------------------- /script/get_key_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/script/get_key_label.py -------------------------------------------------------------------------------- /script/get_train_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/script/get_train_list.py -------------------------------------------------------------------------------- /script/onnx_to_tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/script/onnx_to_tensorrt.py -------------------------------------------------------------------------------- /script/pytorch_to_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/script/pytorch_to_onnx.py -------------------------------------------------------------------------------- /script/warp_polar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/script/warp_polar.py -------------------------------------------------------------------------------- /to_onnx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/to_onnx.sh -------------------------------------------------------------------------------- /to_tensorrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/to_tensorrt.sh -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/__pycache__/MarginLoss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/__pycache__/MarginLoss.cpython-36.pyc -------------------------------------------------------------------------------- /tools/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /tools/cal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal.py -------------------------------------------------------------------------------- /tools/cal_rescall/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/__init__.py -------------------------------------------------------------------------------- /tools/cal_rescall/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /tools/cal_rescall/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /tools/cal_rescall/__pycache__/cal_det.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/__pycache__/cal_det.cpython-36.pyc -------------------------------------------------------------------------------- /tools/cal_rescall/__pycache__/cal_iou.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/__pycache__/cal_iou.cpython-36.pyc -------------------------------------------------------------------------------- /tools/cal_rescall/__pycache__/rrc_evaluation_funcs.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/__pycache__/rrc_evaluation_funcs.cpython-35.pyc -------------------------------------------------------------------------------- /tools/cal_rescall/__pycache__/rrc_evaluation_funcs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/__pycache__/rrc_evaluation_funcs.cpython-36.pyc -------------------------------------------------------------------------------- /tools/cal_rescall/__pycache__/script.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/__pycache__/script.cpython-35.pyc -------------------------------------------------------------------------------- /tools/cal_rescall/__pycache__/script.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/__pycache__/script.cpython-36.pyc -------------------------------------------------------------------------------- /tools/cal_rescall/cal_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/cal_det.py -------------------------------------------------------------------------------- /tools/cal_rescall/cal_iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/cal_iou.py -------------------------------------------------------------------------------- /tools/cal_rescall/rrc_evaluation_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/rrc_evaluation_funcs.py -------------------------------------------------------------------------------- /tools/cal_rescall/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/cal_rescall/script.py -------------------------------------------------------------------------------- /tools/det_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/det_infer.py -------------------------------------------------------------------------------- /tools/det_sast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/det_sast.py -------------------------------------------------------------------------------- /tools/det_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/det_train.py -------------------------------------------------------------------------------- /tools/det_train_qua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/det_train_qua.py -------------------------------------------------------------------------------- /tools/pruned/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/pruned/prune_model_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/pruned/prune_model_all.py -------------------------------------------------------------------------------- /tools/pruned/prune_model_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/pruned/prune_model_backbone.py -------------------------------------------------------------------------------- /tools/rec_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/rec_infer.py -------------------------------------------------------------------------------- /tools/rec_infer_bk1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/rec_infer_bk1.py -------------------------------------------------------------------------------- /tools/rec_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/rec_train.py -------------------------------------------------------------------------------- /tools/rec_train_bk1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/rec_train_bk1.py -------------------------------------------------------------------------------- /tools/rec_train_bk2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/rec_train_bk2.py -------------------------------------------------------------------------------- /tools/rec_train_bk3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBADBADBOY/pytorchOCR/HEAD/tools/rec_train_bk3.py --------------------------------------------------------------------------------