├── README.md ├── SRNet-Datagen ├── OpenSans-Regular.ttf ├── Synthtext │ ├── __init__.py │ ├── colorize.py │ ├── data │ │ ├── colors.cp │ │ └── texts.txt │ ├── data_cfg.py │ ├── gen.py │ ├── poisson_reconstruct.py │ ├── render_standard_text.py │ ├── render_text_mask.py │ └── skeletonization.py ├── arial.ttf ├── cfg.py └── datagen.py ├── cfg.py ├── custom_feed ├── gen_logs │ └── .gitignore ├── labels │ ├── 001_i_s.png │ ├── 001_i_t.png │ ├── 002_i_s.png │ ├── 002_i_t.png │ ├── 003_i_s.png │ ├── 003_i_t.png │ ├── 004_i_s.png │ ├── 004_i_t.png │ ├── 005_i_s.png │ ├── 005_i_t.png │ ├── 006_i_s.png │ ├── 006_i_t.png │ ├── 007_i_s.png │ ├── 007_i_t.png │ ├── 008_i_s.png │ └── 008_i_t.png └── result │ └── .gitignore ├── data_script.sh ├── datagen.py ├── logs └── .gitignore ├── loss.py ├── media ├── final.gif └── pre-trained_result.png ├── model.py ├── predict.py ├── requirements.txt ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/README.md -------------------------------------------------------------------------------- /SRNet-Datagen/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /SRNet-Datagen/Synthtext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/Synthtext/__init__.py -------------------------------------------------------------------------------- /SRNet-Datagen/Synthtext/colorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/Synthtext/colorize.py -------------------------------------------------------------------------------- /SRNet-Datagen/Synthtext/data/colors.cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/Synthtext/data/colors.cp -------------------------------------------------------------------------------- /SRNet-Datagen/Synthtext/data/texts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/Synthtext/data/texts.txt -------------------------------------------------------------------------------- /SRNet-Datagen/Synthtext/data_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/Synthtext/data_cfg.py -------------------------------------------------------------------------------- /SRNet-Datagen/Synthtext/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/Synthtext/gen.py -------------------------------------------------------------------------------- /SRNet-Datagen/Synthtext/poisson_reconstruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/Synthtext/poisson_reconstruct.py -------------------------------------------------------------------------------- /SRNet-Datagen/Synthtext/render_standard_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/Synthtext/render_standard_text.py -------------------------------------------------------------------------------- /SRNet-Datagen/Synthtext/render_text_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/Synthtext/render_text_mask.py -------------------------------------------------------------------------------- /SRNet-Datagen/Synthtext/skeletonization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/Synthtext/skeletonization.py -------------------------------------------------------------------------------- /SRNet-Datagen/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/arial.ttf -------------------------------------------------------------------------------- /SRNet-Datagen/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/cfg.py -------------------------------------------------------------------------------- /SRNet-Datagen/datagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/SRNet-Datagen/datagen.py -------------------------------------------------------------------------------- /cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/cfg.py -------------------------------------------------------------------------------- /custom_feed/gen_logs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_feed/labels/001_i_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/001_i_s.png -------------------------------------------------------------------------------- /custom_feed/labels/001_i_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/001_i_t.png -------------------------------------------------------------------------------- /custom_feed/labels/002_i_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/002_i_s.png -------------------------------------------------------------------------------- /custom_feed/labels/002_i_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/002_i_t.png -------------------------------------------------------------------------------- /custom_feed/labels/003_i_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/003_i_s.png -------------------------------------------------------------------------------- /custom_feed/labels/003_i_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/003_i_t.png -------------------------------------------------------------------------------- /custom_feed/labels/004_i_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/004_i_s.png -------------------------------------------------------------------------------- /custom_feed/labels/004_i_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/004_i_t.png -------------------------------------------------------------------------------- /custom_feed/labels/005_i_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/005_i_s.png -------------------------------------------------------------------------------- /custom_feed/labels/005_i_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/005_i_t.png -------------------------------------------------------------------------------- /custom_feed/labels/006_i_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/006_i_s.png -------------------------------------------------------------------------------- /custom_feed/labels/006_i_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/006_i_t.png -------------------------------------------------------------------------------- /custom_feed/labels/007_i_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/007_i_s.png -------------------------------------------------------------------------------- /custom_feed/labels/007_i_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/007_i_t.png -------------------------------------------------------------------------------- /custom_feed/labels/008_i_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/008_i_s.png -------------------------------------------------------------------------------- /custom_feed/labels/008_i_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/custom_feed/labels/008_i_t.png -------------------------------------------------------------------------------- /custom_feed/result/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/data_script.sh -------------------------------------------------------------------------------- /datagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/datagen.py -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/loss.py -------------------------------------------------------------------------------- /media/final.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/media/final.gif -------------------------------------------------------------------------------- /media/pre-trained_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/media/pre-trained_result.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/model.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lksshw/SRNet/HEAD/utils.py --------------------------------------------------------------------------------