GYLH commited on
Commit
ba36309
·
verified ·
1 Parent(s): cbb8d84

Initial upload of RADIUS_DataSet550

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
README.md CHANGED
@@ -1,3 +1,39 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # RADIUS_DataSet550
2
+
3
+ RADIUS_DataSet550 is the first release of the safety-critical long-tail driving scenario dataset. It contains **550 instances** in total, including **500 safety-critical long-tail scenes** and **50 normal scenes**.
4
+
5
+ ## Dataset Contents
6
+ Each instance **X** is released as an image plus JSON sidecars:
7
+
8
+ - `dataX.png`: the rendered driving scene.
9
+ - `dataX.json`: taxonomy and post-decision supervision, including:
10
+ - classification (Level-3)
11
+ - `lt_ele` (dominant element)
12
+ - `acc_factors`
13
+ - `post_dec` (reference level and/or plan text)
14
+ - `dataX_aligned.json`: simulator-ready coarse state for Phase-1 Safety (map/relations/kinematics abstraction).
15
+ - `dataX_gt.json`: pre-decision action tags for Phase-1 scoring (per-action collision/hazard/safe, and optional best action).
16
+
17
+ ## Design Principles
18
+ The schema is intentionally minimal:
19
+
20
+ - `dataX_aligned.json` is only as complex as needed for deterministic Safety rollout.
21
+ - `dataX.json` carries the Phase-2/3 labels required for SAR diagnosis and cross-phase consistency metrics.
22
+
23
+ ## Directory Structure
24
+ ```
25
+ RADIUS_DataSet550/
26
+ ├── json/ # JSON sidecars for each instance
27
+ ├── pic/ # Rendered scene images
28
+ ├── aligned_dataset.py # Utility script for alignment
29
+ ├── example.json
30
+ ├── example_plot.png
31
+ └── README.md
32
+ ```
33
+
34
+ ## Notes
35
+ - File naming follows the `dataX.*` convention across image and JSON sidecars.
36
+ - For benchmark usage, refer to the `RADIUS_benchmark` module documentation.
37
+
38
+ ## License
39
+ This project is released under the terms of the MIT License. The complete license text can be found in the LICENSE file located at the root of this repository.
aligned_dataset.py ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+
4
+
5
+ def generate_pic_related_json(pic_dir, pre_dec_json_dir, gt_json_dir, json_output_dir, example_template_path):
6
+ """
7
+ Generate a JSON annotation file for each PNG image in the given image directory.
8
+
9
+ For every image file under `pic_dir`, this function:
10
+ 1. Loads a JSON template from `example_template_path`.
11
+ 2. Fills in image-related fields (image name, relative paths to image, prediction JSON, and GT JSON).
12
+ 3. Assigns default values to auxiliary annotation fields.
13
+ 4. Writes the resulting JSON file to `json_output_dir`.
14
+
15
+ All file paths stored in the generated JSON are relative to `json_output_dir`,
16
+ which makes the dataset portable across different directory layouts.
17
+
18
+ Parameters
19
+ ----------
20
+ pic_dir : str
21
+ Directory containing PNG image files.
22
+ pre_dec_json_dir : str
23
+ Directory containing pre-decision JSON files (aligned predictions).
24
+ gt_json_dir : str
25
+ Directory containing ground-truth JSON files.
26
+ json_output_dir : str
27
+ Output directory where generated JSON files will be saved.
28
+ example_template_path : str
29
+ Path to the example/template JSON file used as a base structure.
30
+ """
31
+
32
+ # Ensure the output directory exists
33
+ os.makedirs(json_output_dir, exist_ok=True)
34
+
35
+ # Load the example JSON template
36
+ with open(example_template_path, "r", encoding="utf-8") as f:
37
+ template = json.load(f)
38
+
39
+ # Iterate over all PNG images in the image directory
40
+ for pic_filename in os.listdir(pic_dir):
41
+ if not pic_filename.endswith(".png"):
42
+ continue # Only process PNG files
43
+
44
+ # Extract the base name of the image file (e.g., "XXX.png" -> "XXX")
45
+ pic_basename = os.path.splitext(pic_filename)[0]
46
+
47
+ # Construct absolute paths
48
+ pic_full_path = os.path.join(pic_dir, pic_filename)
49
+ gt_json_path = os.path.join(gt_json_dir, f"{pic_basename}_gt.json")
50
+ pre_dec_full_path = os.path.join(pre_dec_json_dir, f"{pic_basename}_aligned.json")
51
+
52
+ # Convert absolute paths to paths relative to the JSON output directory
53
+ # Formula: os.path.relpath(target_path, base_path)
54
+ relative_pic_path = os.path.relpath(pic_full_path, json_output_dir)
55
+ relative_gt_json_path = os.path.relpath(gt_json_path, json_output_dir)
56
+ relative_pre_dec_path = os.path.relpath(pre_dec_full_path, json_output_dir)
57
+
58
+ # Create a new JSON object based on the template and populate required fields
59
+ new_json = template.copy()
60
+ new_json["pic_name"] = pic_basename # Original image base name
61
+ new_json["pic_path"] = relative_pic_path # Relative path to the image file
62
+ new_json["pre_dec_file"] = relative_pre_dec_path # Relative path to pre-decision JSON
63
+ new_json["gt_json_file"] = relative_gt_json_path # Relative path to GT JSON
64
+
65
+ # Fill in other fields with default values (can be customized later)
66
+ new_json["is_longtail"] = "True"
67
+ new_json["Sup_description"] = ""
68
+ new_json["lt_ele"] = ""
69
+ new_json["acc_factors"] = ""
70
+ new_json["COT"] = ""
71
+ new_json["post_dec"] = ""
72
+ new_json["is_transfer2p"] = "No"
73
+
74
+ # Save the generated JSON file
75
+ output_json_path = os.path.join(json_output_dir, f"{pic_basename}.json")
76
+ with open(output_json_path, "w", encoding="utf-8") as f:
77
+ json.dump(new_json, f, indent=2, ensure_ascii=False)
78
+
79
+ print(f"All image-related JSON files have been generated and saved to: {json_output_dir}")
80
+
81
+
82
+ def uniform_rename_files(pic_dir, pre_dec_json_dir, gt_json_dir, json_dir):
83
+ """
84
+ Uniformly rename related files in multiple directories and update JSON contents accordingly.
85
+
86
+ This function processes corresponding groups of files:
87
+ - Image file: XXX.png
88
+ - Pre-decision JSON: XXX_aligned.json
89
+ - Ground-truth JSON: XXX_gt.json
90
+ - Metadata JSON: XXX.json
91
+
92
+ Each group is renamed sequentially to:
93
+ - data1.png, data2.png, ...
94
+ - data1_aligned.json, ...
95
+ - data1_gt.json, ...
96
+ - data1.json, ...
97
+
98
+ After renaming, the function updates the internal fields of the JSON files to:
99
+ - Reflect the new base name (dataX)
100
+ - Maintain relative paths with respect to `json_dir`
101
+
102
+ Parameters
103
+ ----------
104
+ pic_dir : str
105
+ Directory containing image files.
106
+ pre_dec_json_dir : str
107
+ Directory containing pre-decision JSON files.
108
+ gt_json_dir : str
109
+ Directory containing ground-truth JSON files.
110
+ json_dir : str
111
+ Directory containing metadata JSON files (used as the relative path base).
112
+ """
113
+
114
+ # Collect all valid file groups (image + pre-decision JSON + GT JSON + metadata JSON)
115
+ file_groups = []
116
+ for json_filename in os.listdir(json_dir):
117
+ if not json_filename.endswith(".json"):
118
+ continue
119
+
120
+ json_basename = os.path.splitext(json_filename)[0]
121
+
122
+ # Construct corresponding file paths
123
+ pic_path = os.path.join(pic_dir, f"{json_basename}.png")
124
+ pre_dec_path = os.path.join(pre_dec_json_dir, f"{json_basename}_aligned.json")
125
+ gt_json_path = os.path.join(gt_json_dir, f"{json_basename}_gt.json")
126
+ json_path = os.path.join(json_dir, json_filename)
127
+
128
+ # Only include groups where required files exist
129
+ if os.path.exists(pic_path) and os.path.exists(pre_dec_path):
130
+ file_groups.append((pic_path, pre_dec_path, gt_json_path, json_path, json_basename))
131
+ else:
132
+ print(f"Warning: Missing pic/pre_dec files for {json_basename}, skipping this entry.")
133
+
134
+ # Rename files sequentially and update JSON content
135
+ for idx, (pic_path, pre_dec_path, gt_json_path, json_path, old_basename) in enumerate(file_groups, start=1):
136
+ new_basename = f"data{idx}"
137
+
138
+ # 1. Rename image file (XXX.png -> dataX.png)
139
+ new_pic_path = os.path.join(pic_dir, f"{new_basename}.png")
140
+ os.rename(pic_path, new_pic_path)
141
+
142
+ # 2. Rename pre-decision JSON file (XXX_aligned.json -> dataX_aligned.json)
143
+ new_pre_dec_path = os.path.join(pre_dec_json_dir, f"{new_basename}_aligned.json")
144
+ os.rename(pre_dec_path, new_pre_dec_path)
145
+
146
+ # 3. Rename ground-truth JSON file (XXX_gt.json -> dataX_gt.json)
147
+ new_gt_json_path = os.path.join(gt_json_dir, f"{new_basename}_gt.json")
148
+ os.rename(gt_json_path, new_gt_json_path)
149
+
150
+ # 4. Rename metadata JSON file (XXX.json -> dataX.json)
151
+ new_json_path = os.path.join(json_dir, f"{new_basename}.json")
152
+ os.rename(json_path, new_json_path)
153
+
154
+ # Compute new relative paths (relative to json_dir)
155
+ relative_new_pic_path = os.path.relpath(new_pic_path, json_dir)
156
+ relative_new_pre_dec_path = os.path.relpath(new_pre_dec_path, json_dir)
157
+
158
+ # Update fields inside the metadata JSON file
159
+ with open(new_json_path, "r+", encoding="utf-8") as f:
160
+ json_data = json.load(f)
161
+ json_data["pic_name"] = new_basename
162
+ json_data["pic_path"] = relative_new_pic_path
163
+ json_data["pre_dec_file"] = relative_new_pre_dec_path
164
+ json_data["gt_json_file"] = new_gt_json_path
165
+ f.seek(0)
166
+ json.dump(json_data, f, indent=2, ensure_ascii=False)
167
+ f.truncate()
168
+
169
+ # Update the corresponding ground-truth JSON file
170
+ new_gt_json_path_local = os.path.join(gt_json_dir, f"{new_basename}_gt.json")
171
+ with open(new_gt_json_path_local, "r+", encoding="utf-8") as f:
172
+ json_data = json.load(f)
173
+ json_data["source_scene"] = relative_new_pre_dec_path
174
+ f.seek(0)
175
+ json.dump(json_data, f, indent=2, ensure_ascii=False)
176
+ f.truncate()
177
+
178
+ print(f"Completed uniform renaming and JSON updates for {len(file_groups)} file groups.")
179
+
180
+
181
+ if __name__ == "__main__":
182
+
183
+ pic_dir = "pic"
184
+ pre_dec_json_dir = "json/pre_dec_json"
185
+ gt_json_dir = "json/gt_json"
186
+ json_dir = "json"
187
+ example_template_path = "example.json"
188
+
189
+ # Step 1: Generate JSON files corresponding to each image
190
+ # generate_pic_related_json(pic_dir, pre_dec_json_dir, gt_json_dir, json_dir, example_template_path)
191
+
192
+ # Step 2: Uniformly rename files and update JSON contents
193
+ uniform_rename_files(pic_dir, pre_dec_json_dir, gt_json_dir, json_dir)
example.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.1",
4
+ "level3": "1.1.1",
5
+ "pic_name": "....",
6
+ "pic_path": "..../...png",
7
+ "pre_dec_file": ".../...json",
8
+ "gt_json_file": "",
9
+ "is_longtail": "True/False",
10
+ "Sup_description": "........",
11
+ "lt_ele": "Dangerous goods vehicle/pedestrian/.....",
12
+ "acc_factors": "cars passing ahead/Can be bypassed/.....",
13
+ "COT":".......",
14
+ "post_dec": "Reverse evacuation/Stay still/Detour beyond/......",
15
+ "is_transfer2p": "Yes/No"
16
+ }
example_plot.png ADDED

