You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
378 B

#!/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