-
Notifications
You must be signed in to change notification settings - Fork 47
/
makeOptFlow_deepflow.sh
70 lines (56 loc) · 2.03 KB
/
makeOptFlow_deepflow.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Specify the path to the optical flow utility here.
# Also check line 63 and 66 whether the arguments are in the correct order.
flowCommandLine="bash run-deepflow.sh"
if [ -z "$flowCommandLine" ]; then
echo "Please open makeOptFlow.sh and specify the command line for computing the optical flow."
exit 1
fi
if [ ! -f ./consistencyChecker/consistencyChecker ]; then
if [ ! -f ./consistencyChecker/Makefile ]; then
echo "Consistency checker makefile not found."
exit 1
fi
cd consistencyChecker/
make
cd ..
fi
filePattern=$1
folderName=$2
startFrame=${3:-1}
opt_res=${4:-1}
wait_for_file() {
local filename=$1
while [ ! -f "$filename" ]; do
sleep 1
done
}
if [ "$#" -le 1 ]; then
echo "Usage: ./makeOptFlow <filePattern> <outputFolder> [<startNumber> [<optRes>]]"
echo -e "\tfilePattern:\tFilename pattern of the frames of the videos."
echo -e "\toutputFolder:\tOutput folder."
echo -e "\tstartNumber:\tThe index of the first frame. Default: 1"
echo -e "\toptRes:\tResolution downscale factor for optical flow. Default: 1"
exit 1
fi
i=$[$startFrame]
mkdir -p "${folderName}"
while [ 1 ]; do
j=$[ $i - 1 ]
file1=$(printf "$filePattern" "$i")
file2=$(printf "$filePattern" "$j")
if [ -a $file2 ] && [ -a $file1 ]; then
if [ ! -f ${folderName}/forward_${j}_${i}.flo ]; then
eval $flowCommandLine "$file2" "$file1" "${folderName}/forward_${j}_${i}.flo" ${opt_res} &
fi
if [ ! -f ${folderName}/backward_${i}_${j}.flo ]; then
eval $flowCommandLine "$file1" "$file2" "${folderName}/backward_${i}_${j}.flo" ${opt_res}
fi
wait_for_file "${folderName}/forward_${j}_${i}.flo"
./consistencyChecker/consistencyChecker "${folderName}/backward_${i}_${j}.flo" "${folderName}/forward_${j}_${i}.flo" "${folderName}/reliable_${i}_${j}.pgm" "$file1"
./consistencyChecker/consistencyChecker "${folderName}/forward_${j}_${i}.flo" "${folderName}/backward_${i}_${j}.flo" "${folderName}/reliable_${j}_${i}.pgm" "$file2"
fi
if [ ! -f $file1 ]; then
break
fi
i=$[$i + 1]
done