Spaces:
Running
Running
File size: 245 Bytes
a80d6bb |
1 2 3 4 5 6 7 8 9 10 |
# DELF Extraction script doesn't support .ppm images.
current_dir=`pwd`
echo $current_dir
for dir in `ls hpatches-sequences-release`; do
echo $dir
cd hpatches-sequences-release/$dir
mogrify -format png *.ppm
cd $current_dir
done
|