Projektarbeit Line Following Robot bei Prof. Chowanetz im WS22/23
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.

test.sh 344B

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. # Run this script to test the library's functionality of various formats and sizes
  3. OPTS=""
  4. func () {
  5. f=$1_$2x$3
  6. mkdir -p "$f"; cd "$f"
  7. ../../build/utils/raspicam_test $OPTS -$1 -w $2 -h $3
  8. cd ..
  9. }
  10. func2 () {
  11. func $1 3280 2464
  12. func $1 1640 1232
  13. func $1 1280 720
  14. }
  15. mkdir -p out; cd out
  16. func2 rgb
  17. func2 yuv
  18. func2 gr
  19. cd ..