From f1c39bc1093745f141aa268c08095d1a4461a87b Mon Sep 17 00:00:00 2001 From: Olli Graf Date: Sat, 10 Feb 2024 16:08:54 +0100 Subject: [PATCH] Skript zum Testen aller Kameraeffekte. --- test_cam_fx.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 test_cam_fx.sh 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 + +