-
Notifications
You must be signed in to change notification settings - Fork 1
/
compute_averages.sh
executable file
·82 lines (64 loc) · 2.03 KB
/
compute_averages.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
71
72
73
74
75
76
77
78
79
80
81
82
run_average()
{
~/catkin_ws/devel/lib/vlma/vlma_average_roughness --pointcloud_path $1
}
# test1='/home/jake/Downloads/CB1CB3_none.ply'
# test2='/home/jake/Downloads/CB1CB3_geo.ply'
# test3='/home/jake/Downloads/CB1CB3_sc.ply'
# test4='/home/jake/Downloads/CB1CB3_scgeo.ply'
# test5='/home/jake/Downloads/CB1CB2_none.ply'
# test6='/home/jake/Downloads/CB1CB2_geo.ply'
# test7='/home/jake/Downloads/CB1CB2_sc.ply'
# test8='/home/jake/Downloads/CB1CB2_scgeo.ply'
# test1='/home/jake/Downloads/SL2SL1_none.ply'
# test2='/home/jake/Downloads/SL2SL1_geo.ply'
# test3='/home/jake/Downloads/SL2SL1_sc.ply'
# test4='/home/jake/Downloads/SL2SL1_scgeo.ply'
# test5='/home/jake/Downloads/SL2SL3_none.ply'
# test6='/home/jake/Downloads/SL2SL3_geo.ply'
# test7='/home/jake/Downloads/SL2SL3_sc.ply'
# test8='/home/jake/Downloads/SL2SL3_scgeo.ply'
# run_average $test1
# run_average $test2
# run_average $test3
# run_average $test4
# echo "SL2SL3_none"
# run_average $test5
# echo "SL2SL3_geo"
# run_average $test6
# echo "SL2SL3_sc"
# run_average $test7
# echo "SL2SL3_scgeo"
# run_average $test8
# echo "SL2SL3_vma"
# test10='/home/jake/Downloads/SL2SL3_vma.ply'
# run_average $test10
# echo "SL2SL3_lma"
# test11='/home/jake/Downloads/SL2SL3_lma.ply'
# run_average $test11
# echo "SL2SL1_vma"
# test12='/home/jake/Downloads/SL2SL1_vma.ply'
# run_average $test12
# echo "SL2SL1_lma"
# test13='/home/jake/Downloads/SL2SL1_lma.ply'
# run_average $test13
# echo "CB1CB2_vma"
# test14='/home/jake/Downloads/CB1CB2_vma.ply'
# run_average $test14
# echo "CB1CB2_lma"
# test15='/home/jake/Downloads/CB1CB2_lma.ply'
# run_average $test15
# echo "CB1CB3_vma"
# test16='/home/jake/Downloads/CB1CB3_vma.ply'
# run_average $test16
# echo "CB1CB3_lma"
# test17='/home/jake/Downloads/CB1CB3_lma.ply'
# run_average $test17
test1='/home/jake/Downloads/SL2SL1_rigid.ply'
test2='/home/jake/Downloads/SL2SL3_rigid.ply'
test3='/home/jake/Downloads/CB1CB2_rigid.ply'
test4='/home/jake/Downloads/CB1CB3_rigid.ply'
run_average $test1
run_average $test2
run_average $test3
run_average $test4