feat: shortlist builder — read JSON, set thresholds, copy passing photos

This commit is contained in:
Kareem Horstink
2026-08-23 15:43:04 +00:00
parent d218326d47
commit 224a695ac3
3 changed files with 300 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/bash
# Photo Judgers — Shortlist Builder (Linux/Mac)
# Reads output.json, asks for thresholds, copies photos to shortlist folder
set -e
echo "========================================"
echo " Photo Judgers — Shortlist Builder"
echo "========================================"
echo ""
# Activate conda env
source $(conda info --base)/etc/profile.d/conda.sh
conda activate photo_judgers
echo "Running shortlist builder..."
echo ""
python -m src.shortlist "$@"