Compare commits
No commits in common. "9e4b0e795cb7cf88020483ec72ef018950e6a1d1" and "b80839b07647eca62bb038f876f6aaf8c7eeca6c" have entirely different histories.
9e4b0e795c
...
b80839b076
@ -1,53 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
GVS=${HOME}/Devel/FloatImg/v4l2/grabvidseq
|
|
||||||
|
|
||||||
# ------------------------------------
|
|
||||||
# set some default values
|
|
||||||
DEV=/dev/video2
|
|
||||||
SZ=640x480
|
|
||||||
NBRE=320
|
|
||||||
PERIOD=0.0
|
|
||||||
COUNT=compteur
|
|
||||||
OPTIONS=" -u"
|
|
||||||
|
|
||||||
# ------------------------------------
|
|
||||||
# overide parameters from $PWD
|
|
||||||
if [ -r ./reglages ]
|
|
||||||
then
|
|
||||||
source ./reglages
|
|
||||||
fi
|
|
||||||
|
|
||||||
# ------------------------------------
|
|
||||||
# get the current picture number
|
|
||||||
if [ -r $COUNT ]
|
|
||||||
then
|
|
||||||
numero=$( head -1 $COUNT )
|
|
||||||
else
|
|
||||||
numero=1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# ------------------------------------
|
|
||||||
# make the output filename
|
|
||||||
if [ 1 -eq $# ]
|
|
||||||
then
|
|
||||||
outfile="$1"
|
|
||||||
else
|
|
||||||
outfile=$( printf "P_%04d.pnm" $numero )
|
|
||||||
fi
|
|
||||||
|
|
||||||
# ------------------------------------
|
|
||||||
# take and display the fancy picture
|
|
||||||
$GVS -d $DEV -n $NBRE -p $PERIOD $OPTIONS -s $SZ -o $outfile
|
|
||||||
|
|
||||||
if [ ${SHOW} == "yes" ]
|
|
||||||
then
|
|
||||||
display $outfile &
|
|
||||||
fi
|
|
||||||
|
|
||||||
# ------------------------------------
|
|
||||||
# increment and save the picture number
|
|
||||||
numero=$(( numero + 1 ))
|
|
||||||
echo $numero > $COUNT
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user