Home

Awesome

SynthTextHindi

Code for generating synthetic text images for Hindi Language <!-- as described in ["Synthetic Data for Text Localisation in Natural Images", Ankush Gupta, Andrea Vedaldi, Andrew Zisserman, CVPR 2016](http://www.robots.ox.ac.uk/~vgg/data/scenetext/). -->

This code is the major modification of https://github.com/ankush-me/SynthText for Hindi Language.

Prerequisites (better if you create a conda environment and check install.sh first ):

To generate image

	python gen.py

This will store images with text in folder 'do' folder in '.jpg' format and all other info about image(character and word bounding box info, text) will be stored in an h5 file in results/SynthText.h5). The generated images will be in accordance to 'dset.h5' (these are background images with their segmentation and depth masks info)

Synthetic Scene-Text Hindi Image Samples Synthetic Scene-Text-Hindi Samples

Text below is same as Ankush Gupta's Readme file

<!-- **Synthetic Scene-Text Image Samples** ![Synthetic Scene-Text Samples](samples.png "Synthetic Samples") -->

The library is written in Python. The main dependencies are:

pygame, opencv (cv2), PIL (Image), numpy, matplotlib, h5py, scipy

Generating samples

python gen.py --viz

This will download a data file (~56M) to the data directory. This data file includes:

This script will generate random scene-text image samples and store them in an h5 file in results/SynthText.h5. If the --viz option is specified, the generated output will be visualized as the script is being run; omit the --viz option to turn-off the visualizations. If you want to visualize the results stored in results/SynthText.h5 later, run:

python visualize_results.py

Pre-generated Dataset

A dataset with approximately 800000 synthetic scene-text images generated with this code can be found here.

Adding New Images

Segmentation and depth-maps are required to use new images as background. Sample scripts for obtaining these are available here.

For an explanation of the fields in dset.h5 (e.g.: seg,area,label), please check this comment.

Pre-processed Background Images

The 8,000 background images used in the paper("Synthetic Data for Text Localisation in Natural Images", Ankush Gupta, Andrea Vedaldi, Andrew Zisserman, CVPR 2016), along with their segmentation and depth masks, have been uploaded here: http://www.robots.ox.ac.uk/~vgg/data/scenetext/preproc/<filename>, where, <filename> can be:

Note: We do not own the copyright to these images.

<!-- ### Generating Samples with Text in non-Latin (English) Scripts - @JarveeLee has modified the pipeline for generating samples with Chinese text [here](https://github.com/JarveeLee/SynthText_Chinese_version). - @adavoudi has modified it for arabic/persian script, which flows from right-to-left [here](https://github.com/adavoudi/SynthText). ### Further Information Please refer to the paper for more information, or contact me (email address in the paper). -->

Credits: