docs: add README with setup instructions

This commit is contained in:
Ferdinand
2026-04-07 16:25:59 +02:00
parent 08dabfb57c
commit 9f4985a444

32
README.md Normal file
View File

@@ -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.