aboutsummaryrefslogtreecommitdiff
path: root/tests/image/Image2Image.sh
blob: 212decd445a6a5fa8108b9119d09cde32e51bbe8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env sh

if (( $# < 2 ))  
then
  echo "Error, missing parameters. Example: ./Image2Image.sh width height"
else
  for i in `seq 1 10`;
  do
    schemer2 -minBright=0 -in=img:testinput.png -outputImage=testout$i.png -w=$1 -h=$2
  done
fi