1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #! /bin/bash
- if [ -z "$1" ]
- then
- echo "No argument supplied"
- echo "Need data folder"
- exit 1
- fi
- if [ -z "$2" ]
- then
- echo "No argument supplied"
- echo "Need output folder"
- exit 1
- fi
- if [ -z "$3" ]
- then
- echo "No argument supplied"
- echo "Need step output images expected (step of samples)"
- exit 1
- fi
- prefix="p3d_"
- build_folder="build"
- data_folder=$1
- output_folder=$2
- step=$3
- for folder_path in $(ls -d ${data_folder}*/)
- do
- nb_elements=$(ls -l ${folder_path} | grep ${prefix} | wc -l)
- IFS='/' read -ra ADDR <<< "${folder_path}"
- folder=${ADDR[-1]}
- # get output expected path
- output_scene_path=$output_folder/$folder
- output_scene_path_fixed=${output_scene_path//\/\//\/}
- if [ ! -d "$output_scene_path_fixed" ]; then
- # Control will enter here if $DIRECTORY doesn't exist.
-
- mkdir -p $output_scene_path_fixed
- ./${build_folder}/main/rawls_merge_incr --folder ${folder_path} --output $output_scene_path_fixed --step ${step} --random 0 --prefix ${folder} --max ${nb_elements} --extension ".png"
-
- fi
- done
|