-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathRunExamples.sh
More file actions
executable file
·57 lines (43 loc) · 1.45 KB
/
RunExamples.sh
File metadata and controls
executable file
·57 lines (43 loc) · 1.45 KB
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
#!/bin/bash
echo ""
echo ""
echo "======================================="
echo "== RUNNING EXAMPLE 1 -- VERIFICATION =="
echo "======================================="
echo ""
./build/example1/Example1 examples/images/Cameron_Diaz.ppm \
examples/images/Cameron_Diaz_2.ppm 0.7
echo ""
echo "======================================="
echo "== RUNNING EXAMPLE 2 -- ATTRIBUTES =="
echo "======================================="
echo ""
./build/example2/Example2 examples/images/portrait.ppm
echo ""
echo "======================================="
echo "== RUNNING EXAMPLE 3 -- MTCNN DETECTOR + ATTRIBUTES =="
echo "======================================="
echo ""
./build/example3/Example3 examples/images/portrait.ppm
echo ""
echo "======================================="
echo "== RUNNING EXAMPLE 6 -- LSH =="
echo "======================================="
echo ""
./build/example6/Example6 examples/images/Cameron_Diaz.ppm \
examples/images/ examples/images_lists/list.txt 0.7
echo ""
echo "======================================="
echo "== RUNNING EXAMPLE 7 -- IO_UTIL =="
echo "======================================="
echo ""
./build/example7/Example7 examples/images/portrait.ppm
echo ""
echo "======================================="
echo "== RUNNING EXAMPLE 8 -- IO_UTIL =="
echo "======================================="
echo ""
./build/example8/Example8 examples/descriptors/Cameron_Diaz.xpk \
examples/descriptors/Cameron_Diaz_2.xpk 0.7
echo ""
echo ""