├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── caffe_to_tensorflow.py ├── config.py ├── datasets ├── __init__.py ├── dataset_factory.py ├── dataset_utils.py ├── icdar2013_to_tfrecords.py ├── icdar2015_to_tfrecords.py ├── scut_to_tfrecords.py └── synthtext_to_tfrecords.py ├── eval_seglink.py ├── img_10_pred.jpg ├── img_31_pred.jpg ├── nets ├── __init__.py ├── anchor_layer.py ├── net_factory.py ├── seglink_symbol.py └── vgg.py ├── preprocessing ├── __init__.py ├── preprocessing_factory.py ├── ssd_vgg_preprocessing.py └── tf_image.py ├── push.sh ├── scripts ├── eval.sh ├── test.sh ├── train.sh └── vis.sh ├── test ├── test_batch_and_gt.py └── test_preprocessing.py ├── test_seglink.py ├── tf_extended ├── __init__.py ├── bboxes.py ├── math.py ├── metrics.py └── seglink.py ├── train_seglink.py └── visualize_detection_result.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/README.md -------------------------------------------------------------------------------- /caffe_to_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/caffe_to_tensorflow.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/config.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /datasets/dataset_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/datasets/dataset_factory.py -------------------------------------------------------------------------------- /datasets/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/datasets/dataset_utils.py -------------------------------------------------------------------------------- /datasets/icdar2013_to_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/datasets/icdar2013_to_tfrecords.py -------------------------------------------------------------------------------- /datasets/icdar2015_to_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/datasets/icdar2015_to_tfrecords.py -------------------------------------------------------------------------------- /datasets/scut_to_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/datasets/scut_to_tfrecords.py -------------------------------------------------------------------------------- /datasets/synthtext_to_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/datasets/synthtext_to_tfrecords.py -------------------------------------------------------------------------------- /eval_seglink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/eval_seglink.py -------------------------------------------------------------------------------- /img_10_pred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/img_10_pred.jpg -------------------------------------------------------------------------------- /img_31_pred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/img_31_pred.jpg -------------------------------------------------------------------------------- /nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nets/anchor_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/nets/anchor_layer.py -------------------------------------------------------------------------------- /nets/net_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/nets/net_factory.py -------------------------------------------------------------------------------- /nets/seglink_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/nets/seglink_symbol.py -------------------------------------------------------------------------------- /nets/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/nets/vgg.py -------------------------------------------------------------------------------- /preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /preprocessing/preprocessing_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/preprocessing/preprocessing_factory.py -------------------------------------------------------------------------------- /preprocessing/ssd_vgg_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/preprocessing/ssd_vgg_preprocessing.py -------------------------------------------------------------------------------- /preprocessing/tf_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/preprocessing/tf_image.py -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/push.sh -------------------------------------------------------------------------------- /scripts/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/scripts/eval.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/scripts/train.sh -------------------------------------------------------------------------------- /scripts/vis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/scripts/vis.sh -------------------------------------------------------------------------------- /test/test_batch_and_gt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/test/test_batch_and_gt.py -------------------------------------------------------------------------------- /test/test_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/test/test_preprocessing.py -------------------------------------------------------------------------------- /test_seglink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/test_seglink.py -------------------------------------------------------------------------------- /tf_extended/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/tf_extended/__init__.py -------------------------------------------------------------------------------- /tf_extended/bboxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/tf_extended/bboxes.py -------------------------------------------------------------------------------- /tf_extended/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/tf_extended/math.py -------------------------------------------------------------------------------- /tf_extended/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/tf_extended/metrics.py -------------------------------------------------------------------------------- /tf_extended/seglink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/tf_extended/seglink.py -------------------------------------------------------------------------------- /train_seglink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/train_seglink.py -------------------------------------------------------------------------------- /visualize_detection_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dengdan/seglink/HEAD/visualize_detection_result.py --------------------------------------------------------------------------------