├── README.md ├── __init__.py ├── background_generator.py ├── computer_text_generator.py ├── data_generator.py ├── dicts ├── cn.txt ├── de.txt ├── en.txt ├── es.txt ├── fa.txt ├── fr.txt ├── test.csv └── test.txt ├── distorsion_generator.py ├── fonts ├── fa │ ├── !F Akhbaar.ttf │ ├── !F Compset Bold.ttf │ ├── !F Destkhat Plain.ttf │ ├── !F Ferdawsi.ttf │ ├── !F Haafez.ttf │ ├── !F Jalaal Bold.ttf │ ├── !F Karim.ttf │ ├── !F Ketaab.ttf │ ├── !F Mitraa.ttf │ ├── !F Naaz Bold.ttf │ ├── !F Naaz.ttf │ ├── !F Oshtok.ttf │ ├── !F Royaa Bold.ttf │ ├── !F Tahrir New.ttf │ ├── !F Titr Old.ttf │ ├── !F Titr.ttf │ ├── !F Yaas.ttf │ ├── !F Zar.ttf │ ├── BMITRA.TTF │ ├── BNAZANB.TTF │ ├── FARSI1_1.TTF │ ├── IRYekan.ttf │ ├── KHORSHID.TTF │ └── abank.ttf └── latin │ ├── AllerDisplay.ttf │ ├── Aller_Bd.ttf │ ├── Aller_BdIt.ttf │ ├── Aller_It.ttf │ ├── Aller_Lt.ttf │ ├── Aller_LtIt.ttf │ ├── Aller_Rg.ttf │ ├── Amatic-Bold.ttf │ ├── AmaticSC-Regular.ttf │ ├── BEBAS___.ttf │ ├── Capture_it.ttf │ ├── Capture_it_2.ttf │ ├── CaviarDreams.ttf │ ├── CaviarDreams_BoldItalic.ttf │ ├── CaviarDreams_Italic.ttf │ ├── Caviar_Dreams_Bold.ttf │ ├── DroidSans-Bold.ttf │ ├── DroidSans.ttf │ ├── FFF_Tusj.ttf │ ├── Lato-Black.ttf │ ├── Lato-BlackItalic.ttf │ ├── Lato-Bold.ttf │ ├── Lato-BoldItalic.ttf │ ├── Lato-Hairline.ttf │ ├── Lato-HairlineItalic.ttf │ ├── Lato-Heavy.ttf │ ├── Lato-HeavyItalic.ttf │ ├── Lato-Italic.ttf │ ├── Lato-Light.ttf │ ├── Lato-LightItalic.ttf │ ├── Lato-Medium.ttf │ ├── Lato-MediumItalic.ttf │ ├── Lato-Regular.ttf │ ├── Lato-Semibold.ttf │ ├── Lato-SemiboldItalic.ttf │ ├── Lato-Thin.ttf │ ├── Lato-ThinItalic.ttf │ ├── OpenSans-Bold.ttf │ ├── OpenSans-BoldItalic.ttf │ ├── OpenSans-ExtraBold.ttf │ ├── OpenSans-ExtraBoldItalic.ttf │ ├── OpenSans-Italic.ttf │ ├── OpenSans-Light.ttf │ ├── OpenSans-LightItalic.ttf │ ├── OpenSans-Regular.ttf │ ├── OpenSans-Semibold.ttf │ ├── OpenSans-SemiboldItalic.ttf │ ├── Pacifico.ttf │ ├── Raleway-Black.ttf │ ├── Raleway-BlackItalic.ttf │ ├── Raleway-Bold.ttf │ ├── Raleway-BoldItalic.ttf │ ├── Raleway-ExtraBold.ttf │ ├── Raleway-ExtraBoldItalic.ttf │ ├── Raleway-ExtraLight.ttf │ ├── Raleway-ExtraLightItalic.ttf │ ├── Raleway-Italic.ttf │ ├── Raleway-Light.ttf │ ├── Raleway-LightItalic.ttf │ ├── Raleway-Medium.ttf │ ├── Raleway-MediumItalic.ttf │ ├── Raleway-Regular.ttf │ ├── Raleway-SemiBold.ttf │ ├── Raleway-SemiBoldItalic.ttf │ ├── Raleway-Thin.ttf │ ├── Raleway-ThinItalic.ttf │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── RobotoCondensed-Bold.ttf │ ├── RobotoCondensed-BoldItalic.ttf │ ├── RobotoCondensed-Italic.ttf │ ├── RobotoCondensed-Light.ttf │ ├── RobotoCondensed-LightItalic.ttf │ ├── RobotoCondensed-Regular.ttf │ ├── SEASRN__.ttf │ ├── Sansation-Bold.ttf │ ├── Sansation-BoldItalic.ttf │ ├── Sansation-Italic.ttf │ ├── Sansation-Light.ttf │ ├── Sansation-LightItalic.ttf │ ├── Sansation-Regular.ttf │ ├── Walkway_Black.ttf │ ├── Walkway_Bold.ttf │ ├── Walkway_Oblique.ttf │ ├── Walkway_Oblique_Black.ttf │ ├── Walkway_Oblique_Bold.ttf │ ├── Walkway_Oblique_SemiBold.ttf │ ├── Walkway_Oblique_UltraBold.ttf │ ├── Walkway_SemiBold.ttf │ └── Walkway_UltraBold.ttf ├── handwritten_model ├── model-29.data-00000-of-00001 ├── model-29.index ├── model-29.meta └── translation.pkl ├── handwritten_text_generator.py ├── label_delete_space.py ├── pictures ├── 001 (3rd copy).jpg ├── 001 (4th copy).jpg ├── 001 (5th copy).jpg ├── 001 (6th copy).jpg ├── 001 (7th copy).jpg ├── 001 (another copy).jpg ├── 001.jpg ├── 002 (3rd copy).jpg ├── 002 (4th copy).jpg ├── 002 (5th copy).jpg ├── 002 (6th copy).jpg ├── 002 (another copy).jpg ├── 002 (copy).jpg ├── 002.jpg ├── 003 (10th copy).png ├── 003 (3rd copy).png ├── 003 (4th copy).png ├── 003 (5th copy).png ├── 003 (6th copy).png ├── 003 (7th copy).png ├── 003 (8th copy).png ├── 003 (9th copy).png ├── 003 (another copy).png ├── 003 (copy).png ├── 003.png ├── 004.png ├── 005 (3rd copy).jpg ├── 005 (4th copy).jpg ├── 005 (5th copy).jpg ├── 005 (another copy).jpg ├── 005.jpg ├── 007 (3rd copy).jpg ├── 007 (another copy).jpg ├── 007.jpg ├── 009 (3rd copy).png ├── 009 (another copy).png ├── 009 (copy).png ├── 009.png ├── 011 (3rd copy).jpg ├── 011 (4th copy).jpg ├── 011 (another copy).jpg ├── 011 (copy).jpg ├── 011.jpg ├── 012 (another copy).jpg ├── 012 (copy).jpg ├── 012.jpg ├── 013 (3rd copy).jpg ├── 013 (another copy).jpg ├── 013 (copy).jpg ├── 013.jpg ├── 015 (3rd copy).jpg ├── 015 (4th copy).jpg ├── 015 (another copy).jpg ├── 015 (copy).jpg ├── 015.jpg ├── 016.jpg ├── 017 (3rd copy).jpg ├── 017 (4th copy).jpg ├── 017 (another copy).jpg ├── 017 (copy).jpg ├── 017.jpg ├── 018.jpg ├── 019 (another copy).jpg ├── 019 (copy).jpg ├── 019.jpg ├── 020 (copy).jpg ├── 020.jpg ├── 021 (another copy).jpg ├── 021 (copy).jpg ├── 021.jpg ├── 022 (3rd copy).jpg ├── 022 (4th copy).jpg ├── 022 (another copy).jpg ├── 022 (copy).jpg ├── 022.jpg ├── 023 (3rd copy).jpg ├── 023 (another copy).jpg ├── 023 (copy).jpg ├── 023.jpg ├── 024 (3rd copy).jpg ├── 024 (another copy).jpg ├── 024 (copy).jpg ├── 024.jpg ├── 025 (3rd copy).png ├── 025 (4th copy).png ├── 025 (5th copy).png ├── 025 (6th copy).png ├── 025 (7th copy).png ├── 025 (another copy).png ├── 025 (copy).png ├── 025.png ├── 026 (3rd copy).jpg ├── 026 (another copy).jpg ├── 026 (copy).jpg ├── 026.jpg ├── 027 (3rd copy).jpg ├── 027 (4th copy).jpg ├── 027 (5th copy).jpg ├── 027 (another copy).jpg ├── 027 (copy).jpg ├── 027.jpg ├── 028 (another copy).jpg ├── 028 (copy).jpg ├── 028.jpg ├── 029 (another copy).jpg ├── 029 (copy).jpg ├── 029.jpg ├── 030 (3rd copy).jpg ├── 030 (another copy).jpg ├── 030 (copy).jpg ├── 030.jpg ├── 032 (copy).jpg ├── 036.jpg ├── 048 (copy).jpeg ├── 049 (another copy).jpeg ├── 049.jpeg ├── 055 (another copy).jpeg ├── 055 (copy).jpeg ├── 055.jpeg ├── 061 (3rd copy).jpeg ├── 061 (another copy).jpeg ├── 061 (copy).jpeg ├── 062 (3rd copy).jpeg ├── 062 (another copy).jpeg ├── 062 (copy).jpeg ├── 062.jpeg ├── 063.jpeg ├── 064 (3rd copy).jpeg ├── 064 (another copy).jpeg ├── 064 (copy).jpeg ├── 064.jpeg ├── 065 (3rd copy).jpeg ├── 065 (another copy).jpeg ├── 065 (copy).jpeg ├── 065.jpeg ├── 066 (3rd copy).jpeg ├── 066 (another copy).jpeg ├── 066 (copy).jpeg ├── 066.jpeg ├── 067 (3rd copy).jpeg ├── 067 (another copy).jpeg ├── 067 (copy).jpeg ├── 067.jpeg ├── 068 (3rd copy).jpeg ├── 068 (another copy).jpeg ├── 068 (copy).jpeg ├── 068.jpeg ├── 069 (3rd copy).jpeg ├── 069 (another copy).jpeg ├── 069 (copy).jpeg ├── 069.jpeg ├── 070 (3rd copy).jpeg ├── 070 (another copy).jpeg ├── 070 (copy).jpeg ├── 070.jpeg ├── 071 (copy).jpeg ├── 072 (3rd copy).jpeg ├── 072 (another copy).jpeg ├── 072 (copy).jpeg ├── 072.jpeg ├── 073 (3rd copy).jpeg ├── 073 (another copy).jpeg ├── 073 (copy).jpeg ├── 073.jpeg ├── 074 (3rd copy).jpeg ├── 074 (another copy).jpeg ├── 074 (copy).jpeg ├── 074.jpeg ├── 075 (3rd copy).jpeg ├── 075 (another copy).jpeg ├── 075 (copy).jpeg ├── 075.jpeg ├── 076 (3rd copy).jpeg ├── 076.jpeg ├── 091 (copy).jpeg ├── 092 (3rd copy).jpeg ├── 092 (another copy).jpeg ├── 092.jpeg ├── 093 (3rd copy).jpeg ├── 093 (another copy).jpeg ├── 093 (copy).jpeg ├── 093.jpeg ├── 094 (3rd copy).jpeg ├── 094 (another copy).jpeg ├── 094 (copy).jpeg ├── 094.jpeg ├── 095 (3rd copy).jpeg ├── 095 (another copy).jpeg ├── 095 (copy).jpeg ├── 095.jpeg ├── 096 (3rd copy).jpeg ├── 096 (another copy).jpeg ├── 096.jpeg ├── 099 (3rd copy).jpeg ├── 099 (another copy).jpeg ├── 099 (copy).jpeg ├── 099.jpeg ├── 1.jpg ├── 102 (3rd copy).jpeg ├── 102.jpeg ├── 103 (3rd copy).jpeg ├── 103 (another copy).jpeg ├── 103 (copy).jpeg ├── 103.jpeg ├── 104 (3rd copy).jpeg ├── 104 (another copy).jpeg ├── 104 (copy).jpeg ├── 104.jpeg ├── 105 (3rd copy).jpeg ├── 105 (another copy).jpeg ├── 105 (copy).jpeg ├── 105.jpeg ├── 106 (3rd copy).jpeg ├── 106 (another copy).jpeg ├── 106 (copy).jpeg ├── 106.jpeg ├── 107 (3rd copy).jpeg ├── 107 (another copy).jpeg ├── 107.jpeg ├── 108 (3rd copy).jpeg ├── 108 (another copy).jpeg ├── 108 (copy).jpeg ├── 109.jpeg ├── 113 (3rd copy).jpeg ├── 113 (another copy).jpeg ├── 114 (3rd copy).jpeg ├── 114.jpeg ├── 115 (another copy).jpeg ├── 115 (copy).jpeg ├── 117 (3rd copy).jpeg ├── 117.jpeg ├── 118 (another copy).jpeg ├── 118 (copy).jpeg ├── 119 (3rd copy).jpeg ├── 119.jpeg ├── 121 (copy).jpeg ├── 122.jpeg ├── 123 (3rd copy).jpeg ├── 123.jpeg ├── 124 (another copy).jpeg ├── 124 (copy).jpeg ├── 125.jpeg ├── 127.jpg ├── 131 (copy).jpg ├── 132 (3rd copy).png ├── 132 (another copy).png ├── 132.png ├── 2.jpg ├── IMG_20181022_090120.jpg ├── IMG_20181022_090157.jpg ├── IMG_20181022_090423.jpg ├── IMG_20181022_090536.jpg ├── IMG_20181022_090549.jpg ├── IMG_20181022_090606.jpg ├── IMG_20181022_090624.jpg ├── IMG_20181022_090643.jpg ├── IMG_20181022_090657.jpg ├── IMG_20181022_090714.jpg ├── IMG_20181022_090827.jpg ├── IMG_20181022_090836.jpg ├── IMG_20181022_090858.jpg ├── IMG_20181022_090905.jpg ├── IMG_20181022_091203.jpg ├── IMG_20181022_100435.jpg ├── IMG_20181022_100439.jpg ├── IMG_20181022_100610.jpg ├── IMG_20181022_100616.jpg ├── IMG_20181022_100628.jpg ├── IMG_20181022_100633.jpg ├── IMG_20181022_100836.jpg ├── IMG_20181022_100851.jpg ├── IMG_20181022_100954.jpg ├── IMG_20181022_101039.jpg ├── IMG_20181022_101049.jpg ├── IMG_20181022_101136.jpg ├── IMG_20181022_101141.jpg ├── IMG_20181022_101147.jpg ├── IMG_20181022_101332.jpg ├── IMG_20181022_101339.jpg ├── IMG_20181022_101344.jpg ├── IMG_20181022_101529.jpg ├── IMG_20181022_101537.jpg ├── IMG_20181022_102050.jpg ├── IMG_20181022_102054.jpg ├── IMG_20181022_102105.jpg ├── IMG_20181022_102520.jpg ├── IMG_20181022_102603.jpg ├── IMG_20181022_102621.jpg ├── IMG_20181022_102849.jpg ├── IMG_20181022_102946.jpg ├── IMG_20181022_102951.jpg ├── IMG_20181022_102955.jpg ├── IMG_20181022_103002.jpg ├── IMG_20181022_103030.jpg ├── IMG_20181022_103123.jpg ├── IMG_20181022_103147.jpg ├── IMG_20181022_103326.jpg ├── IMG_20181022_103547.jpg ├── IMG_20181022_103609.jpg └── IMG_20181022_103804.jpg ├── run.py ├── samples ├── 1.jpg ├── 10.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg ├── 14.jpg ├── 18.jpg ├── 19.jpg ├── 20.jpg ├── 21.jpg ├── 22.jpg ├── 24.jpg ├── 25.jpg ├── 26.jpg ├── 3.jpg ├── 32.jpg ├── 33.jpg ├── 35.jpg ├── 37.gpj ├── 38.jpg ├── 39.jpg ├── 4.jpg ├── 40.jpg ├── 41.jpg ├── 42.jpg ├── 43.jpg ├── 44.jpg ├── 45.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg └── 9.jpg ├── string_generator.py └── texts ├── random_1.txt ├── random_2.txt ├── random_3.txt └── test.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /background_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/background_generator.py -------------------------------------------------------------------------------- /computer_text_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/computer_text_generator.py -------------------------------------------------------------------------------- /data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/data_generator.py -------------------------------------------------------------------------------- /dicts/cn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/dicts/cn.txt -------------------------------------------------------------------------------- /dicts/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/dicts/de.txt -------------------------------------------------------------------------------- /dicts/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/dicts/en.txt -------------------------------------------------------------------------------- /dicts/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/dicts/es.txt -------------------------------------------------------------------------------- /dicts/fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/dicts/fa.txt -------------------------------------------------------------------------------- /dicts/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/dicts/fr.txt -------------------------------------------------------------------------------- /dicts/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/dicts/test.csv -------------------------------------------------------------------------------- /dicts/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/dicts/test.txt -------------------------------------------------------------------------------- /distorsion_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/distorsion_generator.py -------------------------------------------------------------------------------- /fonts/fa/!F Akhbaar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Akhbaar.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Compset Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Compset Bold.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Destkhat Plain.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Destkhat Plain.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Ferdawsi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Ferdawsi.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Haafez.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Haafez.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Jalaal Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Jalaal Bold.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Karim.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Karim.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Ketaab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Ketaab.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Mitraa.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Mitraa.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Naaz Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Naaz Bold.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Naaz.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Naaz.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Oshtok.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Oshtok.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Royaa Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Royaa Bold.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Tahrir New.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Tahrir New.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Titr Old.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Titr Old.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Titr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Titr.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Yaas.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Yaas.ttf -------------------------------------------------------------------------------- /fonts/fa/!F Zar.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/!F Zar.ttf -------------------------------------------------------------------------------- /fonts/fa/BMITRA.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/BMITRA.TTF -------------------------------------------------------------------------------- /fonts/fa/BNAZANB.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/BNAZANB.TTF -------------------------------------------------------------------------------- /fonts/fa/FARSI1_1.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/FARSI1_1.TTF -------------------------------------------------------------------------------- /fonts/fa/IRYekan.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/IRYekan.ttf -------------------------------------------------------------------------------- /fonts/fa/KHORSHID.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/KHORSHID.TTF -------------------------------------------------------------------------------- /fonts/fa/abank.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/fa/abank.ttf -------------------------------------------------------------------------------- /fonts/latin/AllerDisplay.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/AllerDisplay.ttf -------------------------------------------------------------------------------- /fonts/latin/Aller_Bd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Aller_Bd.ttf -------------------------------------------------------------------------------- /fonts/latin/Aller_BdIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Aller_BdIt.ttf -------------------------------------------------------------------------------- /fonts/latin/Aller_It.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Aller_It.ttf -------------------------------------------------------------------------------- /fonts/latin/Aller_Lt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Aller_Lt.ttf -------------------------------------------------------------------------------- /fonts/latin/Aller_LtIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Aller_LtIt.ttf -------------------------------------------------------------------------------- /fonts/latin/Aller_Rg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Aller_Rg.ttf -------------------------------------------------------------------------------- /fonts/latin/Amatic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Amatic-Bold.ttf -------------------------------------------------------------------------------- /fonts/latin/AmaticSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/AmaticSC-Regular.ttf -------------------------------------------------------------------------------- /fonts/latin/BEBAS___.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/BEBAS___.ttf -------------------------------------------------------------------------------- /fonts/latin/Capture_it.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Capture_it.ttf -------------------------------------------------------------------------------- /fonts/latin/Capture_it_2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Capture_it_2.ttf -------------------------------------------------------------------------------- /fonts/latin/CaviarDreams.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/CaviarDreams.ttf -------------------------------------------------------------------------------- /fonts/latin/CaviarDreams_BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/CaviarDreams_BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/CaviarDreams_Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/CaviarDreams_Italic.ttf -------------------------------------------------------------------------------- /fonts/latin/Caviar_Dreams_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Caviar_Dreams_Bold.ttf -------------------------------------------------------------------------------- /fonts/latin/DroidSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/DroidSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/latin/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/DroidSans.ttf -------------------------------------------------------------------------------- /fonts/latin/FFF_Tusj.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/FFF_Tusj.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-Black.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-Bold.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-Hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-Hairline.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-HairlineItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-HairlineItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-Heavy.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-HeavyItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-HeavyItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-Italic.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-Light.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-Medium.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-Regular.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-Semibold.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-SemiboldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-Thin.ttf -------------------------------------------------------------------------------- /fonts/latin/Lato-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Lato-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/latin/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/latin/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /fonts/latin/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/OpenSans-Light.ttf -------------------------------------------------------------------------------- /fonts/latin/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/latin/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /fonts/latin/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Pacifico.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Pacifico.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-Black.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-Bold.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-Italic.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-Light.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-Medium.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-Regular.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-Thin.ttf -------------------------------------------------------------------------------- /fonts/latin/Raleway-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Raleway-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-Black.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-Italic.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-Light.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-Medium.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-Thin.ttf -------------------------------------------------------------------------------- /fonts/latin/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /fonts/latin/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /fonts/latin/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /fonts/latin/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /fonts/latin/SEASRN__.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/SEASRN__.ttf -------------------------------------------------------------------------------- /fonts/latin/Sansation-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Sansation-Bold.ttf -------------------------------------------------------------------------------- /fonts/latin/Sansation-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Sansation-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Sansation-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Sansation-Italic.ttf -------------------------------------------------------------------------------- /fonts/latin/Sansation-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Sansation-Light.ttf -------------------------------------------------------------------------------- /fonts/latin/Sansation-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Sansation-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/latin/Sansation-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Sansation-Regular.ttf -------------------------------------------------------------------------------- /fonts/latin/Walkway_Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Walkway_Black.ttf -------------------------------------------------------------------------------- /fonts/latin/Walkway_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Walkway_Bold.ttf -------------------------------------------------------------------------------- /fonts/latin/Walkway_Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Walkway_Oblique.ttf -------------------------------------------------------------------------------- /fonts/latin/Walkway_Oblique_Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Walkway_Oblique_Black.ttf -------------------------------------------------------------------------------- /fonts/latin/Walkway_Oblique_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Walkway_Oblique_Bold.ttf -------------------------------------------------------------------------------- /fonts/latin/Walkway_Oblique_SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Walkway_Oblique_SemiBold.ttf -------------------------------------------------------------------------------- /fonts/latin/Walkway_Oblique_UltraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Walkway_Oblique_UltraBold.ttf -------------------------------------------------------------------------------- /fonts/latin/Walkway_SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Walkway_SemiBold.ttf -------------------------------------------------------------------------------- /fonts/latin/Walkway_UltraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/fonts/latin/Walkway_UltraBold.ttf -------------------------------------------------------------------------------- /handwritten_model/model-29.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/handwritten_model/model-29.data-00000-of-00001 -------------------------------------------------------------------------------- /handwritten_model/model-29.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/handwritten_model/model-29.index -------------------------------------------------------------------------------- /handwritten_model/model-29.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/handwritten_model/model-29.meta -------------------------------------------------------------------------------- /handwritten_model/translation.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/handwritten_model/translation.pkl -------------------------------------------------------------------------------- /handwritten_text_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/handwritten_text_generator.py -------------------------------------------------------------------------------- /label_delete_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/label_delete_space.py -------------------------------------------------------------------------------- /pictures/001 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/001 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/001 (4th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/001 (4th copy).jpg -------------------------------------------------------------------------------- /pictures/001 (5th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/001 (5th copy).jpg -------------------------------------------------------------------------------- /pictures/001 (6th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/001 (6th copy).jpg -------------------------------------------------------------------------------- /pictures/001 (7th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/001 (7th copy).jpg -------------------------------------------------------------------------------- /pictures/001 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/001 (another copy).jpg -------------------------------------------------------------------------------- /pictures/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/001.jpg -------------------------------------------------------------------------------- /pictures/002 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/002 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/002 (4th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/002 (4th copy).jpg -------------------------------------------------------------------------------- /pictures/002 (5th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/002 (5th copy).jpg -------------------------------------------------------------------------------- /pictures/002 (6th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/002 (6th copy).jpg -------------------------------------------------------------------------------- /pictures/002 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/002 (another copy).jpg -------------------------------------------------------------------------------- /pictures/002 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/002 (copy).jpg -------------------------------------------------------------------------------- /pictures/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/002.jpg -------------------------------------------------------------------------------- /pictures/003 (10th copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/003 (10th copy).png -------------------------------------------------------------------------------- /pictures/003 (3rd copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/003 (3rd copy).png -------------------------------------------------------------------------------- /pictures/003 (4th copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/003 (4th copy).png -------------------------------------------------------------------------------- /pictures/003 (5th copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/003 (5th copy).png -------------------------------------------------------------------------------- /pictures/003 (6th copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/003 (6th copy).png -------------------------------------------------------------------------------- /pictures/003 (7th copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/003 (7th copy).png -------------------------------------------------------------------------------- /pictures/003 (8th copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/003 (8th copy).png -------------------------------------------------------------------------------- /pictures/003 (9th copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/003 (9th copy).png -------------------------------------------------------------------------------- /pictures/003 (another copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/003 (another copy).png -------------------------------------------------------------------------------- /pictures/003 (copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/003 (copy).png -------------------------------------------------------------------------------- /pictures/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/003.png -------------------------------------------------------------------------------- /pictures/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/004.png -------------------------------------------------------------------------------- /pictures/005 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/005 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/005 (4th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/005 (4th copy).jpg -------------------------------------------------------------------------------- /pictures/005 (5th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/005 (5th copy).jpg -------------------------------------------------------------------------------- /pictures/005 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/005 (another copy).jpg -------------------------------------------------------------------------------- /pictures/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/005.jpg -------------------------------------------------------------------------------- /pictures/007 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/007 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/007 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/007 (another copy).jpg -------------------------------------------------------------------------------- /pictures/007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/007.jpg -------------------------------------------------------------------------------- /pictures/009 (3rd copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/009 (3rd copy).png -------------------------------------------------------------------------------- /pictures/009 (another copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/009 (another copy).png -------------------------------------------------------------------------------- /pictures/009 (copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/009 (copy).png -------------------------------------------------------------------------------- /pictures/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/009.png -------------------------------------------------------------------------------- /pictures/011 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/011 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/011 (4th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/011 (4th copy).jpg -------------------------------------------------------------------------------- /pictures/011 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/011 (another copy).jpg -------------------------------------------------------------------------------- /pictures/011 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/011 (copy).jpg -------------------------------------------------------------------------------- /pictures/011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/011.jpg -------------------------------------------------------------------------------- /pictures/012 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/012 (another copy).jpg -------------------------------------------------------------------------------- /pictures/012 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/012 (copy).jpg -------------------------------------------------------------------------------- /pictures/012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/012.jpg -------------------------------------------------------------------------------- /pictures/013 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/013 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/013 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/013 (another copy).jpg -------------------------------------------------------------------------------- /pictures/013 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/013 (copy).jpg -------------------------------------------------------------------------------- /pictures/013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/013.jpg -------------------------------------------------------------------------------- /pictures/015 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/015 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/015 (4th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/015 (4th copy).jpg -------------------------------------------------------------------------------- /pictures/015 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/015 (another copy).jpg -------------------------------------------------------------------------------- /pictures/015 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/015 (copy).jpg -------------------------------------------------------------------------------- /pictures/015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/015.jpg -------------------------------------------------------------------------------- /pictures/016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/016.jpg -------------------------------------------------------------------------------- /pictures/017 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/017 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/017 (4th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/017 (4th copy).jpg -------------------------------------------------------------------------------- /pictures/017 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/017 (another copy).jpg -------------------------------------------------------------------------------- /pictures/017 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/017 (copy).jpg -------------------------------------------------------------------------------- /pictures/017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/017.jpg -------------------------------------------------------------------------------- /pictures/018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/018.jpg -------------------------------------------------------------------------------- /pictures/019 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/019 (another copy).jpg -------------------------------------------------------------------------------- /pictures/019 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/019 (copy).jpg -------------------------------------------------------------------------------- /pictures/019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/019.jpg -------------------------------------------------------------------------------- /pictures/020 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/020 (copy).jpg -------------------------------------------------------------------------------- /pictures/020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/020.jpg -------------------------------------------------------------------------------- /pictures/021 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/021 (another copy).jpg -------------------------------------------------------------------------------- /pictures/021 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/021 (copy).jpg -------------------------------------------------------------------------------- /pictures/021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/021.jpg -------------------------------------------------------------------------------- /pictures/022 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/022 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/022 (4th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/022 (4th copy).jpg -------------------------------------------------------------------------------- /pictures/022 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/022 (another copy).jpg -------------------------------------------------------------------------------- /pictures/022 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/022 (copy).jpg -------------------------------------------------------------------------------- /pictures/022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/022.jpg -------------------------------------------------------------------------------- /pictures/023 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/023 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/023 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/023 (another copy).jpg -------------------------------------------------------------------------------- /pictures/023 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/023 (copy).jpg -------------------------------------------------------------------------------- /pictures/023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/023.jpg -------------------------------------------------------------------------------- /pictures/024 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/024 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/024 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/024 (another copy).jpg -------------------------------------------------------------------------------- /pictures/024 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/024 (copy).jpg -------------------------------------------------------------------------------- /pictures/024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/024.jpg -------------------------------------------------------------------------------- /pictures/025 (3rd copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/025 (3rd copy).png -------------------------------------------------------------------------------- /pictures/025 (4th copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/025 (4th copy).png -------------------------------------------------------------------------------- /pictures/025 (5th copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/025 (5th copy).png -------------------------------------------------------------------------------- /pictures/025 (6th copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/025 (6th copy).png -------------------------------------------------------------------------------- /pictures/025 (7th copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/025 (7th copy).png -------------------------------------------------------------------------------- /pictures/025 (another copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/025 (another copy).png -------------------------------------------------------------------------------- /pictures/025 (copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/025 (copy).png -------------------------------------------------------------------------------- /pictures/025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/025.png -------------------------------------------------------------------------------- /pictures/026 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/026 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/026 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/026 (another copy).jpg -------------------------------------------------------------------------------- /pictures/026 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/026 (copy).jpg -------------------------------------------------------------------------------- /pictures/026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/026.jpg -------------------------------------------------------------------------------- /pictures/027 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/027 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/027 (4th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/027 (4th copy).jpg -------------------------------------------------------------------------------- /pictures/027 (5th copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/027 (5th copy).jpg -------------------------------------------------------------------------------- /pictures/027 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/027 (another copy).jpg -------------------------------------------------------------------------------- /pictures/027 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/027 (copy).jpg -------------------------------------------------------------------------------- /pictures/027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/027.jpg -------------------------------------------------------------------------------- /pictures/028 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/028 (another copy).jpg -------------------------------------------------------------------------------- /pictures/028 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/028 (copy).jpg -------------------------------------------------------------------------------- /pictures/028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/028.jpg -------------------------------------------------------------------------------- /pictures/029 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/029 (another copy).jpg -------------------------------------------------------------------------------- /pictures/029 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/029 (copy).jpg -------------------------------------------------------------------------------- /pictures/029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/029.jpg -------------------------------------------------------------------------------- /pictures/030 (3rd copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/030 (3rd copy).jpg -------------------------------------------------------------------------------- /pictures/030 (another copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/030 (another copy).jpg -------------------------------------------------------------------------------- /pictures/030 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/030 (copy).jpg -------------------------------------------------------------------------------- /pictures/030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/030.jpg -------------------------------------------------------------------------------- /pictures/032 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/032 (copy).jpg -------------------------------------------------------------------------------- /pictures/036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/036.jpg -------------------------------------------------------------------------------- /pictures/048 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/048 (copy).jpeg -------------------------------------------------------------------------------- /pictures/049 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/049 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/049.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/049.jpeg -------------------------------------------------------------------------------- /pictures/055 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/055 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/055 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/055 (copy).jpeg -------------------------------------------------------------------------------- /pictures/055.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/055.jpeg -------------------------------------------------------------------------------- /pictures/061 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/061 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/061 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/061 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/061 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/061 (copy).jpeg -------------------------------------------------------------------------------- /pictures/062 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/062 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/062 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/062 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/062 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/062 (copy).jpeg -------------------------------------------------------------------------------- /pictures/062.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/062.jpeg -------------------------------------------------------------------------------- /pictures/063.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/063.jpeg -------------------------------------------------------------------------------- /pictures/064 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/064 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/064 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/064 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/064 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/064 (copy).jpeg -------------------------------------------------------------------------------- /pictures/064.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/064.jpeg -------------------------------------------------------------------------------- /pictures/065 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/065 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/065 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/065 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/065 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/065 (copy).jpeg -------------------------------------------------------------------------------- /pictures/065.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/065.jpeg -------------------------------------------------------------------------------- /pictures/066 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/066 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/066 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/066 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/066 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/066 (copy).jpeg -------------------------------------------------------------------------------- /pictures/066.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/066.jpeg -------------------------------------------------------------------------------- /pictures/067 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/067 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/067 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/067 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/067 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/067 (copy).jpeg -------------------------------------------------------------------------------- /pictures/067.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/067.jpeg -------------------------------------------------------------------------------- /pictures/068 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/068 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/068 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/068 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/068 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/068 (copy).jpeg -------------------------------------------------------------------------------- /pictures/068.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/068.jpeg -------------------------------------------------------------------------------- /pictures/069 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/069 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/069 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/069 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/069 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/069 (copy).jpeg -------------------------------------------------------------------------------- /pictures/069.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/069.jpeg -------------------------------------------------------------------------------- /pictures/070 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/070 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/070 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/070 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/070 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/070 (copy).jpeg -------------------------------------------------------------------------------- /pictures/070.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/070.jpeg -------------------------------------------------------------------------------- /pictures/071 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/071 (copy).jpeg -------------------------------------------------------------------------------- /pictures/072 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/072 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/072 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/072 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/072 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/072 (copy).jpeg -------------------------------------------------------------------------------- /pictures/072.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/072.jpeg -------------------------------------------------------------------------------- /pictures/073 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/073 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/073 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/073 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/073 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/073 (copy).jpeg -------------------------------------------------------------------------------- /pictures/073.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/073.jpeg -------------------------------------------------------------------------------- /pictures/074 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/074 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/074 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/074 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/074 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/074 (copy).jpeg -------------------------------------------------------------------------------- /pictures/074.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/074.jpeg -------------------------------------------------------------------------------- /pictures/075 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/075 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/075 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/075 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/075 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/075 (copy).jpeg -------------------------------------------------------------------------------- /pictures/075.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/075.jpeg -------------------------------------------------------------------------------- /pictures/076 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/076 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/076.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/076.jpeg -------------------------------------------------------------------------------- /pictures/091 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/091 (copy).jpeg -------------------------------------------------------------------------------- /pictures/092 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/092 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/092 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/092 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/092.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/092.jpeg -------------------------------------------------------------------------------- /pictures/093 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/093 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/093 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/093 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/093 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/093 (copy).jpeg -------------------------------------------------------------------------------- /pictures/093.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/093.jpeg -------------------------------------------------------------------------------- /pictures/094 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/094 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/094 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/094 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/094 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/094 (copy).jpeg -------------------------------------------------------------------------------- /pictures/094.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/094.jpeg -------------------------------------------------------------------------------- /pictures/095 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/095 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/095 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/095 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/095 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/095 (copy).jpeg -------------------------------------------------------------------------------- /pictures/095.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/095.jpeg -------------------------------------------------------------------------------- /pictures/096 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/096 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/096 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/096 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/096.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/096.jpeg -------------------------------------------------------------------------------- /pictures/099 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/099 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/099 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/099 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/099 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/099 (copy).jpeg -------------------------------------------------------------------------------- /pictures/099.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/099.jpeg -------------------------------------------------------------------------------- /pictures/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/1.jpg -------------------------------------------------------------------------------- /pictures/102 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/102 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/102.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/102.jpeg -------------------------------------------------------------------------------- /pictures/103 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/103 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/103 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/103 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/103 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/103 (copy).jpeg -------------------------------------------------------------------------------- /pictures/103.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/103.jpeg -------------------------------------------------------------------------------- /pictures/104 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/104 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/104 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/104 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/104 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/104 (copy).jpeg -------------------------------------------------------------------------------- /pictures/104.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/104.jpeg -------------------------------------------------------------------------------- /pictures/105 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/105 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/105 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/105 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/105 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/105 (copy).jpeg -------------------------------------------------------------------------------- /pictures/105.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/105.jpeg -------------------------------------------------------------------------------- /pictures/106 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/106 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/106 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/106 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/106 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/106 (copy).jpeg -------------------------------------------------------------------------------- /pictures/106.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/106.jpeg -------------------------------------------------------------------------------- /pictures/107 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/107 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/107 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/107 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/107.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/107.jpeg -------------------------------------------------------------------------------- /pictures/108 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/108 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/108 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/108 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/108 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/108 (copy).jpeg -------------------------------------------------------------------------------- /pictures/109.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/109.jpeg -------------------------------------------------------------------------------- /pictures/113 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/113 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/113 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/113 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/114 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/114 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/114.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/114.jpeg -------------------------------------------------------------------------------- /pictures/115 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/115 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/115 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/115 (copy).jpeg -------------------------------------------------------------------------------- /pictures/117 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/117 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/117.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/117.jpeg -------------------------------------------------------------------------------- /pictures/118 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/118 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/118 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/118 (copy).jpeg -------------------------------------------------------------------------------- /pictures/119 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/119 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/119.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/119.jpeg -------------------------------------------------------------------------------- /pictures/121 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/121 (copy).jpeg -------------------------------------------------------------------------------- /pictures/122.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/122.jpeg -------------------------------------------------------------------------------- /pictures/123 (3rd copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/123 (3rd copy).jpeg -------------------------------------------------------------------------------- /pictures/123.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/123.jpeg -------------------------------------------------------------------------------- /pictures/124 (another copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/124 (another copy).jpeg -------------------------------------------------------------------------------- /pictures/124 (copy).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/124 (copy).jpeg -------------------------------------------------------------------------------- /pictures/125.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/125.jpeg -------------------------------------------------------------------------------- /pictures/127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/127.jpg -------------------------------------------------------------------------------- /pictures/131 (copy).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/131 (copy).jpg -------------------------------------------------------------------------------- /pictures/132 (3rd copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/132 (3rd copy).png -------------------------------------------------------------------------------- /pictures/132 (another copy).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/132 (another copy).png -------------------------------------------------------------------------------- /pictures/132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/132.png -------------------------------------------------------------------------------- /pictures/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/2.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090120.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090157.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090423.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090423.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090536.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090536.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090549.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090549.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090606.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090606.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090624.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090624.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090643.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090643.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090657.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090657.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090714.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090714.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090827.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090827.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090836.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090836.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090858.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090858.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_090905.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_090905.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_091203.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_091203.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_100435.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_100435.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_100439.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_100439.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_100610.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_100610.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_100616.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_100616.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_100628.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_100628.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_100633.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_100633.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_100836.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_100836.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_100851.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_100851.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_100954.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_100954.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_101039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_101039.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_101049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_101049.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_101136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_101136.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_101141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_101141.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_101147.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_101147.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_101332.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_101332.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_101339.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_101339.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_101344.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_101344.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_101529.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_101529.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_101537.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_101537.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_102050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_102050.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_102054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_102054.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_102105.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_102105.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_102520.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_102520.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_102603.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_102603.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_102621.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_102621.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_102849.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_102849.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_102946.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_102946.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_102951.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_102951.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_102955.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_102955.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_103002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_103002.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_103030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_103030.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_103123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_103123.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_103147.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_103147.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_103326.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_103326.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_103547.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_103547.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_103609.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_103609.jpg -------------------------------------------------------------------------------- /pictures/IMG_20181022_103804.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/pictures/IMG_20181022_103804.jpg -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/run.py -------------------------------------------------------------------------------- /samples/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/1.jpg -------------------------------------------------------------------------------- /samples/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/10.jpg -------------------------------------------------------------------------------- /samples/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/11.jpg -------------------------------------------------------------------------------- /samples/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/12.jpg -------------------------------------------------------------------------------- /samples/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/13.jpg -------------------------------------------------------------------------------- /samples/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/14.jpg -------------------------------------------------------------------------------- /samples/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/18.jpg -------------------------------------------------------------------------------- /samples/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/19.jpg -------------------------------------------------------------------------------- /samples/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/20.jpg -------------------------------------------------------------------------------- /samples/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/21.jpg -------------------------------------------------------------------------------- /samples/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/22.jpg -------------------------------------------------------------------------------- /samples/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/24.jpg -------------------------------------------------------------------------------- /samples/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/25.jpg -------------------------------------------------------------------------------- /samples/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/26.jpg -------------------------------------------------------------------------------- /samples/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/3.jpg -------------------------------------------------------------------------------- /samples/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/32.jpg -------------------------------------------------------------------------------- /samples/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/33.jpg -------------------------------------------------------------------------------- /samples/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/35.jpg -------------------------------------------------------------------------------- /samples/37.gpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/37.gpj -------------------------------------------------------------------------------- /samples/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/38.jpg -------------------------------------------------------------------------------- /samples/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/39.jpg -------------------------------------------------------------------------------- /samples/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/4.jpg -------------------------------------------------------------------------------- /samples/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/40.jpg -------------------------------------------------------------------------------- /samples/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/41.jpg -------------------------------------------------------------------------------- /samples/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/42.jpg -------------------------------------------------------------------------------- /samples/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/43.jpg -------------------------------------------------------------------------------- /samples/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/44.jpg -------------------------------------------------------------------------------- /samples/45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/45.jpg -------------------------------------------------------------------------------- /samples/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/5.jpg -------------------------------------------------------------------------------- /samples/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/6.jpg -------------------------------------------------------------------------------- /samples/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/7.jpg -------------------------------------------------------------------------------- /samples/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/8.jpg -------------------------------------------------------------------------------- /samples/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/samples/9.jpg -------------------------------------------------------------------------------- /string_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/string_generator.py -------------------------------------------------------------------------------- /texts/random_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/texts/random_1.txt -------------------------------------------------------------------------------- /texts/random_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/texts/random_2.txt -------------------------------------------------------------------------------- /texts/random_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amirmgh1375/TextRecognitionDataGenerator/HEAD/texts/random_3.txt -------------------------------------------------------------------------------- /texts/test.txt: -------------------------------------------------------------------------------- 1 | The quick brown fox jumps over the lazy dog 2 | --------------------------------------------------------------------------------