22 lines
403 B
Bash
Executable File
22 lines
403 B
Bash
Executable File
#!/bin/bash
|
|
FILES=$(find ../measurements/18/{Galaxy,Nexus}/ -name "*.csv")
|
|
|
|
for f in $FILES
|
|
do
|
|
echo $f
|
|
filename=$(basename $f)
|
|
directory=$(dirname $f)
|
|
|
|
#echo $filename
|
|
#echo $directory
|
|
|
|
step=$directory/Steps2.txt
|
|
turn=$directory/Turns.txt
|
|
|
|
echo $step
|
|
echo $turn
|
|
|
|
python StepDetector.py $f $step --lt -1.2 --ht 1.2
|
|
python TurnDetector.py $f $turn
|
|
done
|