forked from wk2557/asd123
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EvenAPP_Param.ini
157 lines (120 loc) · 3.61 KB
/
EvenAPP_Param.ini
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#配置文件,注释行必须以#开头,配置行格式为 key = value
#VSDEvent_Param = F:\send_to\VSDEvent.ini
#左转线的坐标,压到这个线表示车辆左转了
TurnLeft.pt1.x = 3810
TurnLeft.pt1.y = 3588
TurnLeft.pt2.x = 2827
TurnLeft.pt2.y = 5247
#右转线的坐标,压到这个线表示车辆左转了
TurnRight.pt1.x = 8154
TurnRight.pt1.y = 3710
TurnRight.pt2.x = 9374
TurnRight.pt2.y = 5657
#直行线的坐标,压到这个线表示车辆保持了直行
Straight.pt1.x = 3589
Straight.pt1.y = 3738
Straight.pt2.x = 7986
Straight.pt2.y = 3831
#停车线坐标
StopLine.pt1.x = 1809
StopLine.pt1.y = 7105
StopLine.pt2.x = 9891
StopLine.pt2.y = 7415
#跟踪中间线,用于采集闯红灯的图片压倒此条线时的图片
CentreLine.pt1.x = 3073
CentreLine.pt1.y = 4466
CentreLine.pt2.x = 9007
CentreLine.pt2.y = 4561
#禁止停车区域,在此矩形区域内禁止停车
StopForbidRect.left = 2542
StopForbidRect.top = 2751
StopForbidRect.right = 9108
StopForbidRect.bottom = 6375
#车辆压车道阈值,超过该阈值表示车辆压车道行驶,取值为[0,1]
CrossRatio = 60
#车辆逆行误差值,在误差值范围内不认为车辆逆行,取值为[0,1]代表前进(后退)距离与车身的比值
ReverseRatio = 20
#车辆停车误差值,在误差值范围内不认为车辆违章停车,取值为[0,1]代表前进(后退)距离与车身的比值
StopRatio = 1
#录制无违章车辆视频的提前和后续帧数
RecordBreakNoneFramAhead = 0
RecordBreakNoneFramBehind = 0
#录制违章左转车辆视频的提前和后续帧数
RecordTurnLeftFramAhead = 30
RecordTurnLeftFramBehind = 0
#录制违章右转车辆视频的提前和后续帧数
RecordTurnRightFramAhead = 30
RecordTurnRightFramBehind = 0
#录制违章直行车辆视频的提前和后续帧数
RecordStraightFramAhead = 30
RecordStraightFramBehind = 0
#录制违章并线车辆视频的提前和后续帧数
RecordCrossLineFramAhead = 25
RecordCrossLineFramBehind = 5
#录制违章逆行车辆视频的提前和后续帧数
RecordReverseFramAhead = 25
RecordReverseFramBehind = 5
#录制违章闯红灯车辆视频的提前和后续帧数
RecordRedLightFramAhead = 20
RecordRedLightFramBehind = 10
#录制违章停车车辆视频的提前和后续帧数
RecordStopFramAhead = 20
RecordStopFramBehind = 10
#录制违章超速车辆视频的提前和后续帧数
RecordHighSpeedFramAhead = 20
RecordHighSpeedFramBehind = 10
#录制违章低速车辆视频的提前和后续帧数
RecordLowSpeedFramAhead = 20
RecordLowSpeedFramBehind = 10
#录制视频的格式,取值范围为EventAPPViedoFormat的值
VideoFormat = 0
#录制视频的比特率
VideoBitFrequent = 10000000
#录制视频的帧率
VideoFramFrequent = 10
#叠加字幕的大小,取值为[0,100]代表与原始最大字幕的比值(例如50代表是原始最大字幕的50%)
FontSize = 50
#叠加字幕的字体,取值为EventAPPFontFamily
FontFamily = 1
#叠加字幕的字体颜色的RGB中的R值
FontRGB_R = 255
#叠加字幕的字体颜色的RGB中的G值
FontRGB_G = 0
#叠加字幕的字体颜色的RGB中的B值
FontRGB_B = 0
#叠加字幕的排列方向,取值为 EventAPPFontOrientation
FontOrientation = 1
#字体摆放位置的坐标X值
FontX = 500
#字体摆放位置的坐标Y值
FontY = 200
#是否捕捉车牌信息
PlateCaptureSwitch = 0
#合成图片的源图片的数目
ImageSynthesisNum = 3
#合成图片的源图片的排放顺序,取值为EventAPPPicOrientatio
ImageSynthesisOrientation = 2
#合成图片时源图片的缩放比例
ImageSynthesisZoom = 50
#各种违规的录制视频的优先级,数字越高表示优先级越高,取值需要大于0
RuleBreakNonePriority = 0
RuleBreakTurnLeftPriority = 1
RuleBreakTurnRightPriority = 2
RuleBreakStraightPriority = 3
RuleBreakCrossPriority = 4
RuleBreakReversePriority = 6
RuleBreakRedLightPriority = 5
RuleBreakStopPriority = 7
RuleBreakHighSpeedPriority = 8
RuleBreakLowSpeedPriority = 9
#各种违规的录制视频的开关,取值范围是0和1。0代表不录视频,1代表录制视频
RuleBreakNoneSwitch = 1
RuleBreakTurnLeftSwitch = 1
RuleBreakTurnRightSwitch = 1
RuleBreakStraightSwitch = 1
RuleBreakCrossSwitch = 1
RuleBreakReverseSwitch = 1
RuleBreakRedLightSwitch = 1
RuleBreakStopSwitch = 1
RuleBreakHighSpeedSwitch = 1
RuleBreakLowSpeedSwitch = 1