Olli Graf
10 months ago
commit
f1c39bc109
1 changed files with 11 additions and 0 deletions
@ -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…
Reference in new issue