Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/p1atdev/stable-diffusion-webui-adverse-cleaner-tab
An extension of AUTOMATIC1111's webui to remove adverse noise from images.
https://github.com/p1atdev/stable-diffusion-webui-adverse-cleaner-tab
automatic1111 stable-diffusion-webui-plugin
Last synced: 6 days ago
JSON representation
An extension of AUTOMATIC1111's webui to remove adverse noise from images.
- Host: GitHub
- URL: https://github.com/p1atdev/stable-diffusion-webui-adverse-cleaner-tab
- Owner: p1atdev
- License: apache-2.0
- Created: 2023-03-20T19:58:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-06T10:51:47.000Z (about 1 year ago)
- Last Synced: 2024-11-22T00:48:04.712Z (about 2 months ago)
- Topics: automatic1111, stable-diffusion-webui-plugin
- Language: Python
- Homepage:
- Size: 190 KB
- Stars: 58
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stable-diffusion-webui-adverse-cleaner-tab
[Adverse Cleaner](https://github.com/lllyasviel/AdverseCleaner/tree/main) as a tab extension for AUTOMATIC1111's webui.
# Features
- Easy to remove [adversarial noise](https://arxiv.org/abs/1412.6572) from a single image
- Batch processing that can remove noise from multiple images.# Troubleshooting
- ModuleNotFoundError: No module named 'cv2.ximgproc'
You need to manually install `opencv-contrib-python` because the webui uses opencv-python, so the extension can't modify the opencv package while running.
First you open the stable-diffusion-webui folder in terminal.
```bash
cd /path/to/stable-diffusion-webui
```Activate venv,
```bash
./venv/Scripts/activate
```Install `opencv-contrib-python`
```
pip install opencv-contrib-python
```# Screenshots
![screenshot1](./screenshots/screenshot1.jpg)
![screenshot2](./screenshots/screenshot2.jpg)
# Related links
- [As a script extension](https://github.com/gogodr/AdverseCleanerExtension)
- [HuggingFace Space](https://huggingface.co/spaces/p1atdev/AdverseCleaner)