Git LFS Details

  • SHA256: 432d46ded126a2b1716078cae47a8c560057b0eb1bf92c41678441466e36d5d0
  • Pointer size: 131 Bytes
  • Size of remote file: 112 kB
json/data1.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.2",
4
+ "level3": "3.2.1",
5
+ "pic_name": "data1",
6
+ "is_longtail": "True",
7
+ "lt_ele": "Information conflict",
8
+ "acc_factors": [
9
+ "Vehicles ahead",
10
+ "Does not affect own vehicle's passage",
11
+ "Lane-borrowing possible"
12
+ ],
13
+ "Sup_description": "The navigation shows that the road ahead is closed and social vehicles are not allowed to enter.The navigation shows that the road ahead is closed and social vehicles are not allowed to enter.",
14
+ "post_dec": "Park safely and request instructions",
15
+ "pic_path": "..\\pic\\data1.png",
16
+ "pre_dec_file": "pre_dec_json\\data1_aligned.json",
17
+ "gt_json_file": "json/gt_json\\data1_gt.json"
18
+ }
json/data10.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.3",
4
+ "level3": "2.3.1",
5
+ "pic_name": "data10",
6
+ "pre_dec_file": "pre_dec_json\\data10_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data10_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Command signals/temporary signs",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Park safely and request instructions",
17
+ "pic_path": "..\\pic\\data10.png"
18
+ }
json/data100.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.3",
4
+ "level3": "3.3.3",
5
+ "pic_name": "data100",
6
+ "pre_dec_file": "pre_dec_json\\data100_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data100_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality",
11
+ "acc_factors": [
12
+ "No vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Slow down and take a detour",
17
+ "pic_path": "..\\pic\\data100.png"
18
+ }
json/data101.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "",
3
+ "level2": "",
4
+ "level3": "",
5
+ "pic_name": "data101",
6
+ "is_longtail": "False",
7
+ "lt_ele": null,
8
+ "acc_factors": [],
9
+ "Sup_description": "",
10
+ "post_dec": "",
11
+ "pic_path": "..\\pic\\data101.png",
12
+ "pre_dec_file": "pre_dec_json\\data101_aligned.json",
13
+ "gt_json_file": "json/gt_json\\data101_gt.json"
14
+ }
json/data102.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.1",
4
+ "level3": "1.1.3",
5
+ "pic_name": "data102",
6
+ "pre_dec_file": "pre_dec_json\\data102_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data102_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Sand and dust",
11
+ "acc_factors": [
12
+ "No vehicles ahead",
13
+ "Does not affect own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Low-speed straight passage",
17
+ "pic_path": "..\\pic\\data102.png"
18
+ }
json/data103.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.1",
4
+ "level3": "1.1.3",
5
+ "pic_name": "data103",
6
+ "pre_dec_file": "pre_dec_json\\data103_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data103_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Sand and dust",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Does not affect own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Low-speed straight passage",
17
+ "pic_path": "..\\pic\\data103.png"
18
+ }
json/data104.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.3",
4
+ "level3": "1.3.1",
5
+ "pic_name": "data104",
6
+ "pre_dec_file": "pre_dec_json\\data104_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data104_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Hazardous materials transport vehicle accident",
11
+ "acc_factors": [
12
+ "No vehicles ahead",
13
+ "Does not affect own vehicle's passage",
14
+ "No lane-borrowing possibility"
15
+ ],
16
+ "post_dec": "Emergency evacuation based on actual conditions",
17
+ "pic_path": "..\\pic\\data104.png"
18
+ }
json/data105.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.5",
4
+ "level3": "2.5.1",
5
+ "pic_name": "data105",
6
+ "pre_dec_file": "pre_dec_json\\data105_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data105_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Road surface damage-Severe",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Slow down and take a detour",
17
+ "pic_path": "..\\pic\\data105.png"
18
+ }
json/data106.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.5",
4
+ "level3": "2.5.2",
5
+ "pic_name": "data106",
6
+ "pre_dec_file": "pre_dec_json\\data106_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data106_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Road surface damage-Moderate",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Slow down and take a detour",
17
+ "pic_path": "..\\pic\\data106.png"
18
+ }
json/data107.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.4",
4
+ "level3": "1.4.1",
5
+ "pic_name": "data107",
6
+ "is_longtail": "True",
7
+ "lt_ele": "Event control",
8
+ "acc_factors": [
9
+ "No vehicles ahead",
10
+ "Affects own vehicle's passage",
11
+ "No lane-borrowing possibility"
12
+ ],
13
+ "post_dec": "Park safely and replan the route",
14
+ "pic_path": "..\\pic\\data107.png",
15
+ "pre_dec_file": "pre_dec_json\\data107_aligned.json",
16
+ "gt_json_file": "json/gt_json\\data107_gt.json"
17
+ }
json/data108.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.2",
4
+ "level3": "2.2.4",
5
+ "pic_name": "data108",
6
+ "pre_dec_file": "pre_dec_json\\data108_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data108_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "non-motorized vehicle",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Wait for avoidance and proceed straight ahead",
17
+ "pic_path": "..\\pic\\data108.png"
18
+ }
json/data109.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.2",
4
+ "level3": "2.2.1",
5
+ "pic_name": "data109",
6
+ "pre_dec_file": "pre_dec_json\\data109_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data109_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Animals",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Wait for avoidance and proceed straight ahead",
17
+ "pic_path": "..\\pic\\data109.png"
18
+ }
json/data11.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.2",
4
+ "level3": "3.2.1",
5
+ "pic_name": "data11",
6
+ "pre_dec_file": "pre_dec_json\\data11_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data11_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "Navigation information shows that the current road section is closed and impassable",
10
+ "lt_ele": "Information conflict",
11
+ "acc_factors": [
12
+ "No vehicles ahead",
13
+ "Does not affect own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Park safely and request instructions",
17
+ "pic_path": "..\\pic\\data11.png"
18
+ }
json/data110.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.4",
4
+ "level3": "1.4.2",
5
+ "pic_name": "data110",
6
+ "pre_dec_file": "pre_dec_json\\data110_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data110_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Event control",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "No lane-borrowing possibility"
15
+ ],
16
+ "post_dec": "Park safely and replan the route",
17
+ "pic_path": "..\\pic\\data110.png"
18
+ }
json/data111.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.3",
4
+ "level3": "1.3.1",
5
+ "pic_name": "data111",
6
+ "pre_dec_file": "pre_dec_json\\data111_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data111_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Hazardous materials transport vehicle accident",
11
+ "acc_factors": [
12
+ "No vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "No lane-borrowing possibility"
15
+ ],
16
+ "post_dec": "Emergency evacuation based on actual conditions",
17
+ "pic_path": "..\\pic\\data111.png"
18
+ }
json/data112.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.2",
4
+ "level3": "3.2.1",
5
+ "pic_name": "data112",
6
+ "is_longtail": "True",
7
+ "lt_ele": "Information conflict",
8
+ "acc_factors": [
9
+ "Vehicles ahead",
10
+ "Does not affect own vehicle's passage",
11
+ "Lane-borrowing possible"
12
+ ],
13
+ "Sup_description": "The navigation shows that the road ahead is closed and social vehicles are not allowed to enter.The navigation shows that the road ahead is closed and social vehicles are not allowed to enter.",
14
+ "post_dec": "Park safely and request instructions",
15
+ "pic_path": "..\\pic\\data112.png",
16
+ "pre_dec_file": "pre_dec_json\\data112_aligned.json",
17
+ "gt_json_file": "json/gt_json\\data112_gt.json"
18
+ }
json/data113.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "",
3
+ "level2": "",
4
+ "level3": "",
5
+ "pic_name": "data113",
6
+ "is_longtail": "False",
7
+ "lt_ele": null,
8
+ "acc_factors": [],
9
+ "Sup_description": "",
10
+ "post_dec": "",
11
+ "pic_path": "..\\pic\\data113.png",
12
+ "pre_dec_file": "pre_dec_json\\data113_aligned.json",
13
+ "gt_json_file": "json/gt_json\\data113_gt.json"
14
+ }
json/data114.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.4",
4
+ "level3": "1.4.2",
5
+ "pic_name": "data114",
6
+ "pre_dec_file": "pre_dec_json\\data114_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data114_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Event control",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "No lane-borrowing possibility"
15
+ ],
16
+ "post_dec": "Park safely and replan the route",
17
+ "pic_path": "..\\pic\\data114.png"
18
+ }
json/data115.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.3",
4
+ "level3": "1.3.1",
5
+ "pic_name": "data115",
6
+ "pre_dec_file": "pre_dec_json\\data115_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data115_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Hazardous materials transport vehicle accident",
11
+ "acc_factors": [
12
+ "No vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "No lane-borrowing possibility"
15
+ ],
16
+ "post_dec": "Emergency evacuation based on actual conditions",
17
+ "pic_path": "..\\pic\\data115.png"
18
+ }
json/data116.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.3",
4
+ "level3": "1.3.2",
5
+ "pic_name": "data116",
6
+ "pre_dec_file": "pre_dec_json\\data116_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data116_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Large-scale accident",
11
+ "acc_factors": [
12
+ "No vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "No lane-borrowing possibility"
15
+ ],
16
+ "post_dec": "Park safely and replan the route",
17
+ "pic_path": "..\\pic\\data116.png"
18
+ }
json/data117.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.5",
4
+ "level3": "3.5.2",
5
+ "pic_name": "data117",
6
+ "pre_dec_file": "pre_dec_json\\data117_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data117_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Pedestrians",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "No lane-borrowing possibility temporarily"
15
+ ],
16
+ "post_dec": "Wait for avoidance and proceed straight ahead",
17
+ "pic_path": "..\\pic\\data117.png"
18
+ }
json/data118.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.3",
4
+ "level3": "3.3.2",
5
+ "pic_name": "data118",
6
+ "pre_dec_file": "pre_dec_json\\data118_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data118_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Wait for avoidance and proceed straight ahead",
17
+ "pic_path": "..\\pic\\data118.png"
18
+ }
json/data119.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.1",
4
+ "level3": "1.1.1",
5
+ "pic_name": "data119",
6
+ "pre_dec_file": "pre_dec_json\\data119_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data119_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Snowy terrain",
11
+ "acc_factors": [
12
+ "No vehicles ahead",
13
+ "Does not affect own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Low-speed straight passage",
17
+ "pic_path": "..\\pic\\data119.png"
18
+ }
json/data12.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.4",
4
+ "level3": "2.4.2",
5
+ "pic_name": "data12",
6
+ "pre_dec_file": "pre_dec_json\\data12_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data12_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Special vehicles",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour",
17
+ "pic_path": "..\\pic\\data12.png"
18
+ }
json/data120.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.1",
4
+ "level3": "3.1.2",
5
+ "pic_name": "data120",
6
+ "pre_dec_file": "pre_dec_json\\data120_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data120_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Abnormal traffic flow-Lane change",
11
+ "acc_factors": [
12
+ "No vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "No lane-borrowing possibility"
15
+ ],
16
+ "post_dec": "Wait for avoidance and proceed straight ahead",
17
+ "pic_path": "..\\pic\\data120.png"
18
+ }
json/data121.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.3",
4
+ "level3": "3.3.3",
5
+ "pic_name": "data121",
6
+ "pre_dec_file": "pre_dec_json\\data121_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data121_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour",
17
+ "pic_path": "..\\pic\\data121.png"
18
+ }
json/data122.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.2",
4
+ "level3": "2.2.1",
5
+ "pic_name": "data122",
6
+ "pre_dec_file": "pre_dec_json\\data122_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data122_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Animals",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Wait for avoidance and proceed straight ahead",
17
+ "pic_path": "..\\pic\\data122.png"
18
+ }
json/data123.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.5",
4
+ "level3": "3.5.1",
5
+ "pic_name": "data123",
6
+ "pre_dec_file": "pre_dec_json\\data123_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data123_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Ground obstacle",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Slow down and take a detour",
17
+ "pic_path": "..\\pic\\data123.png"
18
+ }
json/data124.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "",
3
+ "level2": "",
4
+ "level3": "",
5
+ "pic_name": "data124",
6
+ "is_longtail": "False",
7
+ "lt_ele": null,
8
+ "acc_factors": [],
9
+ "Sup_description": "",
10
+ "post_dec": "",
11
+ "pic_path": "..\\pic\\data124.png",
12
+ "pre_dec_file": "pre_dec_json\\data124_aligned.json",
13
+ "gt_json_file": "json/gt_json\\data124_gt.json"
14
+ }
json/data125.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.3",
4
+ "level3": "3.3.3",
5
+ "pic_name": "data125",
6
+ "pre_dec_file": "pre_dec_json\\data125_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data125_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour",
17
+ "pic_path": "..\\pic\\data125.png"
18
+ }
json/data126.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.5",
4
+ "level3": "2.5.1",
5
+ "pic_name": "data126",
6
+ "pre_dec_file": "pre_dec_json\\data126_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data126_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Road surface damage-Severe",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Slow down and take a detour",
17
+ "pic_path": "..\\pic\\data126.png"
18
+ }
json/data127.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.3",
4
+ "level3": "3.3.3",
5
+ "pic_name": "data127",
6
+ "pre_dec_file": "pre_dec_json\\data127_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data127_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour",
17
+ "pic_path": "..\\pic\\data127.png"
18
+ }
json/data128.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.5",
4
+ "level3": "2.5.1",
5
+ "pic_name": "data128",
6
+ "pre_dec_file": "pre_dec_json\\data128_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data128_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Road surface damage-Severe",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Slow down and take a detour",
17
+ "pic_path": "..\\pic\\data128.png"
18
+ }
json/data129.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.5",
4
+ "level3": "2.5.1",
5
+ "pic_name": "data129",
6
+ "pre_dec_file": "pre_dec_json\\data129_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data129_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Road surface damage-Severe",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Slow down and take a detour",
17
+ "pic_path": "..\\pic\\data129.png"
18
+ }
json/data13.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "",
3
+ "level2": "",
4
+ "level3": "",
5
+ "pic_name": "data13",
6
+ "is_longtail": "False",
7
+ "lt_ele": "",
8
+ "acc_factors": [],
9
+ "Sup_description": "",
10
+ "post_dec": "",
11
+ "pic_path": "..\\pic\\data13.png",
12
+ "pre_dec_file": "pre_dec_json\\data13_aligned.json",
13
+ "gt_json_file": "json/gt_json\\data13_gt.json"
14
+ }
json/data130.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.1",
4
+ "level3": "2.1.1",
5
+ "pic_name": "data130",
6
+ "pre_dec_file": "pre_dec_json\\data130_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data130_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Ground obstacle",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Low-speed straight passage",
17
+ "pic_path": "..\\pic\\data130.png"
18
+ }
json/data131.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.4",
4
+ "level3": "1.4.1",
5
+ "pic_name": "data131",
6
+ "is_longtail": "True",
7
+ "lt_ele": "Event control",
8
+ "acc_factors": [
9
+ "Vehicles ahead",
10
+ "Affects own vehicle's passage",
11
+ "No lane-borrowing possibility"
12
+ ],
13
+ "post_dec": "Park safely and replan the route",
14
+ "pic_path": "..\\pic\\data131.png",
15
+ "pre_dec_file": "pre_dec_json\\data131_aligned.json",
16
+ "gt_json_file": "json/gt_json\\data131_gt.json"
17
+ }
json/data132.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.2",
4
+ "level3": "1.2.2",
5
+ "pic_name": "data132",
6
+ "pre_dec_file": "pre_dec_json\\data132_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data132_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Large-scale equipment",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "No lane-borrowing possibility"
15
+ ],
16
+ "post_dec": "Park safely and replan the route",
17
+ "pic_path": "..\\pic\\data132.png"
18
+ }
json/data133.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.5",
4
+ "level3": "3.5.1",
5
+ "pic_name": "data133",
6
+ "pre_dec_file": "pre_dec_json\\data133_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data133_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Ground obstacle",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Slow down and take a detour",
17
+ "pic_path": "..\\pic\\data133.png"
18
+ }
json/data134.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "",
3
+ "level2": "",
4
+ "level3": "",
5
+ "pic_name": "data134",
6
+ "pre_dec_file": "pre_dec_json\\data134_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data134_gt.json",
8
+ "is_longtail": "False",
9
+ "Sup_description": "",
10
+ "lt_ele": "",
11
+ "acc_factors": [],
12
+ "post_dec": "",
13
+ "pic_path": "..\\pic\\data134.png"
14
+ }
json/data135.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "",
3
+ "level2": "",
4
+ "level3": "",
5
+ "pic_name": "data135",
6
+ "is_longtail": "False",
7
+ "lt_ele": null,
8
+ "acc_factors": [],
9
+ "Sup_description": "",
10
+ "post_dec": "",
11
+ "pic_path": "..\\pic\\data135.png",
12
+ "pre_dec_file": "pre_dec_json\\data135_aligned.json",
13
+ "gt_json_file": "json/gt_json\\data135_gt.json"
14
+ }
json/data136.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "1",
3
+ "level2": "1.2",
4
+ "level3": "1.2.1",
5
+ "pic_name": "data136",
6
+ "pre_dec_file": "pre_dec_json\\data136_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data136_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Construction work",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "No lane-borrowing possibility"
15
+ ],
16
+ "post_dec": "Park safely and replan the route",
17
+ "pic_path": "..\\pic\\data136.png"
18
+ }
json/data137.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.5",
4
+ "level3": "2.5.1",
5
+ "pic_name": "data137",
6
+ "pre_dec_file": "pre_dec_json\\data137_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data137_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Road surface damage-Severe",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Slow down and take a detour",
17
+ "pic_path": "..\\pic\\data137.png"
18
+ }
json/data138.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "3",
3
+ "level2": "3.5",
4
+ "level3": "3.5.1",
5
+ "pic_name": "data138",
6
+ "pre_dec_file": "pre_dec_json\\data138_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data138_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Ground obstacle",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "No lane-borrowing possibility temporarily"
15
+ ],
16
+ "post_dec": "Wait for avoidance and take a detour",
17
+ "pic_path": "..\\pic\\data138.png"
18
+ }
json/data139.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.1",
4
+ "level3": "2.1.2",
5
+ "pic_name": "data139",
6
+ "pre_dec_file": "pre_dec_json\\data139_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data139_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Falling objects from above",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "No lane-borrowing possibility temporarily"
15
+ ],
16
+ "post_dec": "Wait for avoidance and take a detour",
17
+ "pic_path": "..\\pic\\data139.png"
18
+ }
json/data14.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "level1": "2",
3
+ "level2": "2.5",
4
+ "level3": "2.5.1",
5
+ "pic_name": "data14",
6
+ "pre_dec_file": "pre_dec_json\\data14_aligned.json",
7
+ "gt_json_file": "json/gt_json\\data14_gt.json",
8
+ "is_longtail": "True",
9
+ "Sup_description": "",
10
+ "lt_ele": "Road surface damage-Severe",
11
+ "acc_factors": [
12
+ "Vehicles ahead",
13
+ "Affects own vehicle's passage",
14
+ "Lane-borrowing possible"
15
+ ],
16
+ "post_dec": "Slow down and take a detour",
17
+ "pic_path": "..\\pic\\data14.png"
18
+ }