-
Notifications
You must be signed in to change notification settings - Fork 0
/
Camera.bash
executable file
·71 lines (69 loc) · 2.42 KB
/
Camera.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/bash
# script pour prendre une image de la ip webcam
# supporte la ip webcam linksys et la d-link mais il faut definir le model
# sur la ligne ci-dessous
# valeurs cammodel="dlink" ou cammodel="linksys" ou "raspberry-pi"
#
# Copyright (C) 2010 Martin Aube
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Contact: [email protected]
#
#
y=`date +%Y`
mo=`date +%m`
d=`date +%d`
if [ ! -d /var/www/html/data/$y ]
then mkdir /var/www/html/data/$y
fi
if [ ! -d /var/www/html/data/$y/$mo ]
then /bin/mkdir /var/www/html/data/$y/$mo
fi
if [ ! -d /var/www/html/data/$y/$mo/webcam ]
then /bin/mkdir /var/www/html/data/$y/$mo/webcam
fi
noname=`date +%Y-%m-%d_%H-%M-%S`
cd /home/sand
itime=10
gain=1
luminosite=0
while [ $luminosite -lt 100 ] && [ $itime -le 200000000 ]
do /usr/bin/raspistill -t 1 -md 3 -bm -ex off -ag $gain --shutter $itime -dg 1 -st -o /home/sand/skytmp.jpg
/usr/bin/convert -resize 640x640^ -gaussian-blur 0.05 -quality 85% /home/sand/skytmp.jpg /home/sand/sky.jpg
# mesurer le niveau de gris moyen (mean)
/usr/bin/identify -verbose /home/sand/sky.jpg | /bin/grep mean | /bin/sed 's/mean://g' | /usr/bin/tr -d '\n' > /home/sand/mean.tmp
read r rr g gg b bb < /home/sand/mean.tmp
/bin/echo $r $g $b
/bin/echo $r $g $b >> /home/sand/color.txt
if [ ! $b ]
#support des image grayscale
then let mean=r
else mean=`/bin/echo "scale=0;("$r"+"$g"+"$b")/3." | /usr/bin/bc -l`
fi
echo $mean | sed 's/\./ /g' > /home/sand/mean.tmp
read luminosite bidon < /home/sand/mean.tmp
if [ ! $luminosite ]
then luminosite=0
fi
echo $luminosite $gain $itime
if [ $gain -lt 16 ]
then let gain=gain*2
else
let itime=itime*2
fi
done
mv /home/sand/sky.jpg /var/www/html/data/$y/$mo/webcam/$noname".jpg"
/bin/rm -f /home/sand/mean.tmp
/bin/rm -f /home/sand/skytmp.jpg