From 9f4985a4442038a28e5ae5fe0de73ca27d9747a1 Mon Sep 17 00:00:00 2001 From: Ferdinand Date: Tue, 7 Apr 2026 16:25:59 +0200 Subject: [PATCH] docs: add README with setup instructions --- README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..0a1247e --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +# Foto-Kurator + +Automatisches Aussortieren von Fotos nach Qualitätskriterien. + +## Setup + +```bash +pip install -r requirements.txt +``` + +Für KI-Analyse (optional): +```bash +cp .env.example .env +# ANTHROPIC_API_KEY in .env eintragen +``` + +## Starten + +```bash +python server.py +``` + +Der Browser öffnet automatisch http://localhost:8000. + +## Kriterien + +- **Unscharf** — Laplacian Variance (einstellbar) +- **Überbelichtet / Unterbelichtet** — Durchschnittliche Helligkeit (einstellbar) +- **Duplikate** — Perceptual Hashing (einstellbar) +- **KI-Analyse** — Claude Vision API (optional, ca. 0,003 € / Foto) + +Aussortierte Fotos landen in `_aussortiert/` im analysierten Ordner.