Skript zum Testen aller Kameraeffekte.

This commit is contained in:
2024-02-10 16:08:54 +01:00
commit f1c39bc109

11
test_cam_fx.sh Executable file
View File

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