├── .dvc ├── .gitignore └── config ├── .dvcignore ├── .gitignore ├── LICENSE ├── README.md ├── datasets.dvc ├── docs └── misc_files │ └── sample.png ├── main.py ├── preprocesing ├── __init__.py ├── config_file.py ├── convert_images.py ├── extract_and_verify_fonts.py ├── layout_engine │ ├── __init__.py │ ├── helpers.py │ ├── page_creator.py │ ├── page_dataset_creator.py │ └── page_object_classes.py └── text_dataset_format_changer.py ├── requirements.txt ├── scraping ├── download_fonts.py ├── download_images.py ├── download_texts.py └── font_download_manual.ipynb ├── tests ├── __init__.py └── unit_tests │ ├── test_dataset_creator.py │ ├── test_files │ └── test.json │ ├── test_helpers.py │ └── test_objects.py └── utils ├── compress.py └── decompress.py /.dvc/.gitignore: -------------------------------------------------------------------------------- 1 | /config.local 2 | /tmp 3 | /cache 4 | -------------------------------------------------------------------------------- /.dvc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/.dvc/config -------------------------------------------------------------------------------- /.dvcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/.dvcignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/README.md -------------------------------------------------------------------------------- /datasets.dvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/datasets.dvc -------------------------------------------------------------------------------- /docs/misc_files/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/docs/misc_files/sample.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/main.py -------------------------------------------------------------------------------- /preprocesing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preprocesing/config_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/preprocesing/config_file.py -------------------------------------------------------------------------------- /preprocesing/convert_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/preprocesing/convert_images.py -------------------------------------------------------------------------------- /preprocesing/extract_and_verify_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/preprocesing/extract_and_verify_fonts.py -------------------------------------------------------------------------------- /preprocesing/layout_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preprocesing/layout_engine/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/preprocesing/layout_engine/helpers.py -------------------------------------------------------------------------------- /preprocesing/layout_engine/page_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/preprocesing/layout_engine/page_creator.py -------------------------------------------------------------------------------- /preprocesing/layout_engine/page_dataset_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/preprocesing/layout_engine/page_dataset_creator.py -------------------------------------------------------------------------------- /preprocesing/layout_engine/page_object_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/preprocesing/layout_engine/page_object_classes.py -------------------------------------------------------------------------------- /preprocesing/text_dataset_format_changer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/preprocesing/text_dataset_format_changer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/requirements.txt -------------------------------------------------------------------------------- /scraping/download_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/scraping/download_fonts.py -------------------------------------------------------------------------------- /scraping/download_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/scraping/download_images.py -------------------------------------------------------------------------------- /scraping/download_texts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/scraping/download_texts.py -------------------------------------------------------------------------------- /scraping/font_download_manual.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/scraping/font_download_manual.ipynb -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/test_dataset_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/tests/unit_tests/test_dataset_creator.py -------------------------------------------------------------------------------- /tests/unit_tests/test_files/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/tests/unit_tests/test_files/test.json -------------------------------------------------------------------------------- /tests/unit_tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/tests/unit_tests/test_helpers.py -------------------------------------------------------------------------------- /tests/unit_tests/test_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/tests/unit_tests/test_objects.py -------------------------------------------------------------------------------- /utils/compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/utils/compress.py -------------------------------------------------------------------------------- /utils/decompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aasimsani/artificial_manga_panel_dataset/HEAD/utils/decompress.py --------------------------------------------------------------------------------