imgutils
imgutils copied to clipboard
A convenient and user-friendly anime-style image data processing library that integrates various advanced anime-style image processing models
https://huggingface.co/SmilingWolf/wd-v1-4-swinv2-tagger-v2/discussions/6
I am trying to use the library for a large dataset I am setting up a multiprocessing Pool to speed up the processing However, for example for the function `detect_censors`...
Take a look: https://github.com/CartoonSegmentation/CartoonSegmentation
Project: https://github.com/ChaoningZhang/MobileSAM Browser demo: https://github.com/akbartus/MobileSAM-in-the-Browser https://mobilesam.glitch.me/
I'm trying to tag a dataset using more than one WD14 model, so i wrote a simple script that iterates all the files in a directory for every model in...
```python from pprint import pprint from imgutils.tagging import get_pixai_tags from test.testings import get_testfile g, c = get_pixai_tags(get_testfile('nude_girl.png')) pprint(g) pprint(c) ```