├── .gitignore ├── README.md ├── ayat ├── ayat.py ├── find_ayat_v2.py ├── header_remover.py ├── marker_remover.py └── marker_remover_v2.py ├── find_errors.pl ├── images ├── make_transparent.py └── make_white.py ├── lines └── lines.py ├── loop.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/README.md -------------------------------------------------------------------------------- /ayat/ayat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/ayat/ayat.py -------------------------------------------------------------------------------- /ayat/find_ayat_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/ayat/find_ayat_v2.py -------------------------------------------------------------------------------- /ayat/header_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/ayat/header_remover.py -------------------------------------------------------------------------------- /ayat/marker_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/ayat/marker_remover.py -------------------------------------------------------------------------------- /ayat/marker_remover_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/ayat/marker_remover_v2.py -------------------------------------------------------------------------------- /find_errors.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/find_errors.pl -------------------------------------------------------------------------------- /images/make_transparent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/images/make_transparent.py -------------------------------------------------------------------------------- /images/make_white.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/images/make_white.py -------------------------------------------------------------------------------- /lines/lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/lines/lines.py -------------------------------------------------------------------------------- /loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/loop.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quran/ayah-detection/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | pillow 4 | opencv-python 5 | --------------------------------------------------------------------------------