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.
28 lines
501 B
28 lines
501 B
#!/bin/bash |
|
|
|
|
|
../v4l2/grabvidseq -s 960x720 -n 10000 -p 0.078 \ |
|
-vv -g -c none \ |
|
-o original.fimg |
|
|
|
make t && ./t |
|
|
|
for picz in original power2 squareroot cos_01 |
|
do |
|
|
|
echo _______________________ ${picz} |
|
|
|
# ../tools/fimgstats -v ${picz}.fimg |
|
../tools/fimg2pnm -v ${picz}.fimg ${picz}.pnm |
|
|
|
convert -pointsize 48 \ |
|
-fill black -annotate +14+40 "${picz}" \ |
|
-fill white -annotate +16+42 "${picz}" \ |
|
${picz}.pnm ${picz}.png |
|
|
|
rm ${picz}.pnm |
|
|
|
done |
|
|
|
convert -delay 150 *.png foo.gif |
|
|
|
|