├── README.md ├── config.py ├── data_ana.py ├── datasets ├── __init__.py ├── dataset_factory.py ├── dataset_utils.py ├── icdar2015_to_tfrecords.py ├── mtwi2018_to_tfrecords.py └── synthtext_to_tfrecords.py ├── evaluate.py ├── nets ├── __init__.py ├── custom_layers.py ├── dssd_vgg.py ├── pixel_link_symbol1.py ├── pixel_link_symbol2.py ├── ssd_common.py ├── ssd_vgg_300.py └── vgg.py ├── pixel_link.py ├── pixel_link_env.txt ├── post_processing.py ├── preprocessing ├── __init__.py ├── preprocessing_factory.py ├── ssd_vgg_preprocessing.py └── tf_image.py ├── pylib ├── .gitignore ├── .project ├── README.md ├── __init__.py ├── count_files.py ├── fmean.py ├── kill_pro.py ├── matlab │ ├── get_absolute_path.m │ └── h5write_ds.m ├── push.sh ├── show_image.py ├── src │ ├── __init__.py │ └── util │ │ ├── __init__.py │ │ ├── caffe_.py │ │ ├── cmd.py │ │ ├── dec.py │ │ ├── dtype.py │ │ ├── event.py │ │ ├── feature.py │ │ ├── img.py │ │ ├── io_.py │ │ ├── log.py │ │ ├── mask.py │ │ ├── ml.py │ │ ├── mod.py │ │ ├── neighbour.py │ │ ├── np.py │ │ ├── np.py~ │ │ ├── plt.py │ │ ├── plt.py~ │ │ ├── proc.py │ │ ├── progress_bar.py │ │ ├── rand.py │ │ ├── statistic.py │ │ ├── str_.py │ │ ├── t.py │ │ ├── test.py │ │ ├── tf.py │ │ ├── thread_.py │ │ ├── time_.py │ │ └── url.py ├── test │ ├── common_import.py │ ├── test_util_dtype.py │ ├── test_util_img.py │ ├── test_util_io.py │ ├── test_util_np.py │ ├── test_util_plt.py │ ├── test_util_rand.py │ ├── test_util_str.py │ └── test_util_tf.py └── tmux │ ├── .tmux.conf │ └── .tmux │ ├── tmux-continuum-master.zip │ └── tmux-continuum │ ├── .gitattributes │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── continuum.tmux │ ├── docs │ ├── automatic_start.md │ ├── continuum_status.md │ ├── faq.md │ ├── multiple_tmux_servers.md │ └── systemd_details.md │ └── scripts │ ├── check_tmux_version.sh │ ├── continuum_restore.sh │ ├── continuum_save.sh │ ├── continuum_status.sh │ ├── handle_tmux_automatic_start.sh │ ├── handle_tmux_automatic_start │ ├── osx_disable.sh │ ├── osx_enable.sh │ ├── osx_iterm_start_tmux.sh │ ├── osx_terminal_start_tmux.sh │ ├── systemd_disable.sh │ └── systemd_enable.sh │ ├── helpers.sh │ ├── shared.sh │ └── variables.sh ├── scripts ├── __init__.py ├── test.sh ├── test_any.sh ├── train.sh └── vis.sh ├── ssd ├── __init__.py ├── tf_utils.py └── train_ssd_network.py ├── test_pixel_link.py ├── test_pixel_link_on_any_image.py ├── tf_extended ├── __init__.py ├── bboxes.py ├── math.py └── metrics.py ├── tf_extended_ssd ├── __init__.py ├── bboxes.py ├── image.py ├── math.py ├── metrics.py └── tensors.py ├── train_pixel_link.py ├── visualize_detection_result.py └── zhy_evaluator.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/config.py -------------------------------------------------------------------------------- /data_ana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/data_ana.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /datasets/dataset_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/datasets/dataset_factory.py -------------------------------------------------------------------------------- /datasets/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/datasets/dataset_utils.py -------------------------------------------------------------------------------- /datasets/icdar2015_to_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/datasets/icdar2015_to_tfrecords.py -------------------------------------------------------------------------------- /datasets/mtwi2018_to_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/datasets/mtwi2018_to_tfrecords.py -------------------------------------------------------------------------------- /datasets/synthtext_to_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/datasets/synthtext_to_tfrecords.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/evaluate.py -------------------------------------------------------------------------------- /nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nets/custom_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/nets/custom_layers.py -------------------------------------------------------------------------------- /nets/dssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/nets/dssd_vgg.py -------------------------------------------------------------------------------- /nets/pixel_link_symbol1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/nets/pixel_link_symbol1.py -------------------------------------------------------------------------------- /nets/pixel_link_symbol2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/nets/pixel_link_symbol2.py -------------------------------------------------------------------------------- /nets/ssd_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/nets/ssd_common.py -------------------------------------------------------------------------------- /nets/ssd_vgg_300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/nets/ssd_vgg_300.py -------------------------------------------------------------------------------- /nets/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/nets/vgg.py -------------------------------------------------------------------------------- /pixel_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pixel_link.py -------------------------------------------------------------------------------- /pixel_link_env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pixel_link_env.txt -------------------------------------------------------------------------------- /post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/post_processing.py -------------------------------------------------------------------------------- /preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /preprocessing/preprocessing_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/preprocessing/preprocessing_factory.py -------------------------------------------------------------------------------- /preprocessing/ssd_vgg_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/preprocessing/ssd_vgg_preprocessing.py -------------------------------------------------------------------------------- /preprocessing/tf_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/preprocessing/tf_image.py -------------------------------------------------------------------------------- /pylib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/.gitignore -------------------------------------------------------------------------------- /pylib/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/.project -------------------------------------------------------------------------------- /pylib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/README.md -------------------------------------------------------------------------------- /pylib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylib/count_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/count_files.py -------------------------------------------------------------------------------- /pylib/fmean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/fmean.py -------------------------------------------------------------------------------- /pylib/kill_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/kill_pro.py -------------------------------------------------------------------------------- /pylib/matlab/get_absolute_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/matlab/get_absolute_path.m -------------------------------------------------------------------------------- /pylib/matlab/h5write_ds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/matlab/h5write_ds.m -------------------------------------------------------------------------------- /pylib/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/push.sh -------------------------------------------------------------------------------- /pylib/show_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/show_image.py -------------------------------------------------------------------------------- /pylib/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylib/src/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/__init__.py -------------------------------------------------------------------------------- /pylib/src/util/caffe_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/caffe_.py -------------------------------------------------------------------------------- /pylib/src/util/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/cmd.py -------------------------------------------------------------------------------- /pylib/src/util/dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/dec.py -------------------------------------------------------------------------------- /pylib/src/util/dtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/dtype.py -------------------------------------------------------------------------------- /pylib/src/util/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/event.py -------------------------------------------------------------------------------- /pylib/src/util/feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/feature.py -------------------------------------------------------------------------------- /pylib/src/util/img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/img.py -------------------------------------------------------------------------------- /pylib/src/util/io_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/io_.py -------------------------------------------------------------------------------- /pylib/src/util/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/log.py -------------------------------------------------------------------------------- /pylib/src/util/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/mask.py -------------------------------------------------------------------------------- /pylib/src/util/ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/ml.py -------------------------------------------------------------------------------- /pylib/src/util/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/mod.py -------------------------------------------------------------------------------- /pylib/src/util/neighbour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/neighbour.py -------------------------------------------------------------------------------- /pylib/src/util/np.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/np.py -------------------------------------------------------------------------------- /pylib/src/util/np.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/np.py~ -------------------------------------------------------------------------------- /pylib/src/util/plt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/plt.py -------------------------------------------------------------------------------- /pylib/src/util/plt.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/plt.py~ -------------------------------------------------------------------------------- /pylib/src/util/proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/proc.py -------------------------------------------------------------------------------- /pylib/src/util/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/progress_bar.py -------------------------------------------------------------------------------- /pylib/src/util/rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/rand.py -------------------------------------------------------------------------------- /pylib/src/util/statistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/statistic.py -------------------------------------------------------------------------------- /pylib/src/util/str_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/str_.py -------------------------------------------------------------------------------- /pylib/src/util/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/t.py -------------------------------------------------------------------------------- /pylib/src/util/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/test.py -------------------------------------------------------------------------------- /pylib/src/util/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/tf.py -------------------------------------------------------------------------------- /pylib/src/util/thread_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/thread_.py -------------------------------------------------------------------------------- /pylib/src/util/time_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/time_.py -------------------------------------------------------------------------------- /pylib/src/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/src/util/url.py -------------------------------------------------------------------------------- /pylib/test/common_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/test/common_import.py -------------------------------------------------------------------------------- /pylib/test/test_util_dtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/test/test_util_dtype.py -------------------------------------------------------------------------------- /pylib/test/test_util_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/test/test_util_img.py -------------------------------------------------------------------------------- /pylib/test/test_util_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/test/test_util_io.py -------------------------------------------------------------------------------- /pylib/test/test_util_np.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/test/test_util_np.py -------------------------------------------------------------------------------- /pylib/test/test_util_plt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/test/test_util_plt.py -------------------------------------------------------------------------------- /pylib/test/test_util_rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/test/test_util_rand.py -------------------------------------------------------------------------------- /pylib/test/test_util_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/test/test_util_str.py -------------------------------------------------------------------------------- /pylib/test/test_util_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/test/test_util_tf.py -------------------------------------------------------------------------------- /pylib/tmux/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux.conf -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum-master.zip -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/.gitattributes -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/CHANGELOG.md -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/CONTRIBUTING.md -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/LICENSE.md -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/README.md -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/continuum.tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/continuum.tmux -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/docs/automatic_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/docs/automatic_start.md -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/docs/continuum_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/docs/continuum_status.md -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/docs/faq.md -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/docs/multiple_tmux_servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/docs/multiple_tmux_servers.md -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/docs/systemd_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/docs/systemd_details.md -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/check_tmux_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/check_tmux_version.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/continuum_restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/continuum_restore.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/continuum_save.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/continuum_save.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/continuum_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/continuum_status.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/osx_disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/osx_disable.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/osx_enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/osx_enable.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/osx_iterm_start_tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/osx_iterm_start_tmux.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/osx_terminal_start_tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/osx_terminal_start_tmux.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/systemd_disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/systemd_disable.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/systemd_enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/handle_tmux_automatic_start/systemd_enable.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/helpers.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/shared.sh -------------------------------------------------------------------------------- /pylib/tmux/.tmux/tmux-continuum/scripts/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/pylib/tmux/.tmux/tmux-continuum/scripts/variables.sh -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/test_any.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/scripts/test_any.sh -------------------------------------------------------------------------------- /scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/scripts/train.sh -------------------------------------------------------------------------------- /scripts/vis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/scripts/vis.sh -------------------------------------------------------------------------------- /ssd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ssd/tf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/ssd/tf_utils.py -------------------------------------------------------------------------------- /ssd/train_ssd_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/ssd/train_ssd_network.py -------------------------------------------------------------------------------- /test_pixel_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/test_pixel_link.py -------------------------------------------------------------------------------- /test_pixel_link_on_any_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/test_pixel_link_on_any_image.py -------------------------------------------------------------------------------- /tf_extended/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/tf_extended/__init__.py -------------------------------------------------------------------------------- /tf_extended/bboxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/tf_extended/bboxes.py -------------------------------------------------------------------------------- /tf_extended/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/tf_extended/math.py -------------------------------------------------------------------------------- /tf_extended/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/tf_extended/metrics.py -------------------------------------------------------------------------------- /tf_extended_ssd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/tf_extended_ssd/__init__.py -------------------------------------------------------------------------------- /tf_extended_ssd/bboxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/tf_extended_ssd/bboxes.py -------------------------------------------------------------------------------- /tf_extended_ssd/image.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tf_extended_ssd/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/tf_extended_ssd/math.py -------------------------------------------------------------------------------- /tf_extended_ssd/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/tf_extended_ssd/metrics.py -------------------------------------------------------------------------------- /tf_extended_ssd/tensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/tf_extended_ssd/tensors.py -------------------------------------------------------------------------------- /train_pixel_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/train_pixel_link.py -------------------------------------------------------------------------------- /visualize_detection_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/visualize_detection_result.py -------------------------------------------------------------------------------- /zhy_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuayueZhang/text_detect/HEAD/zhy_evaluator.py --------------------------------------------------------------------------------