├── .gitignore ├── LICENSE ├── README.md ├── colorize3_poisson.py ├── common.py ├── gen.py ├── invert_font_size.py ├── poisson_reconstruct.py ├── prep_scripts ├── floodFill.py ├── predict_depth.m └── run_ucm.m ├── ransac.py ├── results └── .r ├── samples.png ├── synth_utils.py ├── synthgen.py ├── text_utils.py ├── use_preproc_bg.py └── visualize_results.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/README.md -------------------------------------------------------------------------------- /colorize3_poisson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/colorize3_poisson.py -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/common.py -------------------------------------------------------------------------------- /gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/gen.py -------------------------------------------------------------------------------- /invert_font_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/invert_font_size.py -------------------------------------------------------------------------------- /poisson_reconstruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/poisson_reconstruct.py -------------------------------------------------------------------------------- /prep_scripts/floodFill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/prep_scripts/floodFill.py -------------------------------------------------------------------------------- /prep_scripts/predict_depth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/prep_scripts/predict_depth.m -------------------------------------------------------------------------------- /prep_scripts/run_ucm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/prep_scripts/run_ucm.m -------------------------------------------------------------------------------- /ransac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/ransac.py -------------------------------------------------------------------------------- /results/.r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/samples.png -------------------------------------------------------------------------------- /synth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/synth_utils.py -------------------------------------------------------------------------------- /synthgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/synthgen.py -------------------------------------------------------------------------------- /text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/text_utils.py -------------------------------------------------------------------------------- /use_preproc_bg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/use_preproc_bg.py -------------------------------------------------------------------------------- /visualize_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankush-me/SynthText/HEAD/visualize_results.py --------------------------------------------------------------------------------