├── .gitignore ├── .idea ├── .gitignore ├── deployment.xml ├── handwritind_dect_reco_one_batch_c_open.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── data └── show │ ├── reco.png │ └── reco1.png ├── dataset ├── __init__.py ├── augment.py ├── data_utils_kernel_box.py ├── data_utils_kernel_box_from_dgrl.py ├── decode_page_with_box.py ├── hwdb1_chars_dict.py ├── hwdb2_0_chars.py └── iam_char_dict.py ├── eva_hwdb_with_gt_box.py ├── eval_hwdb_with_center_line.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── connect_layer_new_one_batch_hwdb.cpython-37.pyc │ └── model_with_TCN_big_new_one_batch_hwdb.cpython-37.pyc ├── connect_layer_new_one_batch_hwdb.py ├── dect │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── pannet.cpython-37.pyc │ │ ├── resnet.cpython-37.pyc │ │ ├── segmentation_head.cpython-37.pyc │ │ └── shufflenetv2.cpython-37.pyc │ ├── pannet.py │ ├── resnet.py │ ├── segmentation_head.py │ └── shufflenetv2.py ├── loss_ctc.py ├── loss_kernels.py ├── model_with_TCN_big_new_one_batch_hwdb.py └── reco │ ├── SelfAttention.py │ ├── TCN.py │ ├── __init__.py │ ├── __pycache__ │ ├── SelfAttention.cpython-37.pyc │ ├── TCN.cpython-37.pyc │ ├── __init__.cpython-37.pyc │ └── reco_layer_new_with_tcn_big.cpython-37.pyc │ └── reco_layer_new_with_tcn_big.py ├── train_with_hwdb2.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc ├── get_dgrl_data.cpython-37.pyc ├── hwdb2_0_chars.cpython-37.pyc ├── pred_utils.cpython-37.pyc └── utils.cpython-37.pyc ├── get_dgrl_data.py ├── hwdb2_0_chars.py ├── pred_utils.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/handwritind_dect_reco_one_batch_c_open.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/.idea/handwritind_dect_reco_one_batch_c_open.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/README.md -------------------------------------------------------------------------------- /data/show/reco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/data/show/reco.png -------------------------------------------------------------------------------- /data/show/reco1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/data/show/reco1.png -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/dataset/augment.py -------------------------------------------------------------------------------- /dataset/data_utils_kernel_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/dataset/data_utils_kernel_box.py -------------------------------------------------------------------------------- /dataset/data_utils_kernel_box_from_dgrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/dataset/data_utils_kernel_box_from_dgrl.py -------------------------------------------------------------------------------- /dataset/decode_page_with_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/dataset/decode_page_with_box.py -------------------------------------------------------------------------------- /dataset/hwdb1_chars_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/dataset/hwdb1_chars_dict.py -------------------------------------------------------------------------------- /dataset/hwdb2_0_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/dataset/hwdb2_0_chars.py -------------------------------------------------------------------------------- /dataset/iam_char_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/dataset/iam_char_dict.py -------------------------------------------------------------------------------- /eva_hwdb_with_gt_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/eva_hwdb_with_gt_box.py -------------------------------------------------------------------------------- /eval_hwdb_with_center_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/eval_hwdb_with_center_line.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/connect_layer_new_one_batch_hwdb.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/__pycache__/connect_layer_new_one_batch_hwdb.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/model_with_TCN_big_new_one_batch_hwdb.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/__pycache__/model_with_TCN_big_new_one_batch_hwdb.cpython-37.pyc -------------------------------------------------------------------------------- /models/connect_layer_new_one_batch_hwdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/connect_layer_new_one_batch_hwdb.py -------------------------------------------------------------------------------- /models/dect/__init__.py: -------------------------------------------------------------------------------- 1 | from .pannet import Model as PANnet -------------------------------------------------------------------------------- /models/dect/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/dect/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/dect/__pycache__/pannet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/dect/__pycache__/pannet.cpython-37.pyc -------------------------------------------------------------------------------- /models/dect/__pycache__/resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/dect/__pycache__/resnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/dect/__pycache__/segmentation_head.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/dect/__pycache__/segmentation_head.cpython-37.pyc -------------------------------------------------------------------------------- /models/dect/__pycache__/shufflenetv2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/dect/__pycache__/shufflenetv2.cpython-37.pyc -------------------------------------------------------------------------------- /models/dect/pannet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/dect/pannet.py -------------------------------------------------------------------------------- /models/dect/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/dect/resnet.py -------------------------------------------------------------------------------- /models/dect/segmentation_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/dect/segmentation_head.py -------------------------------------------------------------------------------- /models/dect/shufflenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/dect/shufflenetv2.py -------------------------------------------------------------------------------- /models/loss_ctc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/loss_ctc.py -------------------------------------------------------------------------------- /models/loss_kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/loss_kernels.py -------------------------------------------------------------------------------- /models/model_with_TCN_big_new_one_batch_hwdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/model_with_TCN_big_new_one_batch_hwdb.py -------------------------------------------------------------------------------- /models/reco/SelfAttention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/reco/SelfAttention.py -------------------------------------------------------------------------------- /models/reco/TCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/reco/TCN.py -------------------------------------------------------------------------------- /models/reco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/reco/__init__.py -------------------------------------------------------------------------------- /models/reco/__pycache__/SelfAttention.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/reco/__pycache__/SelfAttention.cpython-37.pyc -------------------------------------------------------------------------------- /models/reco/__pycache__/TCN.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/reco/__pycache__/TCN.cpython-37.pyc -------------------------------------------------------------------------------- /models/reco/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/reco/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/reco/__pycache__/reco_layer_new_with_tcn_big.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/reco/__pycache__/reco_layer_new_with_tcn_big.cpython-37.pyc -------------------------------------------------------------------------------- /models/reco/reco_layer_new_with_tcn_big.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/models/reco/reco_layer_new_with_tcn_big.py -------------------------------------------------------------------------------- /train_with_hwdb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/train_with_hwdb2.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import * -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/get_dgrl_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/utils/__pycache__/get_dgrl_data.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/hwdb2_0_chars.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/utils/__pycache__/hwdb2_0_chars.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/pred_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/utils/__pycache__/pred_utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/utils/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/get_dgrl_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/utils/get_dgrl_data.py -------------------------------------------------------------------------------- /utils/hwdb2_0_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/utils/hwdb2_0_chars.py -------------------------------------------------------------------------------- /utils/pred_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/utils/pred_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grsgth/Offline-Chinese-Handwriting-Text-Page-Spotter-with-Text-Kernel/HEAD/utils/utils.py --------------------------------------------------------------------------------