-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSequenceSetup.py
More file actions
103 lines (103 loc) · 1.92 KB
/
Copy pathSequenceSetup.py
File metadata and controls
103 lines (103 loc) · 1.92 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
def GetSequenceList():
sequence_list = [{
'ref':2,
'name':'smalllanding4.img',
'start_frame':150,
'end_frame':450,
'x_center':168,
'y_center':100,
'half_width':12,
'half_height':2
},{
'ref':3,
'name':'smalllanding4.img',
'name':'brwncamp1.img',
'start_frame':390,
'end_frame':570,
'x_center':39,
'y_center':148,
'half_width':37,
'half_height':22
},{
'ref':4,
'name':'brwncamp2.img',
'start_frame':100,
'end_frame':215,
'x_center':122,
'y_center':139,
'half_width':7,
'half_height':7
},{
'ref':5,
'name':'brwncamp2.img',
'start_frame':55,
'end_frame':215,
'x_center':180,
'y_center':136,
'half_width':5,
'half_height':5
},{
'ref':6,
'name':'brwncamp2.img',
'start_frame':456,
'end_frame':600,
'x_center':277,
'y_center':137,
'half_width':8,
'half_height':4
},{
'ref':7,
'name':'brwncamp3.img',
'start_frame':400,
'end_frame':675,
'x_center':36,
'y_center':143,
'half_width':35,
'half_height':28
},{
'ref':8,
'name':'brwncamp5.img',
'start_frame':50,
'end_frame':180,
'x_center':84,
'y_center':125,
'half_width':16,
'half_height':8
},{
'ref':9,
'name':'brwncamp6.img',
'start_frame':420,
'end_frame':800,
'x_center':239,
'y_center':116,
'half_width':20,
'half_height':11
},{
'ref':10,
'name':'brwncamp8.img',
'start_frame':50,
'end_frame':250,
'x_center':72,
'y_center':127,
'half_width':3,
'half_height':10
},{
'ref':12,
'name':'SBPATT5.img',
'start_frame':810,
'end_frame':900,
'x_center':48,
'y_center':128,
'half_width':7,
'half_height':20
},{
'ref':13,
'name':'vons5.img',
'start_frame':510,
'end_frame':700,
'x_center':126,
'y_center':170,
'half_width':54,
'half_height':25
}]
return sequence_list