├── .gitignore ├── README.md ├── __init__.py ├── config ├── __init__.py ├── cfg.py └── corpus │ ├── __init__.py │ ├── corpus.txt │ ├── dict.txt │ ├── dict_filter.py │ └── sentence_filter.py ├── fonts ├── heiti.ttf └── shusong.ttf ├── imageset ├── 0.jpeg ├── 1.jpeg ├── 6.jpeg ├── 7.jpeg └── 9.jpeg ├── mapping.png ├── sample_generator.py └── sentences.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/config/cfg.py -------------------------------------------------------------------------------- /config/corpus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/corpus/corpus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/config/corpus/corpus.txt -------------------------------------------------------------------------------- /config/corpus/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/config/corpus/dict.txt -------------------------------------------------------------------------------- /config/corpus/dict_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/config/corpus/dict_filter.py -------------------------------------------------------------------------------- /config/corpus/sentence_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/config/corpus/sentence_filter.py -------------------------------------------------------------------------------- /fonts/heiti.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/fonts/heiti.ttf -------------------------------------------------------------------------------- /fonts/shusong.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/fonts/shusong.ttf -------------------------------------------------------------------------------- /imageset/0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/imageset/0.jpeg -------------------------------------------------------------------------------- /imageset/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/imageset/1.jpeg -------------------------------------------------------------------------------- /imageset/6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/imageset/6.jpeg -------------------------------------------------------------------------------- /imageset/7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/imageset/7.jpeg -------------------------------------------------------------------------------- /imageset/9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/imageset/9.jpeg -------------------------------------------------------------------------------- /mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/mapping.png -------------------------------------------------------------------------------- /sample_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/sample_generator.py -------------------------------------------------------------------------------- /sentences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Heisenberg0391/TextImageGenerator/HEAD/sentences.png --------------------------------------------------------------------------------