├── LICENSE ├── README.md ├── assets ├── __init__.py ├── i_s.png ├── i_t.png └── welcome.png ├── blend_o_t_bg.py ├── cfg.py ├── create_final_images.py ├── data_gen.py ├── datagen.py ├── dataset_gen.sh ├── detect_para.py ├── exclude_key_words.py ├── form_para_info.py ├── form_word_crops.py ├── format_file_structure.py ├── generate_crops.py ├── generate_i_t.py ├── generate_o_t.py ├── i_t_utils ├── gray_bg_256x128.png └── gray_bg_256x256.png ├── infer.sh ├── loss.py ├── make_bg.py ├── make_masks.py ├── make_output_base.py ├── model_o_t_gen.py ├── modify_crops.py ├── render_Indian_language_scenetext.py ├── scene_text_eraser.py ├── setup.sh ├── skeletonize.py ├── srnet_plus2.txt ├── train_o_t.py ├── translate.py ├── translate_de.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/README.md -------------------------------------------------------------------------------- /assets/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/i_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/assets/i_s.png -------------------------------------------------------------------------------- /assets/i_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/assets/i_t.png -------------------------------------------------------------------------------- /assets/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/assets/welcome.png -------------------------------------------------------------------------------- /blend_o_t_bg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/blend_o_t_bg.py -------------------------------------------------------------------------------- /cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/cfg.py -------------------------------------------------------------------------------- /create_final_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/create_final_images.py -------------------------------------------------------------------------------- /data_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/data_gen.py -------------------------------------------------------------------------------- /datagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/datagen.py -------------------------------------------------------------------------------- /dataset_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/dataset_gen.sh -------------------------------------------------------------------------------- /detect_para.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/detect_para.py -------------------------------------------------------------------------------- /exclude_key_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/exclude_key_words.py -------------------------------------------------------------------------------- /form_para_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/form_para_info.py -------------------------------------------------------------------------------- /form_word_crops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/form_word_crops.py -------------------------------------------------------------------------------- /format_file_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/format_file_structure.py -------------------------------------------------------------------------------- /generate_crops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/generate_crops.py -------------------------------------------------------------------------------- /generate_i_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/generate_i_t.py -------------------------------------------------------------------------------- /generate_o_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/generate_o_t.py -------------------------------------------------------------------------------- /i_t_utils/gray_bg_256x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/i_t_utils/gray_bg_256x128.png -------------------------------------------------------------------------------- /i_t_utils/gray_bg_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/i_t_utils/gray_bg_256x256.png -------------------------------------------------------------------------------- /infer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/infer.sh -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/loss.py -------------------------------------------------------------------------------- /make_bg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/make_bg.py -------------------------------------------------------------------------------- /make_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/make_masks.py -------------------------------------------------------------------------------- /make_output_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/make_output_base.py -------------------------------------------------------------------------------- /model_o_t_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/model_o_t_gen.py -------------------------------------------------------------------------------- /modify_crops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/modify_crops.py -------------------------------------------------------------------------------- /render_Indian_language_scenetext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/render_Indian_language_scenetext.py -------------------------------------------------------------------------------- /scene_text_eraser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/scene_text_eraser.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/setup.sh -------------------------------------------------------------------------------- /skeletonize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/skeletonize.py -------------------------------------------------------------------------------- /srnet_plus2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/srnet_plus2.txt -------------------------------------------------------------------------------- /train_o_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/train_o_t.py -------------------------------------------------------------------------------- /translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/translate.py -------------------------------------------------------------------------------- /translate_de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/translate_de.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhashini-IITJ/visualTranslation/HEAD/utils.py --------------------------------------------------------------------------------