commit f1c39bc1093745f141aa268c08095d1a4461a87b Author: Olli Graf Date: Sat Feb 10 16:08:54 2024 +0100 Skript zum Testen aller Kameraeffekte. diff --git a/test_cam_fx.sh b/test_cam_fx.sh new file mode 100755 index 0000000..4633bb5 --- /dev/null +++ b/test_cam_fx.sh @@ -0,0 +1,11 @@ +#!/usr/bin/bash + +effects=("none" "negative" "solarise" "sketch" "denoise" "emboss" "oilpaint" "hatch" "gpen" "pastel" "watercolour" "film" "blur" "saturation" "colourswap" "washedout" "posterise" "colourpoint" "colourbalance" "cartoon") + +for fx in ${effects[@]}; do + filename="${1}_${fx}.jpg" + echo "creating still ${filename}" + raspistill -ifx ${fx} -o "${filename}" +done + +