Add drag-and-drop GUI for the V3 spectral bypass

Small Tkinter app: drop images in, get SynthID-cleaned copies out,
with an option to strip EXIF/XMP/IPTC metadata from the output.
Runs offline on the existing V3 codebook, no PyTorch required.
This commit is contained in:
Aina Olaoluwa
2026-07-15 13:53:59 +01:00
parent 96076718a4
commit 9b0f8d1a26
4 changed files with 269 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
cd "$(dirname "$0")"
if [ ! -d venv ]; then
python3 -m venv venv
source venv/bin/activate
pip install --quiet --upgrade pip
pip install --quiet -r requirements-gui.txt
else
source venv/bin/activate
fi
python gui.py