├── .gitignore ├── LICENSE ├── README.md ├── add_new_fonts.py ├── add_new_fonts.sh ├── cal_output_num.py ├── colorize3_poisson.py ├── common.py ├── download_data.py ├── font_test.py ├── gen.py ├── gen_a_img.py ├── get-pip.py ├── load_dataset.py ├── poisson_reconstruct.py ├── prep_scripts ├── floodFill.py ├── predict_depth.m └── run_ucm.m ├── preview.html ├── ransac.py ├── run_gen.sh ├── samples.png ├── synth_utils.py ├── synthgen.py ├── text_utils.py ├── to_image.py └── to_image.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/README.md -------------------------------------------------------------------------------- /add_new_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/add_new_fonts.py -------------------------------------------------------------------------------- /add_new_fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/add_new_fonts.sh -------------------------------------------------------------------------------- /cal_output_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/cal_output_num.py -------------------------------------------------------------------------------- /colorize3_poisson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/colorize3_poisson.py -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/common.py -------------------------------------------------------------------------------- /download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/download_data.py -------------------------------------------------------------------------------- /font_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/font_test.py -------------------------------------------------------------------------------- /gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/gen.py -------------------------------------------------------------------------------- /gen_a_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/gen_a_img.py -------------------------------------------------------------------------------- /get-pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/get-pip.py -------------------------------------------------------------------------------- /load_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/load_dataset.py -------------------------------------------------------------------------------- /poisson_reconstruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/poisson_reconstruct.py -------------------------------------------------------------------------------- /prep_scripts/floodFill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/prep_scripts/floodFill.py -------------------------------------------------------------------------------- /prep_scripts/predict_depth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/prep_scripts/predict_depth.m -------------------------------------------------------------------------------- /prep_scripts/run_ucm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/prep_scripts/run_ucm.m -------------------------------------------------------------------------------- /preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/preview.html -------------------------------------------------------------------------------- /ransac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/ransac.py -------------------------------------------------------------------------------- /run_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/run_gen.sh -------------------------------------------------------------------------------- /samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/samples.png -------------------------------------------------------------------------------- /synth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/synth_utils.py -------------------------------------------------------------------------------- /synthgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/synthgen.py -------------------------------------------------------------------------------- /text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/text_utils.py -------------------------------------------------------------------------------- /to_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/to_image.py -------------------------------------------------------------------------------- /to_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PkuDavidGuan/CurvedSynthText/HEAD/to_image.sh --------------------------------------------------------------------------------