Browse Source

Skript zum Testen aller Kameraeffekte.

master
Olli Graf 8 months ago
commit
f1c39bc109
  1. 11
      test_cam_fx.sh

11
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
Loading…
Cancel
Save