├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── ShadowGenerator.py ├── config.yaml ├── imread.py ├── mask.py ├── tagger.py ├── templates └── index.html ├── web_server.bat └── web_server.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ShadowGenerator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | __pycache__/ShadowGenerator.cpython-310.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ShadowGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ShadowGenerator/HEAD/README.md -------------------------------------------------------------------------------- /ShadowGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ShadowGenerator/HEAD/ShadowGenerator.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ShadowGenerator/HEAD/config.yaml -------------------------------------------------------------------------------- /imread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ShadowGenerator/HEAD/imread.py -------------------------------------------------------------------------------- /mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ShadowGenerator/HEAD/mask.py -------------------------------------------------------------------------------- /tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ShadowGenerator/HEAD/tagger.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ShadowGenerator/HEAD/templates/index.html -------------------------------------------------------------------------------- /web_server.bat: -------------------------------------------------------------------------------- 1 | call env\Scripts\activate.bat & python "web_server.py" 2 | pause -------------------------------------------------------------------------------- /web_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ShadowGenerator/HEAD/web_server.py --------------------------------------------------------------------------------