6 lines
164 B
Bash
Executable File
6 lines
164 B
Bash
Executable File
topdir=$1
|
|
imagename=$2 # rgba.png or image.png
|
|
for i in $topdir/*; do
|
|
echo preprocessing "$i"/$imagename ...
|
|
python preprocess_image.py "$i"/$imagename
|
|
done |