├── .gitignore ├── LICENSE ├── README.md ├── TODOS.md ├── assets ├── input_scenetext01.jpg ├── input_scenetext02.jpg ├── input_scenetext03.jpg ├── output_scenetext01.png ├── output_scenetext02.png ├── output_scenetext03.png └── output_scenetext04.png ├── detect.py ├── lib ├── config.py ├── region.py ├── text_detection.py └── utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Python 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | .DS_Store 6 | output/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/README.md -------------------------------------------------------------------------------- /TODOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/TODOS.md -------------------------------------------------------------------------------- /assets/input_scenetext01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/assets/input_scenetext01.jpg -------------------------------------------------------------------------------- /assets/input_scenetext02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/assets/input_scenetext02.jpg -------------------------------------------------------------------------------- /assets/input_scenetext03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/assets/input_scenetext03.jpg -------------------------------------------------------------------------------- /assets/output_scenetext01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/assets/output_scenetext01.png -------------------------------------------------------------------------------- /assets/output_scenetext02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/assets/output_scenetext02.png -------------------------------------------------------------------------------- /assets/output_scenetext03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/assets/output_scenetext03.png -------------------------------------------------------------------------------- /assets/output_scenetext04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/assets/output_scenetext04.png -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/detect.py -------------------------------------------------------------------------------- /lib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/lib/config.py -------------------------------------------------------------------------------- /lib/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/lib/region.py -------------------------------------------------------------------------------- /lib/text_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/lib/text_detection.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/lib/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmiozgen/text-detection/HEAD/requirements.txt --------------------------------------------------------------------------------