Bibliothèque de traitements d'images en virgule flottante.
http://la.buvette.org/photos/cumul/
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.
24 lines
377 B
24 lines
377 B
#!/bin/bash |
|
|
|
GRABOPT=" -vv -d /dev/video0 -n 400 -p 0.5 -u " |
|
SPOOL=${HOME}/TMP |
|
|
|
echo ; echo ; echo |
|
|
|
for capture in red green blue |
|
do |
|
image=${SPOOL}/${capture}.fimg |
|
echo grabbing $image |
|
grabvidseq ${GRABOPT} -o $image |
|
echo |
|
done |
|
|
|
./muxplanes "${SPOOL}/red.fimg" \ |
|
"${SPOOL}/green.fimg" \ |
|
"${SPOOL}/blue.fimg" \ |
|
yo.fimg |
|
|
|
echo $0 "got a" $? |
|
|
|
fimgstats -v yo.fimg |
|
|
|
|