testing quadtree recurse

This commit is contained in:
tTh 2024-07-21 01:06:37 +02:00
parent 43368bf900
commit ee6a416f9e
1 changed files with 28 additions and 0 deletions

28
Tests/t_recurse.sh Executable file
View File

@ -0,0 +1,28 @@
#!/bin/bash
set -e
source="dauphine2.tga"
if [ $# -eq 2 ] ; then
source="$1"
fi
identify $source ; echo
rm -f frames/R*.tga
maxidx=250
for idx in $(seq 0 4 $maxidx)
do
dst=$(printf "frames/R%03d.tga" $idx)
coef=$(( $maxidx - $idx ))
echo "======> "$dst " coef " $coef
../Tools/tga_effects $source recurse $dst $coef
done
convert -delay 10 frames/R*.tga recurse.gif
wc -c recurse.gif