diff --git a/README.md b/README.md index 7be5fc7f47d5db027d120b8024982df93db95b74..36cee647602695793e76d13083dd6139758c327e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,39 @@ ---- -license: mit ---- +# RADIUS_DataSet550 + +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**. + +## Dataset Contents +Each instance **X** is released as an image plus JSON sidecars: + +- `dataX.png`: the rendered driving scene. +- `dataX.json`: taxonomy and post-decision supervision, including: + - classification (Level-3) + - `lt_ele` (dominant element) + - `acc_factors` + - `post_dec` (reference level and/or plan text) +- `dataX_aligned.json`: simulator-ready coarse state for Phase-1 Safety (map/relations/kinematics abstraction). +- `dataX_gt.json`: pre-decision action tags for Phase-1 scoring (per-action collision/hazard/safe, and optional best action). + +## Design Principles +The schema is intentionally minimal: + +- `dataX_aligned.json` is only as complex as needed for deterministic Safety rollout. +- `dataX.json` carries the Phase-2/3 labels required for SAR diagnosis and cross-phase consistency metrics. + +## Directory Structure +``` +RADIUS_DataSet550/ +├── json/ # JSON sidecars for each instance +├── pic/ # Rendered scene images +├── aligned_dataset.py # Utility script for alignment +├── example.json +├── example_plot.png +└── README.md +``` + +## Notes +- File naming follows the `dataX.*` convention across image and JSON sidecars. +- For benchmark usage, refer to the `RADIUS_benchmark` module documentation. + +## License +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. \ No newline at end of file diff --git a/aligned_dataset.py b/aligned_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..e5628d3eaa59db6d371c8bd7e3a2536d934dab10 --- /dev/null +++ b/aligned_dataset.py @@ -0,0 +1,193 @@ +import os +import json + + +def generate_pic_related_json(pic_dir, pre_dec_json_dir, gt_json_dir, json_output_dir, example_template_path): + """ + Generate a JSON annotation file for each PNG image in the given image directory. + + For every image file under `pic_dir`, this function: + 1. Loads a JSON template from `example_template_path`. + 2. Fills in image-related fields (image name, relative paths to image, prediction JSON, and GT JSON). + 3. Assigns default values to auxiliary annotation fields. + 4. Writes the resulting JSON file to `json_output_dir`. + + All file paths stored in the generated JSON are relative to `json_output_dir`, + which makes the dataset portable across different directory layouts. + + Parameters + ---------- + pic_dir : str + Directory containing PNG image files. + pre_dec_json_dir : str + Directory containing pre-decision JSON files (aligned predictions). + gt_json_dir : str + Directory containing ground-truth JSON files. + json_output_dir : str + Output directory where generated JSON files will be saved. + example_template_path : str + Path to the example/template JSON file used as a base structure. + """ + + # Ensure the output directory exists + os.makedirs(json_output_dir, exist_ok=True) + + # Load the example JSON template + with open(example_template_path, "r", encoding="utf-8") as f: + template = json.load(f) + + # Iterate over all PNG images in the image directory + for pic_filename in os.listdir(pic_dir): + if not pic_filename.endswith(".png"): + continue # Only process PNG files + + # Extract the base name of the image file (e.g., "XXX.png" -> "XXX") + pic_basename = os.path.splitext(pic_filename)[0] + + # Construct absolute paths + pic_full_path = os.path.join(pic_dir, pic_filename) + gt_json_path = os.path.join(gt_json_dir, f"{pic_basename}_gt.json") + pre_dec_full_path = os.path.join(pre_dec_json_dir, f"{pic_basename}_aligned.json") + + # Convert absolute paths to paths relative to the JSON output directory + # Formula: os.path.relpath(target_path, base_path) + relative_pic_path = os.path.relpath(pic_full_path, json_output_dir) + relative_gt_json_path = os.path.relpath(gt_json_path, json_output_dir) + relative_pre_dec_path = os.path.relpath(pre_dec_full_path, json_output_dir) + + # Create a new JSON object based on the template and populate required fields + new_json = template.copy() + new_json["pic_name"] = pic_basename # Original image base name + new_json["pic_path"] = relative_pic_path # Relative path to the image file + new_json["pre_dec_file"] = relative_pre_dec_path # Relative path to pre-decision JSON + new_json["gt_json_file"] = relative_gt_json_path # Relative path to GT JSON + + # Fill in other fields with default values (can be customized later) + new_json["is_longtail"] = "True" + new_json["Sup_description"] = "" + new_json["lt_ele"] = "" + new_json["acc_factors"] = "" + new_json["COT"] = "" + new_json["post_dec"] = "" + new_json["is_transfer2p"] = "No" + + # Save the generated JSON file + output_json_path = os.path.join(json_output_dir, f"{pic_basename}.json") + with open(output_json_path, "w", encoding="utf-8") as f: + json.dump(new_json, f, indent=2, ensure_ascii=False) + + print(f"All image-related JSON files have been generated and saved to: {json_output_dir}") + + +def uniform_rename_files(pic_dir, pre_dec_json_dir, gt_json_dir, json_dir): + """ + Uniformly rename related files in multiple directories and update JSON contents accordingly. + + This function processes corresponding groups of files: + - Image file: XXX.png + - Pre-decision JSON: XXX_aligned.json + - Ground-truth JSON: XXX_gt.json + - Metadata JSON: XXX.json + + Each group is renamed sequentially to: + - data1.png, data2.png, ... + - data1_aligned.json, ... + - data1_gt.json, ... + - data1.json, ... + + After renaming, the function updates the internal fields of the JSON files to: + - Reflect the new base name (dataX) + - Maintain relative paths with respect to `json_dir` + + Parameters + ---------- + pic_dir : str + Directory containing image files. + pre_dec_json_dir : str + Directory containing pre-decision JSON files. + gt_json_dir : str + Directory containing ground-truth JSON files. + json_dir : str + Directory containing metadata JSON files (used as the relative path base). + """ + + # Collect all valid file groups (image + pre-decision JSON + GT JSON + metadata JSON) + file_groups = [] + for json_filename in os.listdir(json_dir): + if not json_filename.endswith(".json"): + continue + + json_basename = os.path.splitext(json_filename)[0] + + # Construct corresponding file paths + pic_path = os.path.join(pic_dir, f"{json_basename}.png") + pre_dec_path = os.path.join(pre_dec_json_dir, f"{json_basename}_aligned.json") + gt_json_path = os.path.join(gt_json_dir, f"{json_basename}_gt.json") + json_path = os.path.join(json_dir, json_filename) + + # Only include groups where required files exist + if os.path.exists(pic_path) and os.path.exists(pre_dec_path): + file_groups.append((pic_path, pre_dec_path, gt_json_path, json_path, json_basename)) + else: + print(f"Warning: Missing pic/pre_dec files for {json_basename}, skipping this entry.") + + # Rename files sequentially and update JSON content + for idx, (pic_path, pre_dec_path, gt_json_path, json_path, old_basename) in enumerate(file_groups, start=1): + new_basename = f"data{idx}" + + # 1. Rename image file (XXX.png -> dataX.png) + new_pic_path = os.path.join(pic_dir, f"{new_basename}.png") + os.rename(pic_path, new_pic_path) + + # 2. Rename pre-decision JSON file (XXX_aligned.json -> dataX_aligned.json) + new_pre_dec_path = os.path.join(pre_dec_json_dir, f"{new_basename}_aligned.json") + os.rename(pre_dec_path, new_pre_dec_path) + + # 3. Rename ground-truth JSON file (XXX_gt.json -> dataX_gt.json) + new_gt_json_path = os.path.join(gt_json_dir, f"{new_basename}_gt.json") + os.rename(gt_json_path, new_gt_json_path) + + # 4. Rename metadata JSON file (XXX.json -> dataX.json) + new_json_path = os.path.join(json_dir, f"{new_basename}.json") + os.rename(json_path, new_json_path) + + # Compute new relative paths (relative to json_dir) + relative_new_pic_path = os.path.relpath(new_pic_path, json_dir) + relative_new_pre_dec_path = os.path.relpath(new_pre_dec_path, json_dir) + + # Update fields inside the metadata JSON file + with open(new_json_path, "r+", encoding="utf-8") as f: + json_data = json.load(f) + json_data["pic_name"] = new_basename + json_data["pic_path"] = relative_new_pic_path + json_data["pre_dec_file"] = relative_new_pre_dec_path + json_data["gt_json_file"] = new_gt_json_path + f.seek(0) + json.dump(json_data, f, indent=2, ensure_ascii=False) + f.truncate() + + # Update the corresponding ground-truth JSON file + new_gt_json_path_local = os.path.join(gt_json_dir, f"{new_basename}_gt.json") + with open(new_gt_json_path_local, "r+", encoding="utf-8") as f: + json_data = json.load(f) + json_data["source_scene"] = relative_new_pre_dec_path + f.seek(0) + json.dump(json_data, f, indent=2, ensure_ascii=False) + f.truncate() + + print(f"Completed uniform renaming and JSON updates for {len(file_groups)} file groups.") + + +if __name__ == "__main__": + + pic_dir = "pic" + pre_dec_json_dir = "json/pre_dec_json" + gt_json_dir = "json/gt_json" + json_dir = "json" + example_template_path = "example.json" + + # Step 1: Generate JSON files corresponding to each image + # generate_pic_related_json(pic_dir, pre_dec_json_dir, gt_json_dir, json_dir, example_template_path) + + # Step 2: Uniformly rename files and update JSON contents + uniform_rename_files(pic_dir, pre_dec_json_dir, gt_json_dir, json_dir) diff --git a/example.json b/example.json new file mode 100644 index 0000000000000000000000000000000000000000..22249edac60c2abd048108bfcf39843a67911378 --- /dev/null +++ b/example.json @@ -0,0 +1,16 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "....", + "pic_path": "..../...png", + "pre_dec_file": ".../...json", + "gt_json_file": "", + "is_longtail": "True/False", + "Sup_description": "........", + "lt_ele": "Dangerous goods vehicle/pedestrian/.....", + "acc_factors": "cars passing ahead/Can be bypassed/.....", + "COT":".......", + "post_dec": "Reverse evacuation/Stay still/Detour beyond/......", + "is_transfer2p": "Yes/No" +} \ No newline at end of file diff --git a/example_plot.png b/example_plot.png new file mode 100644 index 0000000000000000000000000000000000000000..6d22cc44523e1805636629f83cf8ff5d6a806c87 --- /dev/null +++ b/example_plot.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432d46ded126a2b1716078cae47a8c560057b0eb1bf92c41678441466e36d5d0 +size 112405 diff --git a/json/data1.json b/json/data1.json new file mode 100644 index 0000000000000000000000000000000000000000..a04602a1eecc9ddaa72425624d215922d75a968a --- /dev/null +++ b/json/data1.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data1", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data1.png", + "pre_dec_file": "pre_dec_json\\data1_aligned.json", + "gt_json_file": "json/gt_json\\data1_gt.json" +} \ No newline at end of file diff --git a/json/data10.json b/json/data10.json new file mode 100644 index 0000000000000000000000000000000000000000..d6dbce7e6757e4e2145baaf8ddda6609a88a583f --- /dev/null +++ b/json/data10.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data10", + "pre_dec_file": "pre_dec_json\\data10_aligned.json", + "gt_json_file": "json/gt_json\\data10_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data10.png" +} \ No newline at end of file diff --git a/json/data100.json b/json/data100.json new file mode 100644 index 0000000000000000000000000000000000000000..422c84cb7e292be968038dbaaa9beefdec7c09cb --- /dev/null +++ b/json/data100.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data100", + "pre_dec_file": "pre_dec_json\\data100_aligned.json", + "gt_json_file": "json/gt_json\\data100_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data100.png" +} \ No newline at end of file diff --git a/json/data101.json b/json/data101.json new file mode 100644 index 0000000000000000000000000000000000000000..4fd11ee641e936f11fffb7ca66c46e030f7bdb20 --- /dev/null +++ b/json/data101.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data101", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data101.png", + "pre_dec_file": "pre_dec_json\\data101_aligned.json", + "gt_json_file": "json/gt_json\\data101_gt.json" +} \ No newline at end of file diff --git a/json/data102.json b/json/data102.json new file mode 100644 index 0000000000000000000000000000000000000000..a6b18dc840c9a739042130bd14ac55cb360d1879 --- /dev/null +++ b/json/data102.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.3", + "pic_name": "data102", + "pre_dec_file": "pre_dec_json\\data102_aligned.json", + "gt_json_file": "json/gt_json\\data102_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Sand and dust", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data102.png" +} \ No newline at end of file diff --git a/json/data103.json b/json/data103.json new file mode 100644 index 0000000000000000000000000000000000000000..6069e5b995351ca45a93e5150427a1dca97cff9e --- /dev/null +++ b/json/data103.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.3", + "pic_name": "data103", + "pre_dec_file": "pre_dec_json\\data103_aligned.json", + "gt_json_file": "json/gt_json\\data103_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Sand and dust", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data103.png" +} \ No newline at end of file diff --git a/json/data104.json b/json/data104.json new file mode 100644 index 0000000000000000000000000000000000000000..92f2cdd1902e3fe02bfc71fde66a6e8b5e4a6abf --- /dev/null +++ b/json/data104.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data104", + "pre_dec_file": "pre_dec_json\\data104_aligned.json", + "gt_json_file": "json/gt_json\\data104_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data104.png" +} \ No newline at end of file diff --git a/json/data105.json b/json/data105.json new file mode 100644 index 0000000000000000000000000000000000000000..ed21dad3c2776fd5f0d0a5c44a75e771a68fc7dc --- /dev/null +++ b/json/data105.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data105", + "pre_dec_file": "pre_dec_json\\data105_aligned.json", + "gt_json_file": "json/gt_json\\data105_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data105.png" +} \ No newline at end of file diff --git a/json/data106.json b/json/data106.json new file mode 100644 index 0000000000000000000000000000000000000000..4c9ea2d383ad798673841d8fd98f636eafd5d7db --- /dev/null +++ b/json/data106.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data106", + "pre_dec_file": "pre_dec_json\\data106_aligned.json", + "gt_json_file": "json/gt_json\\data106_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data106.png" +} \ No newline at end of file diff --git a/json/data107.json b/json/data107.json new file mode 100644 index 0000000000000000000000000000000000000000..cc0ee0920f6ec5cb1180674c30d1498672480231 --- /dev/null +++ b/json/data107.json @@ -0,0 +1,17 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data107", + "is_longtail": "True", + "lt_ele": "Event control", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data107.png", + "pre_dec_file": "pre_dec_json\\data107_aligned.json", + "gt_json_file": "json/gt_json\\data107_gt.json" +} \ No newline at end of file diff --git a/json/data108.json b/json/data108.json new file mode 100644 index 0000000000000000000000000000000000000000..832e59dfd43bec03af06a2e7c1e70d7623d52613 --- /dev/null +++ b/json/data108.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.4", + "pic_name": "data108", + "pre_dec_file": "pre_dec_json\\data108_aligned.json", + "gt_json_file": "json/gt_json\\data108_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "non-motorized vehicle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data108.png" +} \ No newline at end of file diff --git a/json/data109.json b/json/data109.json new file mode 100644 index 0000000000000000000000000000000000000000..8bcdf21b595854e0a1d6b5b206c11b3b05eccb99 --- /dev/null +++ b/json/data109.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data109", + "pre_dec_file": "pre_dec_json\\data109_aligned.json", + "gt_json_file": "json/gt_json\\data109_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data109.png" +} \ No newline at end of file diff --git a/json/data11.json b/json/data11.json new file mode 100644 index 0000000000000000000000000000000000000000..693e7bd535fe253687f3a6b60551edd375ff9d73 --- /dev/null +++ b/json/data11.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data11", + "pre_dec_file": "pre_dec_json\\data11_aligned.json", + "gt_json_file": "json/gt_json\\data11_gt.json", + "is_longtail": "True", + "Sup_description": "Navigation information shows that the current road section is closed and impassable", + "lt_ele": "Information conflict", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data11.png" +} \ No newline at end of file diff --git a/json/data110.json b/json/data110.json new file mode 100644 index 0000000000000000000000000000000000000000..74000ba97cb4e95de8e5bcb37d4f87d0192f07fd --- /dev/null +++ b/json/data110.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data110", + "pre_dec_file": "pre_dec_json\\data110_aligned.json", + "gt_json_file": "json/gt_json\\data110_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data110.png" +} \ No newline at end of file diff --git a/json/data111.json b/json/data111.json new file mode 100644 index 0000000000000000000000000000000000000000..2f48ead7feea2c2dbb3b75c89742bcf18810080a --- /dev/null +++ b/json/data111.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data111", + "pre_dec_file": "pre_dec_json\\data111_aligned.json", + "gt_json_file": "json/gt_json\\data111_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data111.png" +} \ No newline at end of file diff --git a/json/data112.json b/json/data112.json new file mode 100644 index 0000000000000000000000000000000000000000..e949772a6ca7edd32171608631f1be9fd992a408 --- /dev/null +++ b/json/data112.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data112", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data112.png", + "pre_dec_file": "pre_dec_json\\data112_aligned.json", + "gt_json_file": "json/gt_json\\data112_gt.json" +} \ No newline at end of file diff --git a/json/data113.json b/json/data113.json new file mode 100644 index 0000000000000000000000000000000000000000..894bfff5503a5d08f3bfb7eb37f7a320f7b14f38 --- /dev/null +++ b/json/data113.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data113", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data113.png", + "pre_dec_file": "pre_dec_json\\data113_aligned.json", + "gt_json_file": "json/gt_json\\data113_gt.json" +} \ No newline at end of file diff --git a/json/data114.json b/json/data114.json new file mode 100644 index 0000000000000000000000000000000000000000..042b8388bebb2a811cb24c8e3b6be86b7836ed96 --- /dev/null +++ b/json/data114.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data114", + "pre_dec_file": "pre_dec_json\\data114_aligned.json", + "gt_json_file": "json/gt_json\\data114_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data114.png" +} \ No newline at end of file diff --git a/json/data115.json b/json/data115.json new file mode 100644 index 0000000000000000000000000000000000000000..bfc5fbc4674edb8e297aa49a3ef39f1f3ac00888 --- /dev/null +++ b/json/data115.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data115", + "pre_dec_file": "pre_dec_json\\data115_aligned.json", + "gt_json_file": "json/gt_json\\data115_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data115.png" +} \ No newline at end of file diff --git a/json/data116.json b/json/data116.json new file mode 100644 index 0000000000000000000000000000000000000000..a4fbbfc51b946f6881c5ef84594bbbcb9b9b3a0e --- /dev/null +++ b/json/data116.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data116", + "pre_dec_file": "pre_dec_json\\data116_aligned.json", + "gt_json_file": "json/gt_json\\data116_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data116.png" +} \ No newline at end of file diff --git a/json/data117.json b/json/data117.json new file mode 100644 index 0000000000000000000000000000000000000000..9841efc1c17ea0136041838104c715d59aac6072 --- /dev/null +++ b/json/data117.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.2", + "pic_name": "data117", + "pre_dec_file": "pre_dec_json\\data117_aligned.json", + "gt_json_file": "json/gt_json\\data117_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data117.png" +} \ No newline at end of file diff --git a/json/data118.json b/json/data118.json new file mode 100644 index 0000000000000000000000000000000000000000..557581ebbeed2b5cfdd3b029c3efa306a7162336 --- /dev/null +++ b/json/data118.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data118", + "pre_dec_file": "pre_dec_json\\data118_aligned.json", + "gt_json_file": "json/gt_json\\data118_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data118.png" +} \ No newline at end of file diff --git a/json/data119.json b/json/data119.json new file mode 100644 index 0000000000000000000000000000000000000000..1b604463d0d526107dc18eab9621a06585d2f7f5 --- /dev/null +++ b/json/data119.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data119", + "pre_dec_file": "pre_dec_json\\data119_aligned.json", + "gt_json_file": "json/gt_json\\data119_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data119.png" +} \ No newline at end of file diff --git a/json/data12.json b/json/data12.json new file mode 100644 index 0000000000000000000000000000000000000000..61463c3571f72ac2167774ad65bfe7e1490914b2 --- /dev/null +++ b/json/data12.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data12", + "pre_dec_file": "pre_dec_json\\data12_aligned.json", + "gt_json_file": "json/gt_json\\data12_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data12.png" +} \ No newline at end of file diff --git a/json/data120.json b/json/data120.json new file mode 100644 index 0000000000000000000000000000000000000000..95c28562b95077143e67924d7ff34da0370ee9d4 --- /dev/null +++ b/json/data120.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.2", + "pic_name": "data120", + "pre_dec_file": "pre_dec_json\\data120_aligned.json", + "gt_json_file": "json/gt_json\\data120_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-Lane change", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data120.png" +} \ No newline at end of file diff --git a/json/data121.json b/json/data121.json new file mode 100644 index 0000000000000000000000000000000000000000..d447a942faa5d315aa8530e05276887d838807ad --- /dev/null +++ b/json/data121.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data121", + "pre_dec_file": "pre_dec_json\\data121_aligned.json", + "gt_json_file": "json/gt_json\\data121_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data121.png" +} \ No newline at end of file diff --git a/json/data122.json b/json/data122.json new file mode 100644 index 0000000000000000000000000000000000000000..ec9cfef9baf10c67e1f5cbbad72b1cbbd56e2e16 --- /dev/null +++ b/json/data122.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data122", + "pre_dec_file": "pre_dec_json\\data122_aligned.json", + "gt_json_file": "json/gt_json\\data122_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data122.png" +} \ No newline at end of file diff --git a/json/data123.json b/json/data123.json new file mode 100644 index 0000000000000000000000000000000000000000..a8eeb34fd2ca7a1cb548da51e5573819d7886571 --- /dev/null +++ b/json/data123.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.1", + "pic_name": "data123", + "pre_dec_file": "pre_dec_json\\data123_aligned.json", + "gt_json_file": "json/gt_json\\data123_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data123.png" +} \ No newline at end of file diff --git a/json/data124.json b/json/data124.json new file mode 100644 index 0000000000000000000000000000000000000000..0c8f95a3754b67c81f889a6ea30c526558317c8a --- /dev/null +++ b/json/data124.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data124", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data124.png", + "pre_dec_file": "pre_dec_json\\data124_aligned.json", + "gt_json_file": "json/gt_json\\data124_gt.json" +} \ No newline at end of file diff --git a/json/data125.json b/json/data125.json new file mode 100644 index 0000000000000000000000000000000000000000..f3ca7cac31c04df68cc677de853894b13f736f78 --- /dev/null +++ b/json/data125.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data125", + "pre_dec_file": "pre_dec_json\\data125_aligned.json", + "gt_json_file": "json/gt_json\\data125_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data125.png" +} \ No newline at end of file diff --git a/json/data126.json b/json/data126.json new file mode 100644 index 0000000000000000000000000000000000000000..019139cd28c484b7fe1a43e0e0c4ab9763940458 --- /dev/null +++ b/json/data126.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data126", + "pre_dec_file": "pre_dec_json\\data126_aligned.json", + "gt_json_file": "json/gt_json\\data126_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data126.png" +} \ No newline at end of file diff --git a/json/data127.json b/json/data127.json new file mode 100644 index 0000000000000000000000000000000000000000..ee8dbf92f5cf2fc1dd95e47e8f2a0eb9330b5a1c --- /dev/null +++ b/json/data127.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data127", + "pre_dec_file": "pre_dec_json\\data127_aligned.json", + "gt_json_file": "json/gt_json\\data127_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data127.png" +} \ No newline at end of file diff --git a/json/data128.json b/json/data128.json new file mode 100644 index 0000000000000000000000000000000000000000..69d211ffb9fe6ff5aa0ce71d4e00ca3c9d0dd978 --- /dev/null +++ b/json/data128.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data128", + "pre_dec_file": "pre_dec_json\\data128_aligned.json", + "gt_json_file": "json/gt_json\\data128_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data128.png" +} \ No newline at end of file diff --git a/json/data129.json b/json/data129.json new file mode 100644 index 0000000000000000000000000000000000000000..4289ec2c8d9013d00de0e7cad5c3623b2e109817 --- /dev/null +++ b/json/data129.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data129", + "pre_dec_file": "pre_dec_json\\data129_aligned.json", + "gt_json_file": "json/gt_json\\data129_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data129.png" +} \ No newline at end of file diff --git a/json/data13.json b/json/data13.json new file mode 100644 index 0000000000000000000000000000000000000000..ce6d2227b53b19f669b1835877e1fafb7eeec85a --- /dev/null +++ b/json/data13.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data13", + "is_longtail": "False", + "lt_ele": "", + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data13.png", + "pre_dec_file": "pre_dec_json\\data13_aligned.json", + "gt_json_file": "json/gt_json\\data13_gt.json" +} \ No newline at end of file diff --git a/json/data130.json b/json/data130.json new file mode 100644 index 0000000000000000000000000000000000000000..047f4f71e8e248fc33100d9ace11837e96414414 --- /dev/null +++ b/json/data130.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data130", + "pre_dec_file": "pre_dec_json\\data130_aligned.json", + "gt_json_file": "json/gt_json\\data130_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data130.png" +} \ No newline at end of file diff --git a/json/data131.json b/json/data131.json new file mode 100644 index 0000000000000000000000000000000000000000..57f0c2f51f338f9a0d409e560c90c203ac162abf --- /dev/null +++ b/json/data131.json @@ -0,0 +1,17 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data131", + "is_longtail": "True", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data131.png", + "pre_dec_file": "pre_dec_json\\data131_aligned.json", + "gt_json_file": "json/gt_json\\data131_gt.json" +} \ No newline at end of file diff --git a/json/data132.json b/json/data132.json new file mode 100644 index 0000000000000000000000000000000000000000..5f3e7e6babd1a74d5d1acee1fe0f96bb500c8504 --- /dev/null +++ b/json/data132.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data132", + "pre_dec_file": "pre_dec_json\\data132_aligned.json", + "gt_json_file": "json/gt_json\\data132_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data132.png" +} \ No newline at end of file diff --git a/json/data133.json b/json/data133.json new file mode 100644 index 0000000000000000000000000000000000000000..d6d6b0405ec0ee0bd224be2a263cceeea4cecf62 --- /dev/null +++ b/json/data133.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.1", + "pic_name": "data133", + "pre_dec_file": "pre_dec_json\\data133_aligned.json", + "gt_json_file": "json/gt_json\\data133_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data133.png" +} \ No newline at end of file diff --git a/json/data134.json b/json/data134.json new file mode 100644 index 0000000000000000000000000000000000000000..1efe26953477ebc4ccfa6376e6da838459fa8940 --- /dev/null +++ b/json/data134.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data134", + "pre_dec_file": "pre_dec_json\\data134_aligned.json", + "gt_json_file": "json/gt_json\\data134_gt.json", + "is_longtail": "False", + "Sup_description": "", + "lt_ele": "", + "acc_factors": [], + "post_dec": "", + "pic_path": "..\\pic\\data134.png" +} \ No newline at end of file diff --git a/json/data135.json b/json/data135.json new file mode 100644 index 0000000000000000000000000000000000000000..aa89c75c6397c4ca72af4a305bba60ded2a2c476 --- /dev/null +++ b/json/data135.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data135", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data135.png", + "pre_dec_file": "pre_dec_json\\data135_aligned.json", + "gt_json_file": "json/gt_json\\data135_gt.json" +} \ No newline at end of file diff --git a/json/data136.json b/json/data136.json new file mode 100644 index 0000000000000000000000000000000000000000..7c52af194ab264356fa10f2586d31b25d6da0e97 --- /dev/null +++ b/json/data136.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data136", + "pre_dec_file": "pre_dec_json\\data136_aligned.json", + "gt_json_file": "json/gt_json\\data136_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data136.png" +} \ No newline at end of file diff --git a/json/data137.json b/json/data137.json new file mode 100644 index 0000000000000000000000000000000000000000..cb1564cceb9818e5dd06a31a180c53f5cd420d5b --- /dev/null +++ b/json/data137.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data137", + "pre_dec_file": "pre_dec_json\\data137_aligned.json", + "gt_json_file": "json/gt_json\\data137_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data137.png" +} \ No newline at end of file diff --git a/json/data138.json b/json/data138.json new file mode 100644 index 0000000000000000000000000000000000000000..d02c9c3f5d30077d472811b42efc52910147b2b8 --- /dev/null +++ b/json/data138.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.1", + "pic_name": "data138", + "pre_dec_file": "pre_dec_json\\data138_aligned.json", + "gt_json_file": "json/gt_json\\data138_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data138.png" +} \ No newline at end of file diff --git a/json/data139.json b/json/data139.json new file mode 100644 index 0000000000000000000000000000000000000000..509ebb138a06eebffa4496a5e2abd9a7bd755f7b --- /dev/null +++ b/json/data139.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data139", + "pre_dec_file": "pre_dec_json\\data139_aligned.json", + "gt_json_file": "json/gt_json\\data139_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data139.png" +} \ No newline at end of file diff --git a/json/data14.json b/json/data14.json new file mode 100644 index 0000000000000000000000000000000000000000..ff89a4812895c2d290b975f5f6460d52eddfa1c9 --- /dev/null +++ b/json/data14.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data14", + "pre_dec_file": "pre_dec_json\\data14_aligned.json", + "gt_json_file": "json/gt_json\\data14_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data14.png" +} \ No newline at end of file diff --git a/json/data140.json b/json/data140.json new file mode 100644 index 0000000000000000000000000000000000000000..9d2f49198e75a4bfc43989b0c6d9dae9c4dfa2da --- /dev/null +++ b/json/data140.json @@ -0,0 +1,17 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data140", + "is_longtail": "True", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data140.png", + "pre_dec_file": "pre_dec_json\\data140_aligned.json", + "gt_json_file": "json/gt_json\\data140_gt.json" +} \ No newline at end of file diff --git a/json/data141.json b/json/data141.json new file mode 100644 index 0000000000000000000000000000000000000000..c1e56526754b8521907c4985ca04f372f7eed834 --- /dev/null +++ b/json/data141.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data141", + "pre_dec_file": "pre_dec_json\\data141_aligned.json", + "gt_json_file": "json/gt_json\\data141_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data141.png" +} \ No newline at end of file diff --git a/json/data142.json b/json/data142.json new file mode 100644 index 0000000000000000000000000000000000000000..dc9ec363dfc25f9ace67e41d6d91fe1991aed45c --- /dev/null +++ b/json/data142.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data142", + "pre_dec_file": "pre_dec_json\\data142_aligned.json", + "gt_json_file": "json/gt_json\\data142_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data142.png" +} \ No newline at end of file diff --git a/json/data143.json b/json/data143.json new file mode 100644 index 0000000000000000000000000000000000000000..1bf9504ab007cc1349ef4363c90d5708f8099dfe --- /dev/null +++ b/json/data143.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data143", + "pre_dec_file": "pre_dec_json\\data143_aligned.json", + "gt_json_file": "json/gt_json\\data143_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data143.png" +} \ No newline at end of file diff --git a/json/data144.json b/json/data144.json new file mode 100644 index 0000000000000000000000000000000000000000..b3a0cdd6d049243f1a933ba9222ebaf131ee1381 --- /dev/null +++ b/json/data144.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data144", + "pre_dec_file": "pre_dec_json\\data144_aligned.json", + "gt_json_file": "json/gt_json\\data144_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data144.png" +} \ No newline at end of file diff --git a/json/data145.json b/json/data145.json new file mode 100644 index 0000000000000000000000000000000000000000..7cd4fe5238e6bc0c3de6192342715ea659172fbe --- /dev/null +++ b/json/data145.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data145", + "pre_dec_file": "pre_dec_json\\data145_aligned.json", + "gt_json_file": "json/gt_json\\data145_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data145.png" +} \ No newline at end of file diff --git a/json/data146.json b/json/data146.json new file mode 100644 index 0000000000000000000000000000000000000000..e79bb97135b5ff41385e39cab14adb2cec2f208a --- /dev/null +++ b/json/data146.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data146", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Non-motor vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data146.png", + "pre_dec_file": "pre_dec_json\\data146_aligned.json", + "gt_json_file": "json/gt_json\\data146_gt.json" +} \ No newline at end of file diff --git a/json/data147.json b/json/data147.json new file mode 100644 index 0000000000000000000000000000000000000000..2940852e16bcf55dd8cd7aac693c7229c846ed31 --- /dev/null +++ b/json/data147.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data147", + "pic_path": "..\\pic\\data147.png", + "pre_dec_file": "pre_dec_json\\data147_aligned.json", + "gt_json_file": "json/gt_json\\data147_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage" +} \ No newline at end of file diff --git a/json/data148.json b/json/data148.json new file mode 100644 index 0000000000000000000000000000000000000000..a61c1dabe6d67ab2feba8c7452fe75a9dec13860 --- /dev/null +++ b/json/data148.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data148", + "pre_dec_file": "pre_dec_json\\data148_aligned.json", + "gt_json_file": "json/gt_json\\data148_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data148.png" +} \ No newline at end of file diff --git a/json/data149.json b/json/data149.json new file mode 100644 index 0000000000000000000000000000000000000000..78046f001ecf77c73ac30226b1417260b8f89fa1 --- /dev/null +++ b/json/data149.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data149", + "pre_dec_file": "pre_dec_json\\data149_aligned.json", + "gt_json_file": "json/gt_json\\data149_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data149.png" +} \ No newline at end of file diff --git a/json/data15.json b/json/data15.json new file mode 100644 index 0000000000000000000000000000000000000000..610faf50bba1f6ce73b8e4f576978d7c5a972c52 --- /dev/null +++ b/json/data15.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data15", + "pre_dec_file": "pre_dec_json\\data15_aligned.json", + "gt_json_file": "json/gt_json\\data15_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data15.png" +} \ No newline at end of file diff --git a/json/data150.json b/json/data150.json new file mode 100644 index 0000000000000000000000000000000000000000..c7f6c8ed44487c49c55871f9474a95a2c37df988 --- /dev/null +++ b/json/data150.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data150", + "pre_dec_file": "pre_dec_json\\data150_aligned.json", + "gt_json_file": "json/gt_json\\data150_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data150.png" +} \ No newline at end of file diff --git a/json/data151.json b/json/data151.json new file mode 100644 index 0000000000000000000000000000000000000000..df0a9b591b9769b3c56ad63e16b5b9442871e114 --- /dev/null +++ b/json/data151.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.2", + "pic_name": "data151", + "pre_dec_file": "pre_dec_json\\data151_aligned.json", + "gt_json_file": "json/gt_json\\data151_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data151.png" +} \ No newline at end of file diff --git a/json/data152.json b/json/data152.json new file mode 100644 index 0000000000000000000000000000000000000000..ff968c8ee9f899f0a756e7fdb05457154937d87c --- /dev/null +++ b/json/data152.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data152", + "pre_dec_file": "pre_dec_json\\data152_aligned.json", + "gt_json_file": "json/gt_json\\data152_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data152.png" +} \ No newline at end of file diff --git a/json/data153.json b/json/data153.json new file mode 100644 index 0000000000000000000000000000000000000000..8041dec49b08555c7f10ef21abcf53fa3189aea3 --- /dev/null +++ b/json/data153.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data153", + "pre_dec_file": "pre_dec_json\\data153_aligned.json", + "gt_json_file": "json/gt_json\\data153_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data153.png" +} \ No newline at end of file diff --git a/json/data154.json b/json/data154.json new file mode 100644 index 0000000000000000000000000000000000000000..4abccaba1185bce21b00ed4bb85feed7a42f97ee --- /dev/null +++ b/json/data154.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data154", + "pre_dec_file": "pre_dec_json\\data154_aligned.json", + "gt_json_file": "json/gt_json\\data154_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data154.png" +} \ No newline at end of file diff --git a/json/data155.json b/json/data155.json new file mode 100644 index 0000000000000000000000000000000000000000..b06be38be3982c43534d4880c61ee6927cbc129c --- /dev/null +++ b/json/data155.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data155", + "pre_dec_file": "pre_dec_json\\data155_aligned.json", + "gt_json_file": "json/gt_json\\data155_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data155.png" +} \ No newline at end of file diff --git a/json/data156.json b/json/data156.json new file mode 100644 index 0000000000000000000000000000000000000000..6825e3a397428065d960d3e78677c6381200ac20 --- /dev/null +++ b/json/data156.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data156", + "pre_dec_file": "pre_dec_json\\data156_aligned.json", + "gt_json_file": "json/gt_json\\data156_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Non-motor vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data156.png" +} \ No newline at end of file diff --git a/json/data157.json b/json/data157.json new file mode 100644 index 0000000000000000000000000000000000000000..6f35b07a4101cf4904ec4dca248615086c332c3d --- /dev/null +++ b/json/data157.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data157", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data157.png", + "pre_dec_file": "pre_dec_json\\data157_aligned.json", + "gt_json_file": "json/gt_json\\data157_gt.json" +} \ No newline at end of file diff --git a/json/data158.json b/json/data158.json new file mode 100644 index 0000000000000000000000000000000000000000..33dfd1398050a6ed78cece809b02efe74e6d672b --- /dev/null +++ b/json/data158.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data158", + "pre_dec_file": "pre_dec_json\\data158_aligned.json", + "gt_json_file": "json/gt_json\\data158_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data158.png" +} \ No newline at end of file diff --git a/json/data159.json b/json/data159.json new file mode 100644 index 0000000000000000000000000000000000000000..10ce01edac007c83a1ee388cb0454a0e84ac888f --- /dev/null +++ b/json/data159.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data159", + "pic_path": "..\\pic\\data159.png", + "pre_dec_file": "pre_dec_json\\data159_aligned.json", + "gt_json_file": "json/gt_json\\data159_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead" +} \ No newline at end of file diff --git a/json/data16.json b/json/data16.json new file mode 100644 index 0000000000000000000000000000000000000000..2ee49acf285f076c000c4cbacd3fbe8410d5a038 --- /dev/null +++ b/json/data16.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data16", + "pic_path": "..\\pic\\data16.png", + "pre_dec_file": "pre_dec_json\\data16_aligned.json", + "gt_json_file": "json/gt_json\\data16_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route" +} \ No newline at end of file diff --git a/json/data160.json b/json/data160.json new file mode 100644 index 0000000000000000000000000000000000000000..2805ece8dba00ea812bec2992198a7ca6317d81e --- /dev/null +++ b/json/data160.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data160", + "pre_dec_file": "pre_dec_json\\data160_aligned.json", + "gt_json_file": "json/gt_json\\data160_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data160.png" +} \ No newline at end of file diff --git a/json/data161.json b/json/data161.json new file mode 100644 index 0000000000000000000000000000000000000000..03b1bf21c50a70c7348718a0f2178d148f146524 --- /dev/null +++ b/json/data161.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data161", + "pre_dec_file": "pre_dec_json\\data161_aligned.json", + "gt_json_file": "json/gt_json\\data161_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data161.png" +} \ No newline at end of file diff --git a/json/data162.json b/json/data162.json new file mode 100644 index 0000000000000000000000000000000000000000..522e6fbcdab259d468fcbb34e9e56a18d8523fab --- /dev/null +++ b/json/data162.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data162", + "pre_dec_file": "pre_dec_json\\data162_aligned.json", + "gt_json_file": "json/gt_json\\data162_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data162.png" +} \ No newline at end of file diff --git a/json/data163.json b/json/data163.json new file mode 100644 index 0000000000000000000000000000000000000000..d54b91b10c8e3062264d74ba4ecec2e8cc55f7d6 --- /dev/null +++ b/json/data163.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data163", + "pre_dec_file": "pre_dec_json\\data163_aligned.json", + "gt_json_file": "json/gt_json\\data163_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data163.png" +} \ No newline at end of file diff --git a/json/data164.json b/json/data164.json new file mode 100644 index 0000000000000000000000000000000000000000..9b524c9ed68920773d741a03446558153bc3fbfe --- /dev/null +++ b/json/data164.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data164", + "pre_dec_file": "pre_dec_json\\data164_aligned.json", + "gt_json_file": "json/gt_json\\data164_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data164.png" +} \ No newline at end of file diff --git a/json/data165.json b/json/data165.json new file mode 100644 index 0000000000000000000000000000000000000000..4e326cde9f0327f2fe5625e7890f83de13663ff0 --- /dev/null +++ b/json/data165.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data165", + "pre_dec_file": "pre_dec_json\\data165_aligned.json", + "gt_json_file": "json/gt_json\\data165_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data165.png" +} \ No newline at end of file diff --git a/json/data166.json b/json/data166.json new file mode 100644 index 0000000000000000000000000000000000000000..489844407b3526a7f7f105658332e776b15d7add --- /dev/null +++ b/json/data166.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.1", + "pic_name": "data166", + "pre_dec_file": "pre_dec_json\\data166_aligned.json", + "gt_json_file": "json/gt_json\\data166_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-U-turn", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data166.png" +} \ No newline at end of file diff --git a/json/data167.json b/json/data167.json new file mode 100644 index 0000000000000000000000000000000000000000..9b6e90984e1e001efafb8e4e7255d94a250d0a9d --- /dev/null +++ b/json/data167.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.3", + "pic_name": "data167", + "pre_dec_file": "pre_dec_json\\data167_aligned.json", + "gt_json_file": "json/gt_json\\data167_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Sand and dust", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data167.png" +} \ No newline at end of file diff --git a/json/data168.json b/json/data168.json new file mode 100644 index 0000000000000000000000000000000000000000..b09dfa13301b32566b820392f0725e48a06ad320 --- /dev/null +++ b/json/data168.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data168", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data168.png", + "pre_dec_file": "pre_dec_json\\data168_aligned.json", + "gt_json_file": "json/gt_json\\data168_gt.json" +} \ No newline at end of file diff --git a/json/data169.json b/json/data169.json new file mode 100644 index 0000000000000000000000000000000000000000..f0ae9f85838a355bb2db452e4305fb0c4363954f --- /dev/null +++ b/json/data169.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data169", + "pre_dec_file": "pre_dec_json\\data169_aligned.json", + "gt_json_file": "json/gt_json\\data169_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data169.png" +} \ No newline at end of file diff --git a/json/data17.json b/json/data17.json new file mode 100644 index 0000000000000000000000000000000000000000..d6e3649bf52373346023d10c1099fcd53c62437d --- /dev/null +++ b/json/data17.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data17", + "pre_dec_file": "pre_dec_json\\data17_aligned.json", + "gt_json_file": "json/gt_json\\data17_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data17.png" +} \ No newline at end of file diff --git a/json/data170.json b/json/data170.json new file mode 100644 index 0000000000000000000000000000000000000000..29c7886d4fa02f338faea3dfb26fe311cdee1f62 --- /dev/null +++ b/json/data170.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data170", + "pre_dec_file": "pre_dec_json\\data170_aligned.json", + "gt_json_file": "json/gt_json\\data170_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data170.png" +} \ No newline at end of file diff --git a/json/data171.json b/json/data171.json new file mode 100644 index 0000000000000000000000000000000000000000..f5afbd6891eac42f184174f30560afcd84a86a42 --- /dev/null +++ b/json/data171.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data171", + "pic_path": "..\\pic\\data171.png", + "pre_dec_file": "pre_dec_json\\data171_aligned.json", + "gt_json_file": "json/gt_json\\data171_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour" +} \ No newline at end of file diff --git a/json/data172.json b/json/data172.json new file mode 100644 index 0000000000000000000000000000000000000000..1b9679031bf73cf75abfc1571ad3ddf86e311d1c --- /dev/null +++ b/json/data172.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data172", + "pre_dec_file": "pre_dec_json\\data172_aligned.json", + "gt_json_file": "json/gt_json\\data172_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data172.png" +} \ No newline at end of file diff --git a/json/data173.json b/json/data173.json new file mode 100644 index 0000000000000000000000000000000000000000..0a0940ab1cae7d7c08737cb78bb1577667949152 --- /dev/null +++ b/json/data173.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.4", + "pic_name": "data173", + "pre_dec_file": "pre_dec_json\\data173_aligned.json", + "gt_json_file": "json/gt_json\\data173_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "non-motorized vehicle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data173.png" +} \ No newline at end of file diff --git a/json/data174.json b/json/data174.json new file mode 100644 index 0000000000000000000000000000000000000000..fc6ca4e462b94e3a4559c59d83cd2087c5e29ce3 --- /dev/null +++ b/json/data174.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data174", + "pre_dec_file": "pre_dec_json\\data174_aligned.json", + "gt_json_file": "json/gt_json\\data174_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data174.png" +} \ No newline at end of file diff --git a/json/data175.json b/json/data175.json new file mode 100644 index 0000000000000000000000000000000000000000..1aa9932b619e4ef0bc0988736490f96bb1eae29b --- /dev/null +++ b/json/data175.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.1", + "pic_name": "data175", + "pre_dec_file": "pre_dec_json\\data175_aligned.json", + "gt_json_file": "json/gt_json\\data175_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-U-turn", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data175.png" +} \ No newline at end of file diff --git a/json/data176.json b/json/data176.json new file mode 100644 index 0000000000000000000000000000000000000000..b36a9dc3bd52d04e9b5872865595dfc337486541 --- /dev/null +++ b/json/data176.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data176", + "pre_dec_file": "pre_dec_json\\data176_aligned.json", + "gt_json_file": "json/gt_json\\data176_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data176.png" +} \ No newline at end of file diff --git a/json/data177.json b/json/data177.json new file mode 100644 index 0000000000000000000000000000000000000000..f9f5e92eb375dbc29bf15826b0e4a00b24e65597 --- /dev/null +++ b/json/data177.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.1", + "pic_name": "data177", + "pre_dec_file": "pre_dec_json\\data177_aligned.json", + "gt_json_file": "json/gt_json\\data177_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data177.png" +} \ No newline at end of file diff --git a/json/data178.json b/json/data178.json new file mode 100644 index 0000000000000000000000000000000000000000..de4fc7ab5c8e712161669514a318fc834f39f773 --- /dev/null +++ b/json/data178.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data178", + "pre_dec_file": "pre_dec_json\\data178_aligned.json", + "gt_json_file": "json/gt_json\\data178_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data178.png" +} \ No newline at end of file diff --git a/json/data179.json b/json/data179.json new file mode 100644 index 0000000000000000000000000000000000000000..9f922640ae6784cf9ceaa5715637de3488e16688 --- /dev/null +++ b/json/data179.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data179", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data179.png", + "pre_dec_file": "pre_dec_json\\data179_aligned.json", + "gt_json_file": "json/gt_json\\data179_gt.json" +} \ No newline at end of file diff --git a/json/data18.json b/json/data18.json new file mode 100644 index 0000000000000000000000000000000000000000..697381049896fc9e1f3f6cf10a8a89ff9e0913ec --- /dev/null +++ b/json/data18.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.2", + "pic_name": "data18", + "pre_dec_file": "pre_dec_json\\data18_aligned.json", + "gt_json_file": "json/gt_json\\data18_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data18.png" +} \ No newline at end of file diff --git a/json/data180.json b/json/data180.json new file mode 100644 index 0000000000000000000000000000000000000000..1fe6c67f038a9c4c2b9b0fa91b1ce0b1e5a5ff5f --- /dev/null +++ b/json/data180.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data180", + "pre_dec_file": "pre_dec_json\\data180_aligned.json", + "gt_json_file": "json/gt_json\\data180_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data180.png" +} \ No newline at end of file diff --git a/json/data181.json b/json/data181.json new file mode 100644 index 0000000000000000000000000000000000000000..bfce8c52d5a93d4dbbc355b08398ae6278be056d --- /dev/null +++ b/json/data181.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.2", + "pic_name": "data181", + "pre_dec_file": "pre_dec_json\\data181_aligned.json", + "gt_json_file": "json/gt_json\\data181_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-Lane change", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data181.png" +} \ No newline at end of file diff --git a/json/data182.json b/json/data182.json new file mode 100644 index 0000000000000000000000000000000000000000..29f13bc32633c5062e799b6acc2c8592b8c447de --- /dev/null +++ b/json/data182.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data182", + "pre_dec_file": "pre_dec_json\\data182_aligned.json", + "gt_json_file": "json/gt_json\\data182_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data182.png" +} \ No newline at end of file diff --git a/json/data183.json b/json/data183.json new file mode 100644 index 0000000000000000000000000000000000000000..e30b603ebed30e8ac7c11015b2e0783ef0dbadab --- /dev/null +++ b/json/data183.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data183", + "pic_path": "..\\pic\\data183.png", + "pre_dec_file": "pre_dec_json\\data183_aligned.json", + "gt_json_file": "json/gt_json\\data183_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions" +} \ No newline at end of file diff --git a/json/data184.json b/json/data184.json new file mode 100644 index 0000000000000000000000000000000000000000..ca3d3d1330f383b5a7cde7a2c25a2740b159a4a1 --- /dev/null +++ b/json/data184.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data184", + "pre_dec_file": "pre_dec_json\\data184_aligned.json", + "gt_json_file": "json/gt_json\\data184_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data184.png" +} \ No newline at end of file diff --git a/json/data185.json b/json/data185.json new file mode 100644 index 0000000000000000000000000000000000000000..b722404ccce40de52936f05e7748f22f75acaa4e --- /dev/null +++ b/json/data185.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data185", + "pre_dec_file": "pre_dec_json\\data185_aligned.json", + "gt_json_file": "json/gt_json\\data185_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data185.png" +} \ No newline at end of file diff --git a/json/data186.json b/json/data186.json new file mode 100644 index 0000000000000000000000000000000000000000..47210f4a3aa4a019ba46d6ba59d7ed8ddeeeec82 --- /dev/null +++ b/json/data186.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data186", + "pre_dec_file": "pre_dec_json\\data186_aligned.json", + "gt_json_file": "json/gt_json\\data186_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data186.png" +} \ No newline at end of file diff --git a/json/data187.json b/json/data187.json new file mode 100644 index 0000000000000000000000000000000000000000..e944b75ee3ebcd8582c5c0dcf7f401da08ce5014 --- /dev/null +++ b/json/data187.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data187", + "pre_dec_file": "pre_dec_json\\data187_aligned.json", + "gt_json_file": "json/gt_json\\data187_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data187.png" +} \ No newline at end of file diff --git a/json/data188.json b/json/data188.json new file mode 100644 index 0000000000000000000000000000000000000000..b1cbef4d8db859885573f5951f68237414d72669 --- /dev/null +++ b/json/data188.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data188", + "pre_dec_file": "pre_dec_json\\data188_aligned.json", + "gt_json_file": "json/gt_json\\data188_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "Non-motor vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data188.png" +} \ No newline at end of file diff --git a/json/data189.json b/json/data189.json new file mode 100644 index 0000000000000000000000000000000000000000..bf5a3c3a686fb3e8c951d2112154ca35c78aa533 --- /dev/null +++ b/json/data189.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data189", + "pre_dec_file": "pre_dec_json\\data189_aligned.json", + "gt_json_file": "json/gt_json\\data189_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "Non-motor vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data189.png" +} \ No newline at end of file diff --git a/json/data19.json b/json/data19.json new file mode 100644 index 0000000000000000000000000000000000000000..e36e8691c44f75733e699751267bc7e96f3885be --- /dev/null +++ b/json/data19.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data19", + "pre_dec_file": "pre_dec_json\\data19_aligned.json", + "gt_json_file": "json/gt_json\\data19_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data19.png" +} \ No newline at end of file diff --git a/json/data190.json b/json/data190.json new file mode 100644 index 0000000000000000000000000000000000000000..99c95722f5f88b8df252ef77e64f17db7332472c --- /dev/null +++ b/json/data190.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data190", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data190.png", + "pre_dec_file": "pre_dec_json\\data190_aligned.json", + "gt_json_file": "json/gt_json\\data190_gt.json" +} \ No newline at end of file diff --git a/json/data191.json b/json/data191.json new file mode 100644 index 0000000000000000000000000000000000000000..f0d9f1d5baee3aa257d5f016a5fb50bab7880142 --- /dev/null +++ b/json/data191.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.1", + "pic_name": "data191", + "pre_dec_file": "pre_dec_json\\data191_aligned.json", + "gt_json_file": "json/gt_json\\data191_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-U-turn", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data191.png" +} \ No newline at end of file diff --git a/json/data192.json b/json/data192.json new file mode 100644 index 0000000000000000000000000000000000000000..bbff8a5508719b7c458979a0daebe852422cf4c6 --- /dev/null +++ b/json/data192.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.1", + "pic_name": "data192", + "pre_dec_file": "pre_dec_json\\data192_aligned.json", + "gt_json_file": "json/gt_json\\data192_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data192.png" +} \ No newline at end of file diff --git a/json/data193.json b/json/data193.json new file mode 100644 index 0000000000000000000000000000000000000000..4f3f7b782a39e4567723d320610070dc86fb84b7 --- /dev/null +++ b/json/data193.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data193", + "pre_dec_file": "pre_dec_json\\data193_aligned.json", + "gt_json_file": "json/gt_json\\data193_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data193.png" +} \ No newline at end of file diff --git a/json/data194.json b/json/data194.json new file mode 100644 index 0000000000000000000000000000000000000000..f7946ce8ef51f25c95aa896251079d02a5c4165b --- /dev/null +++ b/json/data194.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data194", + "pre_dec_file": "pre_dec_json\\data194_aligned.json", + "gt_json_file": "json/gt_json\\data194_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data194.png" +} \ No newline at end of file diff --git a/json/data195.json b/json/data195.json new file mode 100644 index 0000000000000000000000000000000000000000..adfb33fa18797f46557a50e9623f06f2bc38967c --- /dev/null +++ b/json/data195.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data195", + "pre_dec_file": "pre_dec_json\\data195_aligned.json", + "gt_json_file": "json/gt_json\\data195_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data195.png" +} \ No newline at end of file diff --git a/json/data196.json b/json/data196.json new file mode 100644 index 0000000000000000000000000000000000000000..9b97a02e48293d863eb8b745c94e863ef1272a7c --- /dev/null +++ b/json/data196.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data196", + "pre_dec_file": "pre_dec_json\\data196_aligned.json", + "gt_json_file": "json/gt_json\\data196_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data196.png" +} \ No newline at end of file diff --git a/json/data197.json b/json/data197.json new file mode 100644 index 0000000000000000000000000000000000000000..fa3212e25aad1151b265734c95d5b6a584f774b5 --- /dev/null +++ b/json/data197.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data197", + "pre_dec_file": "pre_dec_json\\data197_aligned.json", + "gt_json_file": "json/gt_json\\data197_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data197.png" +} \ No newline at end of file diff --git a/json/data198.json b/json/data198.json new file mode 100644 index 0000000000000000000000000000000000000000..d8209fce7d163aec01c21ba17c872f4af62c81f0 --- /dev/null +++ b/json/data198.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data198", + "pre_dec_file": "pre_dec_json\\data198_aligned.json", + "gt_json_file": "json/gt_json\\data198_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data198.png" +} \ No newline at end of file diff --git a/json/data199.json b/json/data199.json new file mode 100644 index 0000000000000000000000000000000000000000..011b9a15012712b935da033951d41ad21b4ee739 --- /dev/null +++ b/json/data199.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data199", + "pre_dec_file": "pre_dec_json\\data199_aligned.json", + "gt_json_file": "json/gt_json\\data199_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data199.png" +} \ No newline at end of file diff --git a/json/data2.json b/json/data2.json new file mode 100644 index 0000000000000000000000000000000000000000..695ab6bf1e818c3d82d344fad7a1a2974335f91b --- /dev/null +++ b/json/data2.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data2", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data2.png", + "pre_dec_file": "pre_dec_json\\data2_aligned.json", + "gt_json_file": "json/gt_json\\data2_gt.json" +} \ No newline at end of file diff --git a/json/data20.json b/json/data20.json new file mode 100644 index 0000000000000000000000000000000000000000..fa9867bb2c86152d735639881a1864fa83b83919 --- /dev/null +++ b/json/data20.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data20", + "pre_dec_file": "pre_dec_json\\data20_aligned.json", + "gt_json_file": "json/gt_json\\data20_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data20.png" +} \ No newline at end of file diff --git a/json/data200.json b/json/data200.json new file mode 100644 index 0000000000000000000000000000000000000000..f215d28d32114cde86a563e0b386a53f0e9668bc --- /dev/null +++ b/json/data200.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data200", + "pre_dec_file": "pre_dec_json\\data200_aligned.json", + "gt_json_file": "json/gt_json\\data200_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data200.png" +} \ No newline at end of file diff --git a/json/data201.json b/json/data201.json new file mode 100644 index 0000000000000000000000000000000000000000..140558090b6c72d5eca173ef46ea7f1bb622bab0 --- /dev/null +++ b/json/data201.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data201", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data201.png", + "pre_dec_file": "pre_dec_json\\data201_aligned.json", + "gt_json_file": "json/gt_json\\data201_gt.json" +} \ No newline at end of file diff --git a/json/data202.json b/json/data202.json new file mode 100644 index 0000000000000000000000000000000000000000..1c8e3a58c71d3ce6a4b47a7475c917ca11f33579 --- /dev/null +++ b/json/data202.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.3", + "pic_name": "data202", + "pre_dec_file": "pre_dec_json\\data202_aligned.json", + "gt_json_file": "json/gt_json\\data202_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-Parking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data202.png" +} \ No newline at end of file diff --git a/json/data203.json b/json/data203.json new file mode 100644 index 0000000000000000000000000000000000000000..068c375dd9231705e761a0300a303ab19296fcf6 --- /dev/null +++ b/json/data203.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.3", + "pic_name": "data203", + "pre_dec_file": "pre_dec_json\\data203_aligned.json", + "gt_json_file": "json/gt_json\\data203_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Sand and dust", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data203.png" +} \ No newline at end of file diff --git a/json/data204.json b/json/data204.json new file mode 100644 index 0000000000000000000000000000000000000000..ee3cefddd58d1e69d7dcdc66ff5be57e8e1e7782 --- /dev/null +++ b/json/data204.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data204", + "pre_dec_file": "pre_dec_json\\data204_aligned.json", + "gt_json_file": "json/gt_json\\data204_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data204.png" +} \ No newline at end of file diff --git a/json/data205.json b/json/data205.json new file mode 100644 index 0000000000000000000000000000000000000000..e6a7458b59253e15031a51a7cb7e99b7cb7d71b8 --- /dev/null +++ b/json/data205.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data205", + "pre_dec_file": "pre_dec_json\\data205_aligned.json", + "gt_json_file": "json/gt_json\\data205_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data205.png" +} \ No newline at end of file diff --git a/json/data206.json b/json/data206.json new file mode 100644 index 0000000000000000000000000000000000000000..acb96c7e3312f63138318a0949010e6e2a35f44f --- /dev/null +++ b/json/data206.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.4", + "pic_name": "data206", + "pre_dec_file": "pre_dec_json\\data206_aligned.json", + "gt_json_file": "json/gt_json\\data206_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "non-motorized vehicle", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data206.png" +} \ No newline at end of file diff --git a/json/data207.json b/json/data207.json new file mode 100644 index 0000000000000000000000000000000000000000..1565471f6f9742aca221da579af69553a0c6e4b7 --- /dev/null +++ b/json/data207.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data207", + "pre_dec_file": "pre_dec_json\\data207_aligned.json", + "gt_json_file": "json/gt_json\\data207_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data207.png" +} \ No newline at end of file diff --git a/json/data208.json b/json/data208.json new file mode 100644 index 0000000000000000000000000000000000000000..7f99de5c5e507bd38dad9be97ed8cdca67453539 --- /dev/null +++ b/json/data208.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data208", + "pre_dec_file": "pre_dec_json\\data208_aligned.json", + "gt_json_file": "json/gt_json\\data208_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data208.png" +} \ No newline at end of file diff --git a/json/data209.json b/json/data209.json new file mode 100644 index 0000000000000000000000000000000000000000..8165e58f8c9ca97325d0528274eb3e067bd6239d --- /dev/null +++ b/json/data209.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data209", + "pre_dec_file": "pre_dec_json\\data209_aligned.json", + "gt_json_file": "json/gt_json\\data209_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data209.png" +} \ No newline at end of file diff --git a/json/data21.json b/json/data21.json new file mode 100644 index 0000000000000000000000000000000000000000..e207e635ad7f9d0ca6790fdd86ade9bfc4111337 --- /dev/null +++ b/json/data21.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.4", + "pic_name": "data21", + "pre_dec_file": "pre_dec_json\\data21_aligned.json", + "gt_json_file": "json/gt_json\\data21_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "non-motorized vehicle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data21.png" +} \ No newline at end of file diff --git a/json/data210.json b/json/data210.json new file mode 100644 index 0000000000000000000000000000000000000000..69bbae130d73ce6ea69564bbfaac756b448c0afa --- /dev/null +++ b/json/data210.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.1", + "pic_name": "data210", + "pre_dec_file": "pre_dec_json\\data210_aligned.json", + "gt_json_file": "json/gt_json\\data210_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-U-turn", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data210.png" +} \ No newline at end of file diff --git a/json/data211.json b/json/data211.json new file mode 100644 index 0000000000000000000000000000000000000000..83235933f26c4d2b6f4babd450d8d3bbcf588dfd --- /dev/null +++ b/json/data211.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data211", + "pre_dec_file": "pre_dec_json\\data211_aligned.json", + "gt_json_file": "json/gt_json\\data211_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data211.png" +} \ No newline at end of file diff --git a/json/data212.json b/json/data212.json new file mode 100644 index 0000000000000000000000000000000000000000..1f0185599ca13e165022f0955fd22da42d8555df --- /dev/null +++ b/json/data212.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data212", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data212.png", + "pre_dec_file": "pre_dec_json\\data212_aligned.json", + "gt_json_file": "json/gt_json\\data212_gt.json" +} \ No newline at end of file diff --git a/json/data213.json b/json/data213.json new file mode 100644 index 0000000000000000000000000000000000000000..9db1e8e7946c027a24dc3e9dee15c21c84ef81d9 --- /dev/null +++ b/json/data213.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data213", + "pre_dec_file": "pre_dec_json\\data213_aligned.json", + "gt_json_file": "json/gt_json\\data213_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data213.png" +} \ No newline at end of file diff --git a/json/data214.json b/json/data214.json new file mode 100644 index 0000000000000000000000000000000000000000..7ee282fb11f80ce4e515f89aeb1118a7e3d0a9f7 --- /dev/null +++ b/json/data214.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.1", + "pic_name": "data214", + "pre_dec_file": "pre_dec_json\\data214_aligned.json", + "gt_json_file": "json/gt_json\\data214_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data214.png" +} \ No newline at end of file diff --git a/json/data215.json b/json/data215.json new file mode 100644 index 0000000000000000000000000000000000000000..0576b369a0bef3f8d29a7983e35ff3ae8767a6f9 --- /dev/null +++ b/json/data215.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data215", + "pre_dec_file": "pre_dec_json\\data215_aligned.json", + "gt_json_file": "json/gt_json\\data215_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data215.png" +} \ No newline at end of file diff --git a/json/data216.json b/json/data216.json new file mode 100644 index 0000000000000000000000000000000000000000..e0bc90a264d789b231d867a671990e49b7d2fcb4 --- /dev/null +++ b/json/data216.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data216", + "pre_dec_file": "pre_dec_json\\data216_aligned.json", + "gt_json_file": "json/gt_json\\data216_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data216.png" +} \ No newline at end of file diff --git a/json/data217.json b/json/data217.json new file mode 100644 index 0000000000000000000000000000000000000000..954e1c7defa69b7470565a7fb7cf1668c53399d1 --- /dev/null +++ b/json/data217.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data217", + "pre_dec_file": "pre_dec_json\\data217_aligned.json", + "gt_json_file": "json/gt_json\\data217_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Non-motor vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data217.png" +} \ No newline at end of file diff --git a/json/data218.json b/json/data218.json new file mode 100644 index 0000000000000000000000000000000000000000..5c043db15b1878fb6a306a484487adbbc2d9afba --- /dev/null +++ b/json/data218.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data218", + "pre_dec_file": "pre_dec_json\\data218_aligned.json", + "gt_json_file": "json/gt_json\\data218_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data218.png" +} \ No newline at end of file diff --git a/json/data219.json b/json/data219.json new file mode 100644 index 0000000000000000000000000000000000000000..9c53a2c9a08a8d6b040198d0f348d21e9d54a5d1 --- /dev/null +++ b/json/data219.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data219", + "pre_dec_file": "pre_dec_json\\data219_aligned.json", + "gt_json_file": "json/gt_json\\data219_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data219.png" +} \ No newline at end of file diff --git a/json/data22.json b/json/data22.json new file mode 100644 index 0000000000000000000000000000000000000000..439ac55811bfb0e8135af44c386c4354cce32235 --- /dev/null +++ b/json/data22.json @@ -0,0 +1,17 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data22", + "is_longtail": "True", + "lt_ele": "Construction work", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data22.png", + "pre_dec_file": "pre_dec_json\\data22_aligned.json", + "gt_json_file": "json/gt_json\\data22_gt.json" +} \ No newline at end of file diff --git a/json/data220.json b/json/data220.json new file mode 100644 index 0000000000000000000000000000000000000000..133b12019c7887222c598a87a6bca8e3a0b8404a --- /dev/null +++ b/json/data220.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data220", + "pre_dec_file": "pre_dec_json\\data220_aligned.json", + "gt_json_file": "json/gt_json\\data220_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data220.png" +} \ No newline at end of file diff --git a/json/data221.json b/json/data221.json new file mode 100644 index 0000000000000000000000000000000000000000..e9e9c1358483e18ad1256eaab05d4538e2366e6b --- /dev/null +++ b/json/data221.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data221", + "pre_dec_file": "pre_dec_json\\data221_aligned.json", + "gt_json_file": "json/gt_json\\data221_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data221.png" +} \ No newline at end of file diff --git a/json/data222.json b/json/data222.json new file mode 100644 index 0000000000000000000000000000000000000000..a1a98d73bba333a4edcd4ff575ebc828024669b2 --- /dev/null +++ b/json/data222.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data222", + "pre_dec_file": "pre_dec_json\\data222_aligned.json", + "gt_json_file": "json/gt_json\\data222_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data222.png" +} \ No newline at end of file diff --git a/json/data223.json b/json/data223.json new file mode 100644 index 0000000000000000000000000000000000000000..4a5aadde4e22df2e9f77ebf1e8888c6ec28e65ae --- /dev/null +++ b/json/data223.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data223", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data223.png", + "pre_dec_file": "pre_dec_json\\data223_aligned.json", + "gt_json_file": "json/gt_json\\data223_gt.json" +} \ No newline at end of file diff --git a/json/data224.json b/json/data224.json new file mode 100644 index 0000000000000000000000000000000000000000..baef09a563597b6a4b66150fcf81776277a0b535 --- /dev/null +++ b/json/data224.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data224", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data224.png", + "pre_dec_file": "pre_dec_json\\data224_aligned.json", + "gt_json_file": "json/gt_json\\data224_gt.json" +} \ No newline at end of file diff --git a/json/data225.json b/json/data225.json new file mode 100644 index 0000000000000000000000000000000000000000..aeff982e2a9b6bd78cb1e90724d50db31e83c7cf --- /dev/null +++ b/json/data225.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data225", + "pre_dec_file": "pre_dec_json\\data225_aligned.json", + "gt_json_file": "json/gt_json\\data225_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data225.png" +} \ No newline at end of file diff --git a/json/data226.json b/json/data226.json new file mode 100644 index 0000000000000000000000000000000000000000..c3d5d1bf0ffea05a77350aa8413b78e16d1f2c5e --- /dev/null +++ b/json/data226.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data226", + "pre_dec_file": "pre_dec_json\\data226_aligned.json", + "gt_json_file": "json/gt_json\\data226_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data226.png" +} \ No newline at end of file diff --git a/json/data227.json b/json/data227.json new file mode 100644 index 0000000000000000000000000000000000000000..a4da336315d9956c154cae02674437a2b7023fd3 --- /dev/null +++ b/json/data227.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data227", + "pre_dec_file": "pre_dec_json\\data227_aligned.json", + "gt_json_file": "json/gt_json\\data227_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data227.png" +} \ No newline at end of file diff --git a/json/data228.json b/json/data228.json new file mode 100644 index 0000000000000000000000000000000000000000..087654fb2f9732e1b519bafed08f44b3d056f832 --- /dev/null +++ b/json/data228.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.1", + "pic_name": "data228", + "pre_dec_file": "pre_dec_json\\data228_aligned.json", + "gt_json_file": "json/gt_json\\data228_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Non-motor vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data228.png" +} \ No newline at end of file diff --git a/json/data229.json b/json/data229.json new file mode 100644 index 0000000000000000000000000000000000000000..457d59c2c64624d7397a2f42aa9fa71f64972fbe --- /dev/null +++ b/json/data229.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data229", + "pre_dec_file": "pre_dec_json\\data229_aligned.json", + "gt_json_file": "json/gt_json\\data229_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data229.png" +} \ No newline at end of file diff --git a/json/data23.json b/json/data23.json new file mode 100644 index 0000000000000000000000000000000000000000..344c7ded0c40ecaed4dc4d045cca0396ef715268 --- /dev/null +++ b/json/data23.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data23", + "pic_path": "..\\pic\\data23.png", + "pre_dec_file": "pre_dec_json\\data23_aligned.json", + "gt_json_file": "json/gt_json\\data23_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead" +} \ No newline at end of file diff --git a/json/data230.json b/json/data230.json new file mode 100644 index 0000000000000000000000000000000000000000..f86babdfa4fc91e298fe51e10043ff4b25f17d88 --- /dev/null +++ b/json/data230.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data230", + "pre_dec_file": "pre_dec_json\\data230_aligned.json", + "gt_json_file": "json/gt_json\\data230_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data230.png" +} \ No newline at end of file diff --git a/json/data231.json b/json/data231.json new file mode 100644 index 0000000000000000000000000000000000000000..e55e0317fac6987c2d59f45e3876d5a4087eacbd --- /dev/null +++ b/json/data231.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.3", + "pic_name": "data231", + "pre_dec_file": "pre_dec_json\\data231_aligned.json", + "gt_json_file": "json/gt_json\\data231_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Sand and dust", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data231.png" +} \ No newline at end of file diff --git a/json/data232.json b/json/data232.json new file mode 100644 index 0000000000000000000000000000000000000000..831eb170ece683f224e8d60a1b0427ce1941abde --- /dev/null +++ b/json/data232.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data232", + "pre_dec_file": "pre_dec_json\\data232_aligned.json", + "gt_json_file": "json/gt_json\\data232_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data232.png" +} \ No newline at end of file diff --git a/json/data233.json b/json/data233.json new file mode 100644 index 0000000000000000000000000000000000000000..616b30bd82d7c584c93fb2da3e0c36bd0f82ad61 --- /dev/null +++ b/json/data233.json @@ -0,0 +1,17 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data233", + "is_longtail": "True", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data233.png", + "pre_dec_file": "pre_dec_json\\data233_aligned.json", + "gt_json_file": "json/gt_json\\data233_gt.json" +} \ No newline at end of file diff --git a/json/data234.json b/json/data234.json new file mode 100644 index 0000000000000000000000000000000000000000..17eb3a2cbacafba50d5125aa1f13e2fb406938a5 --- /dev/null +++ b/json/data234.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data234", + "pre_dec_file": "pre_dec_json\\data234_aligned.json", + "gt_json_file": "json/gt_json\\data234_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data234.png" +} \ No newline at end of file diff --git a/json/data235.json b/json/data235.json new file mode 100644 index 0000000000000000000000000000000000000000..5baceabe116fb092bfd5cc8c52ae4661847a63b5 --- /dev/null +++ b/json/data235.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data235", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data235.png", + "pre_dec_file": "pre_dec_json\\data235_aligned.json", + "gt_json_file": "json/gt_json\\data235_gt.json" +} \ No newline at end of file diff --git a/json/data236.json b/json/data236.json new file mode 100644 index 0000000000000000000000000000000000000000..cdc823f3304eb90ecfa5241c14d7fa043c3634d1 --- /dev/null +++ b/json/data236.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data236", + "pre_dec_file": "pre_dec_json\\data236_aligned.json", + "gt_json_file": "json/gt_json\\data236_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data236.png" +} \ No newline at end of file diff --git a/json/data237.json b/json/data237.json new file mode 100644 index 0000000000000000000000000000000000000000..50791017492caaa653c3a9d0b6cf2f49efe594fe --- /dev/null +++ b/json/data237.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data237", + "pre_dec_file": "pre_dec_json\\data237_aligned.json", + "gt_json_file": "json/gt_json\\data237_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data237.png" +} \ No newline at end of file diff --git a/json/data238.json b/json/data238.json new file mode 100644 index 0000000000000000000000000000000000000000..72092f277f6bad3788a661349880be65847ccd14 --- /dev/null +++ b/json/data238.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.1", + "pic_name": "data238", + "pre_dec_file": "pre_dec_json\\data238_aligned.json", + "gt_json_file": "json/gt_json\\data238_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data238.png" +} \ No newline at end of file diff --git a/json/data239.json b/json/data239.json new file mode 100644 index 0000000000000000000000000000000000000000..85c20ada8afc05a6d2d9c5300d3ad88b0151f2a3 --- /dev/null +++ b/json/data239.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data239", + "pre_dec_file": "pre_dec_json\\data239_aligned.json", + "gt_json_file": "json/gt_json\\data239_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "Non-motor vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data239.png" +} \ No newline at end of file diff --git a/json/data24.json b/json/data24.json new file mode 100644 index 0000000000000000000000000000000000000000..56f0a0ce806eccf679be0ed6b0d58d17afe05d61 --- /dev/null +++ b/json/data24.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data24", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data24.png", + "pre_dec_file": "pre_dec_json\\data24_aligned.json", + "gt_json_file": "json/gt_json\\data24_gt.json" +} \ No newline at end of file diff --git a/json/data240.json b/json/data240.json new file mode 100644 index 0000000000000000000000000000000000000000..72d894d663ab7b29ca7d3c2f984d71d0643dcb2b --- /dev/null +++ b/json/data240.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data240", + "pre_dec_file": "pre_dec_json\\data240_aligned.json", + "gt_json_file": "json/gt_json\\data240_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Non-motor vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data240.png" +} \ No newline at end of file diff --git a/json/data241.json b/json/data241.json new file mode 100644 index 0000000000000000000000000000000000000000..589a459fd54e42f12416a86924c64151b637f075 --- /dev/null +++ b/json/data241.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data241", + "pre_dec_file": "pre_dec_json\\data241_aligned.json", + "gt_json_file": "json/gt_json\\data241_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data241.png" +} \ No newline at end of file diff --git a/json/data242.json b/json/data242.json new file mode 100644 index 0000000000000000000000000000000000000000..be2a56146ee836f4f93d45b0a1cd0639e661a55d --- /dev/null +++ b/json/data242.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data242", + "pre_dec_file": "pre_dec_json\\data242_aligned.json", + "gt_json_file": "json/gt_json\\data242_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data242.png" +} \ No newline at end of file diff --git a/json/data243.json b/json/data243.json new file mode 100644 index 0000000000000000000000000000000000000000..e21193f9ed2445eec111b60159eb29f7918f3690 --- /dev/null +++ b/json/data243.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data243", + "pre_dec_file": "pre_dec_json\\data243_aligned.json", + "gt_json_file": "json/gt_json\\data243_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data243.png" +} \ No newline at end of file diff --git a/json/data244.json b/json/data244.json new file mode 100644 index 0000000000000000000000000000000000000000..f8543107a289d5927885359b701d79a5edb588c3 --- /dev/null +++ b/json/data244.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data244", + "pre_dec_file": "pre_dec_json\\data244_aligned.json", + "gt_json_file": "json/gt_json\\data244_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data244.png" +} \ No newline at end of file diff --git a/json/data245.json b/json/data245.json new file mode 100644 index 0000000000000000000000000000000000000000..d03adad0d478585b82e58f38c87679f8357ba74e --- /dev/null +++ b/json/data245.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data245", + "pre_dec_file": "pre_dec_json\\data245_aligned.json", + "gt_json_file": "json/gt_json\\data245_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data245.png" +} \ No newline at end of file diff --git a/json/data246.json b/json/data246.json new file mode 100644 index 0000000000000000000000000000000000000000..54e57d3a28adfecaba7d56e411b4e24cb41c2c41 --- /dev/null +++ b/json/data246.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data246", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data246.png", + "pre_dec_file": "pre_dec_json\\data246_aligned.json", + "gt_json_file": "json/gt_json\\data246_gt.json" +} \ No newline at end of file diff --git a/json/data247.json b/json/data247.json new file mode 100644 index 0000000000000000000000000000000000000000..3439598fc526cab4ee2f222afae030696df9dbd7 --- /dev/null +++ b/json/data247.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data247", + "pre_dec_file": "pre_dec_json\\data247_aligned.json", + "gt_json_file": "json/gt_json\\data247_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data247.png" +} \ No newline at end of file diff --git a/json/data248.json b/json/data248.json new file mode 100644 index 0000000000000000000000000000000000000000..520bca4a959b212268042c2e1d3209667b4dcb1a --- /dev/null +++ b/json/data248.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.4", + "pic_name": "data248", + "pre_dec_file": "pre_dec_json\\data248_aligned.json", + "gt_json_file": "json/gt_json\\data248_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "non-motorized vehicle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data248.png" +} \ No newline at end of file diff --git a/json/data249.json b/json/data249.json new file mode 100644 index 0000000000000000000000000000000000000000..336392d4ca3c2a23bf0b81d65ac7d12b26cd3251 --- /dev/null +++ b/json/data249.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data249", + "pre_dec_file": "pre_dec_json\\data249_aligned.json", + "gt_json_file": "json/gt_json\\data249_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data249.png" +} \ No newline at end of file diff --git a/json/data25.json b/json/data25.json new file mode 100644 index 0000000000000000000000000000000000000000..879f20d913142e9307eeca1b5797bbfc3522b4c1 --- /dev/null +++ b/json/data25.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data25", + "pre_dec_file": "pre_dec_json\\data25_aligned.json", + "gt_json_file": "json/gt_json\\data25_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data25.png" +} \ No newline at end of file diff --git a/json/data250.json b/json/data250.json new file mode 100644 index 0000000000000000000000000000000000000000..cf860ab4f52f3ce09f5e2d0e77f005e06e7582a7 --- /dev/null +++ b/json/data250.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data250", + "pre_dec_file": "pre_dec_json\\data250_aligned.json", + "gt_json_file": "json/gt_json\\data250_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data250.png" +} \ No newline at end of file diff --git a/json/data251.json b/json/data251.json new file mode 100644 index 0000000000000000000000000000000000000000..bf9583a9f9b6e9595395b411a3080fa1d9a1ee9d --- /dev/null +++ b/json/data251.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data251", + "pre_dec_file": "pre_dec_json\\data251_aligned.json", + "gt_json_file": "json/gt_json\\data251_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data251.png" +} \ No newline at end of file diff --git a/json/data252.json b/json/data252.json new file mode 100644 index 0000000000000000000000000000000000000000..9d7543e4b2fd6fca2b4eaf6cff6fa7fe00b518ea --- /dev/null +++ b/json/data252.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data252", + "pre_dec_file": "pre_dec_json\\data252_aligned.json", + "gt_json_file": "json/gt_json\\data252_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data252.png" +} \ No newline at end of file diff --git a/json/data253.json b/json/data253.json new file mode 100644 index 0000000000000000000000000000000000000000..206eeb0461aabe7c42f7b7e3ad82d1e70fdd4b03 --- /dev/null +++ b/json/data253.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data253", + "pre_dec_file": "pre_dec_json\\data253_aligned.json", + "gt_json_file": "json/gt_json\\data253_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data253.png" +} \ No newline at end of file diff --git a/json/data254.json b/json/data254.json new file mode 100644 index 0000000000000000000000000000000000000000..1a3b34fcd08c54cb01129b305998bc7a7eefcba3 --- /dev/null +++ b/json/data254.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data254", + "pre_dec_file": "pre_dec_json\\data254_aligned.json", + "gt_json_file": "json/gt_json\\data254_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data254.png" +} \ No newline at end of file diff --git a/json/data255.json b/json/data255.json new file mode 100644 index 0000000000000000000000000000000000000000..92c6f5779fb311d2f4ca7f3e88722c61aab9c67f --- /dev/null +++ b/json/data255.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data255", + "pre_dec_file": "pre_dec_json\\data255_aligned.json", + "gt_json_file": "json/gt_json\\data255_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data255.png" +} \ No newline at end of file diff --git a/json/data256.json b/json/data256.json new file mode 100644 index 0000000000000000000000000000000000000000..13c386b0f4bf67d5e231852cc5b93cdb15edc5b7 --- /dev/null +++ b/json/data256.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data256", + "pre_dec_file": "pre_dec_json\\data256_aligned.json", + "gt_json_file": "json/gt_json\\data256_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data256.png" +} \ No newline at end of file diff --git a/json/data257.json b/json/data257.json new file mode 100644 index 0000000000000000000000000000000000000000..4b733121b4044c44f04c5d577daa185edef472f6 --- /dev/null +++ b/json/data257.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data257", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data257.png", + "pre_dec_file": "pre_dec_json\\data257_aligned.json", + "gt_json_file": "json/gt_json\\data257_gt.json" +} \ No newline at end of file diff --git a/json/data258.json b/json/data258.json new file mode 100644 index 0000000000000000000000000000000000000000..0a68a1202b736afaebec4ea6ae99346df1e62249 --- /dev/null +++ b/json/data258.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data258", + "pre_dec_file": "pre_dec_json\\data258_aligned.json", + "gt_json_file": "json/gt_json\\data258_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data258.png" +} \ No newline at end of file diff --git a/json/data259.json b/json/data259.json new file mode 100644 index 0000000000000000000000000000000000000000..b85532dd1af6548f240f3af4293680d30b39b5c3 --- /dev/null +++ b/json/data259.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.2", + "pic_name": "data259", + "pre_dec_file": "pre_dec_json\\data259_aligned.json", + "gt_json_file": "json/gt_json\\data259_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data259.png" +} \ No newline at end of file diff --git a/json/data26.json b/json/data26.json new file mode 100644 index 0000000000000000000000000000000000000000..efa24f8ef0a5daadc36ea42ce3786d4c496f4da2 --- /dev/null +++ b/json/data26.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data26", + "pic_path": "..\\pic\\data26.png", + "pre_dec_file": "pre_dec_json\\data26_aligned.json", + "gt_json_file": "json/gt_json\\data26_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage" +} \ No newline at end of file diff --git a/json/data260.json b/json/data260.json new file mode 100644 index 0000000000000000000000000000000000000000..3ed9e7060bec081182eebe669f5f97196bd44952 --- /dev/null +++ b/json/data260.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data260", + "pre_dec_file": "pre_dec_json\\data260_aligned.json", + "gt_json_file": "json/gt_json\\data260_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data260.png" +} \ No newline at end of file diff --git a/json/data261.json b/json/data261.json new file mode 100644 index 0000000000000000000000000000000000000000..0ae4210236bd56c3b6ca396ca46b1837f73c9797 --- /dev/null +++ b/json/data261.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data261", + "pre_dec_file": "pre_dec_json\\data261_aligned.json", + "gt_json_file": "json/gt_json\\data261_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data261.png" +} \ No newline at end of file diff --git a/json/data262.json b/json/data262.json new file mode 100644 index 0000000000000000000000000000000000000000..5a27581b91dc29a760d7209524f13069fc88fdc0 --- /dev/null +++ b/json/data262.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data262", + "pre_dec_file": "pre_dec_json\\data262_aligned.json", + "gt_json_file": "json/gt_json\\data262_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data262.png" +} \ No newline at end of file diff --git a/json/data263.json b/json/data263.json new file mode 100644 index 0000000000000000000000000000000000000000..6568f7d0b57940a039212abb356bcc452f2327ac --- /dev/null +++ b/json/data263.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data263", + "pre_dec_file": "pre_dec_json\\data263_aligned.json", + "gt_json_file": "json/gt_json\\data263_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data263.png" +} \ No newline at end of file diff --git a/json/data264.json b/json/data264.json new file mode 100644 index 0000000000000000000000000000000000000000..3beced3eb48617066deabbdd81eed2f48995239d --- /dev/null +++ b/json/data264.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.2", + "pic_name": "data264", + "pre_dec_file": "pre_dec_json\\data264_aligned.json", + "gt_json_file": "json/gt_json\\data264_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Low-speed heavy vehicles", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data264.png" +} \ No newline at end of file diff --git a/json/data265.json b/json/data265.json new file mode 100644 index 0000000000000000000000000000000000000000..63683c5c963cadbbc6e83977f6b734cd98d1664e --- /dev/null +++ b/json/data265.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.2", + "pic_name": "data265", + "pre_dec_file": "pre_dec_json\\data265_aligned.json", + "gt_json_file": "json/gt_json\\data265_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data265.png" +} \ No newline at end of file diff --git a/json/data266.json b/json/data266.json new file mode 100644 index 0000000000000000000000000000000000000000..435e9f4158dc0870f909c06c092898607b63fa8d --- /dev/null +++ b/json/data266.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data266", + "pre_dec_file": "pre_dec_json\\data266_aligned.json", + "gt_json_file": "json/gt_json\\data266_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data266.png" +} \ No newline at end of file diff --git a/json/data267.json b/json/data267.json new file mode 100644 index 0000000000000000000000000000000000000000..7ab86120b81df23291ba7715e52defebfd65594a --- /dev/null +++ b/json/data267.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data267", + "pre_dec_file": "pre_dec_json\\data267_aligned.json", + "gt_json_file": "json/gt_json\\data267_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data267.png" +} \ No newline at end of file diff --git a/json/data268.json b/json/data268.json new file mode 100644 index 0000000000000000000000000000000000000000..39a7f2504feb5573e0cbd7d6da432ef60bee1811 --- /dev/null +++ b/json/data268.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data268", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data268.png", + "pre_dec_file": "pre_dec_json\\data268_aligned.json", + "gt_json_file": "json/gt_json\\data268_gt.json" +} \ No newline at end of file diff --git a/json/data269.json b/json/data269.json new file mode 100644 index 0000000000000000000000000000000000000000..89ba21b2ed25c1b45f54598b1268fb8bd83efd5e --- /dev/null +++ b/json/data269.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data269", + "pre_dec_file": "pre_dec_json\\data269_aligned.json", + "gt_json_file": "json/gt_json\\data269_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data269.png" +} \ No newline at end of file diff --git a/json/data27.json b/json/data27.json new file mode 100644 index 0000000000000000000000000000000000000000..6e955323e9c111e163597c7c5cc0fe66cb0ca8d1 --- /dev/null +++ b/json/data27.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data27", + "pre_dec_file": "pre_dec_json\\data27_aligned.json", + "gt_json_file": "json/gt_json\\data27_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data27.png" +} \ No newline at end of file diff --git a/json/data270.json b/json/data270.json new file mode 100644 index 0000000000000000000000000000000000000000..82f4f1624fd77c5be5bf6151bf5e12c6422c5bc4 --- /dev/null +++ b/json/data270.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data270", + "pic_path": "..\\pic\\data270.png", + "pre_dec_file": "pre_dec_json\\data270_aligned.json", + "gt_json_file": "json/gt_json\\data270_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Low-speed straight passage" +} \ No newline at end of file diff --git a/json/data271.json b/json/data271.json new file mode 100644 index 0000000000000000000000000000000000000000..1b2fac8dedc783dde6a47712bbf43e7ada6385a2 --- /dev/null +++ b/json/data271.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data271", + "pre_dec_file": "pre_dec_json\\data271_aligned.json", + "gt_json_file": "json/gt_json\\data271_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data271.png" +} \ No newline at end of file diff --git a/json/data272.json b/json/data272.json new file mode 100644 index 0000000000000000000000000000000000000000..4db5e6a9d33b5bdfaabb4ab1ade1014990fe8790 --- /dev/null +++ b/json/data272.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data272", + "pre_dec_file": "pre_dec_json\\data272_aligned.json", + "gt_json_file": "json/gt_json\\data272_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data272.png" +} \ No newline at end of file diff --git a/json/data273.json b/json/data273.json new file mode 100644 index 0000000000000000000000000000000000000000..852a7aaeabadf6a2ae97ea44d1d48159191cb4a6 --- /dev/null +++ b/json/data273.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data273", + "pic_path": "..\\pic\\data273.png", + "pre_dec_file": "pre_dec_json\\data273_aligned.json", + "gt_json_file": "json/gt_json\\data273_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route" +} \ No newline at end of file diff --git a/json/data274.json b/json/data274.json new file mode 100644 index 0000000000000000000000000000000000000000..5b7cae69717fea3e84b6a09a181d9326d556edcc --- /dev/null +++ b/json/data274.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data274", + "is_longtail": "True", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data274.png", + "pre_dec_file": "pre_dec_json\\data274_aligned.json", + "gt_json_file": "json/gt_json\\data274_gt.json" +} \ No newline at end of file diff --git a/json/data275.json b/json/data275.json new file mode 100644 index 0000000000000000000000000000000000000000..f87f49aaac3e58875809cf070ba8c78a7cc52ea9 --- /dev/null +++ b/json/data275.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.2", + "pic_name": "data275", + "pre_dec_file": "pre_dec_json\\data275_aligned.json", + "gt_json_file": "json/gt_json\\data275_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data275.png" +} \ No newline at end of file diff --git a/json/data276.json b/json/data276.json new file mode 100644 index 0000000000000000000000000000000000000000..473f6193fd1c645783da1a4dab6094c011fa0b37 --- /dev/null +++ b/json/data276.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data276", + "is_longtail": "True", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data276.png", + "pre_dec_file": "pre_dec_json\\data276_aligned.json", + "gt_json_file": "json/gt_json\\data276_gt.json" +} \ No newline at end of file diff --git a/json/data277.json b/json/data277.json new file mode 100644 index 0000000000000000000000000000000000000000..02494fa28e449d1cd222af88f2655bffa357aed2 --- /dev/null +++ b/json/data277.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data277", + "is_longtail": "True", + "lt_ele": "Pedestrians", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data277.png", + "pre_dec_file": "pre_dec_json\\data277_aligned.json", + "gt_json_file": "json/gt_json\\data277_gt.json" +} \ No newline at end of file diff --git a/json/data278.json b/json/data278.json new file mode 100644 index 0000000000000000000000000000000000000000..57f9442a8cd1f886e85a8f43d1d2df516db1113c --- /dev/null +++ b/json/data278.json @@ -0,0 +1,17 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.2", + "pic_name": "data278", + "is_longtail": "True", + "lt_ele": "Poor visibility", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data278.png", + "pre_dec_file": "pre_dec_json\\data278_aligned.json", + "gt_json_file": "json/gt_json\\data278_gt.json" +} \ No newline at end of file diff --git a/json/data279.json b/json/data279.json new file mode 100644 index 0000000000000000000000000000000000000000..17a1856600b9bb69d513ba31318e87bd69d2f5f2 --- /dev/null +++ b/json/data279.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data279", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data279.png", + "pre_dec_file": "pre_dec_json\\data279_aligned.json", + "gt_json_file": "json/gt_json\\data279_gt.json" +} \ No newline at end of file diff --git a/json/data28.json b/json/data28.json new file mode 100644 index 0000000000000000000000000000000000000000..cd340dd19757dc786876808ed0db9c6346f643ea --- /dev/null +++ b/json/data28.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data28", + "is_longtail": "True", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data28.png", + "pre_dec_file": "pre_dec_json\\data28_aligned.json", + "gt_json_file": "json/gt_json\\data28_gt.json" +} \ No newline at end of file diff --git a/json/data280.json b/json/data280.json new file mode 100644 index 0000000000000000000000000000000000000000..f0b7a3a088970841d9a56f5163b91b2a93b552ab --- /dev/null +++ b/json/data280.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data280", + "is_longtail": "True", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data280.png", + "pre_dec_file": "pre_dec_json\\data280_aligned.json", + "gt_json_file": "json/gt_json\\data280_gt.json" +} \ No newline at end of file diff --git a/json/data281.json b/json/data281.json new file mode 100644 index 0000000000000000000000000000000000000000..c266ad37cf74ac98705c8f1910b47e343c777aef --- /dev/null +++ b/json/data281.json @@ -0,0 +1,17 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data281", + "is_longtail": "True", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Non-motor vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data281.png", + "pre_dec_file": "pre_dec_json\\data281_aligned.json", + "gt_json_file": "json/gt_json\\data281_gt.json" +} \ No newline at end of file diff --git a/json/data282.json b/json/data282.json new file mode 100644 index 0000000000000000000000000000000000000000..f801604d8c218dba3fbdbb5c46c43c5dbe3e8714 --- /dev/null +++ b/json/data282.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.1", + "pic_name": "data282", + "pre_dec_file": "pre_dec_json\\data282_aligned.json", + "gt_json_file": "json/gt_json\\data282_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data282.png" +} \ No newline at end of file diff --git a/json/data283.json b/json/data283.json new file mode 100644 index 0000000000000000000000000000000000000000..d7d9e7aa9c9ea76d5a8e6a2a5271c7ccb06ece68 --- /dev/null +++ b/json/data283.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data283", + "is_longtail": "True", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data283.png", + "pre_dec_file": "pre_dec_json\\data283_aligned.json", + "gt_json_file": "json/gt_json\\data283_gt.json" +} \ No newline at end of file diff --git a/json/data284.json b/json/data284.json new file mode 100644 index 0000000000000000000000000000000000000000..71e200a724a0e6180a2cd459418e60590e7d3353 --- /dev/null +++ b/json/data284.json @@ -0,0 +1,17 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data284", + "is_longtail": "True", + "lt_ele": "Event control", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data284.png", + "pre_dec_file": "pre_dec_json\\data284_aligned.json", + "gt_json_file": "json/gt_json\\data284_gt.json" +} \ No newline at end of file diff --git a/json/data285.json b/json/data285.json new file mode 100644 index 0000000000000000000000000000000000000000..19e291951f6cba87fc3d04cb8e2a6f6f23c0fd00 --- /dev/null +++ b/json/data285.json @@ -0,0 +1,17 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data285", + "is_longtail": "True", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data285.png", + "pre_dec_file": "pre_dec_json\\data285_aligned.json", + "gt_json_file": "json/gt_json\\data285_gt.json" +} \ No newline at end of file diff --git a/json/data286.json b/json/data286.json new file mode 100644 index 0000000000000000000000000000000000000000..118a75d576fceaab802d70c30ac20beb1a95a2b4 --- /dev/null +++ b/json/data286.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data286", + "pre_dec_file": "pre_dec_json\\data286_aligned.json", + "gt_json_file": "json/gt_json\\data286_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data286.png" +} \ No newline at end of file diff --git a/json/data287.json b/json/data287.json new file mode 100644 index 0000000000000000000000000000000000000000..44c602d2aeaa1871ea389466c15960652c0f33a4 --- /dev/null +++ b/json/data287.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data287", + "pre_dec_file": "pre_dec_json\\data287_aligned.json", + "gt_json_file": "json/gt_json\\data287_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data287.png" +} \ No newline at end of file diff --git a/json/data288.json b/json/data288.json new file mode 100644 index 0000000000000000000000000000000000000000..18a64fc115ba790360c832d1283a42b2f60e46e4 --- /dev/null +++ b/json/data288.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data288", + "pre_dec_file": "pre_dec_json\\data288_aligned.json", + "gt_json_file": "json/gt_json\\data288_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data288.png" +} \ No newline at end of file diff --git a/json/data289.json b/json/data289.json new file mode 100644 index 0000000000000000000000000000000000000000..03f4015015210d2c5374df782a908875efe5ad53 --- /dev/null +++ b/json/data289.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data289", + "pre_dec_file": "pre_dec_json\\data289_aligned.json", + "gt_json_file": "json/gt_json\\data289_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data289.png" +} \ No newline at end of file diff --git a/json/data29.json b/json/data29.json new file mode 100644 index 0000000000000000000000000000000000000000..c01d0cdb2d316fd6e1a32dfe36aa2ec23c7e06f2 --- /dev/null +++ b/json/data29.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data29", + "pre_dec_file": "pre_dec_json\\data29_aligned.json", + "gt_json_file": "json/gt_json\\data29_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data29.png" +} \ No newline at end of file diff --git a/json/data290.json b/json/data290.json new file mode 100644 index 0000000000000000000000000000000000000000..8d173f1597bdcb44cf6d9d0b8243970cb107565c --- /dev/null +++ b/json/data290.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data290", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Non-motor vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data290.png", + "pre_dec_file": "pre_dec_json\\data290_aligned.json", + "gt_json_file": "json/gt_json\\data290_gt.json" +} \ No newline at end of file diff --git a/json/data291.json b/json/data291.json new file mode 100644 index 0000000000000000000000000000000000000000..7f33015100dc2cdba6868450f2de1b551f8b1614 --- /dev/null +++ b/json/data291.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data291", + "pre_dec_file": "pre_dec_json\\data291_aligned.json", + "gt_json_file": "json/gt_json\\data291_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data291.png" +} \ No newline at end of file diff --git a/json/data292.json b/json/data292.json new file mode 100644 index 0000000000000000000000000000000000000000..c9a529d801304ac197e58d6a63db21f319bd5f77 --- /dev/null +++ b/json/data292.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data292", + "pre_dec_file": "pre_dec_json\\data292_aligned.json", + "gt_json_file": "json/gt_json\\data292_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data292.png" +} \ No newline at end of file diff --git a/json/data293.json b/json/data293.json new file mode 100644 index 0000000000000000000000000000000000000000..3336617eb2653950ae55b39f168d33eebd63dc80 --- /dev/null +++ b/json/data293.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data293", + "pre_dec_file": "pre_dec_json\\data293_aligned.json", + "gt_json_file": "json/gt_json\\data293_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data293.png" +} \ No newline at end of file diff --git a/json/data294.json b/json/data294.json new file mode 100644 index 0000000000000000000000000000000000000000..2842878baf7d7de54372d2006fd8ba91bf899558 --- /dev/null +++ b/json/data294.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data294", + "pre_dec_file": "pre_dec_json\\data294_aligned.json", + "gt_json_file": "json/gt_json\\data294_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data294.png" +} \ No newline at end of file diff --git a/json/data295.json b/json/data295.json new file mode 100644 index 0000000000000000000000000000000000000000..c12897e5cbcb237e431b67d8785fdc786f9dbef5 --- /dev/null +++ b/json/data295.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data295", + "pre_dec_file": "pre_dec_json\\data295_aligned.json", + "gt_json_file": "json/gt_json\\data295_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data295.png" +} \ No newline at end of file diff --git a/json/data296.json b/json/data296.json new file mode 100644 index 0000000000000000000000000000000000000000..e772e2ad54b3cb9024c07df20f2a63d8c1d0090a --- /dev/null +++ b/json/data296.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data296", + "pre_dec_file": "pre_dec_json\\data296_aligned.json", + "gt_json_file": "json/gt_json\\data296_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data296.png" +} \ No newline at end of file diff --git a/json/data297.json b/json/data297.json new file mode 100644 index 0000000000000000000000000000000000000000..f911c897f74fe80e36a7982562efd93a9add5926 --- /dev/null +++ b/json/data297.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data297", + "pre_dec_file": "pre_dec_json\\data297_aligned.json", + "gt_json_file": "json/gt_json\\data297_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data297.png" +} \ No newline at end of file diff --git a/json/data298.json b/json/data298.json new file mode 100644 index 0000000000000000000000000000000000000000..bcbdc3ffff8b9a383ee6c9aea1258e85e27106fa --- /dev/null +++ b/json/data298.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data298", + "pre_dec_file": "pre_dec_json\\data298_aligned.json", + "gt_json_file": "json/gt_json\\data298_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data298.png" +} \ No newline at end of file diff --git a/json/data299.json b/json/data299.json new file mode 100644 index 0000000000000000000000000000000000000000..515b09ddc1a346d5cdf5c59d57cdf090040429f2 --- /dev/null +++ b/json/data299.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data299", + "pre_dec_file": "pre_dec_json\\data299_aligned.json", + "gt_json_file": "json/gt_json\\data299_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data299.png" +} \ No newline at end of file diff --git a/json/data3.json b/json/data3.json new file mode 100644 index 0000000000000000000000000000000000000000..57bb07f583d806405dc3d464e90edb52f3a34bfb --- /dev/null +++ b/json/data3.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data3", + "is_longtail": "True", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data3.png", + "pre_dec_file": "pre_dec_json\\data3_aligned.json", + "gt_json_file": "json/gt_json\\data3_gt.json" +} \ No newline at end of file diff --git a/json/data30.json b/json/data30.json new file mode 100644 index 0000000000000000000000000000000000000000..1c2e26c070b26ff56c9a67c286eac613bb56eb34 --- /dev/null +++ b/json/data30.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data30", + "pre_dec_file": "pre_dec_json\\data30_aligned.json", + "gt_json_file": "json/gt_json\\data30_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data30.png" +} \ No newline at end of file diff --git a/json/data300.json b/json/data300.json new file mode 100644 index 0000000000000000000000000000000000000000..91b52c184d202fc31e020e6d1571201c72608fcf --- /dev/null +++ b/json/data300.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data300", + "pre_dec_file": "pre_dec_json\\data300_aligned.json", + "gt_json_file": "json/gt_json\\data300_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Low-speed heavy vehicles", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data300.png" +} \ No newline at end of file diff --git a/json/data301.json b/json/data301.json new file mode 100644 index 0000000000000000000000000000000000000000..b69cd66f7752a8752425d4b2549c5310098eb70b --- /dev/null +++ b/json/data301.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data301", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data301.png", + "pre_dec_file": "pre_dec_json\\data301_aligned.json", + "gt_json_file": "json/gt_json\\data301_gt.json" +} \ No newline at end of file diff --git a/json/data302.json b/json/data302.json new file mode 100644 index 0000000000000000000000000000000000000000..23b58bd8d06d076f9d3e8d91768b77eac014583b --- /dev/null +++ b/json/data302.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data302", + "pre_dec_file": "pre_dec_json\\data302_aligned.json", + "gt_json_file": "json/gt_json\\data302_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data302.png" +} \ No newline at end of file diff --git a/json/data303.json b/json/data303.json new file mode 100644 index 0000000000000000000000000000000000000000..a38cb8902b54c7c527955c6f9387b5d61ef67d4b --- /dev/null +++ b/json/data303.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data303", + "pre_dec_file": "pre_dec_json\\data303_aligned.json", + "gt_json_file": "json/gt_json\\data303_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data303.png" +} \ No newline at end of file diff --git a/json/data304.json b/json/data304.json new file mode 100644 index 0000000000000000000000000000000000000000..70f1b3a706830d80aedaf81c1deca038b5fccd5b --- /dev/null +++ b/json/data304.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data304", + "pre_dec_file": "pre_dec_json\\data304_aligned.json", + "gt_json_file": "json/gt_json\\data304_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data304.png" +} \ No newline at end of file diff --git a/json/data305.json b/json/data305.json new file mode 100644 index 0000000000000000000000000000000000000000..b1d1206a658e5af7817370998c6519ad76947038 --- /dev/null +++ b/json/data305.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data305", + "pre_dec_file": "pre_dec_json\\data305_aligned.json", + "gt_json_file": "json/gt_json\\data305_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data305.png" +} \ No newline at end of file diff --git a/json/data306.json b/json/data306.json new file mode 100644 index 0000000000000000000000000000000000000000..de0348e4f700161df65fae03def06e27c2ddca4f --- /dev/null +++ b/json/data306.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data306", + "pre_dec_file": "pre_dec_json\\data306_aligned.json", + "gt_json_file": "json/gt_json\\data306_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data306.png" +} \ No newline at end of file diff --git a/json/data307.json b/json/data307.json new file mode 100644 index 0000000000000000000000000000000000000000..3b89e8a9aee07079fbafa9cd2bf1d60caee4023a --- /dev/null +++ b/json/data307.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data307", + "pre_dec_file": "pre_dec_json\\data307_aligned.json", + "gt_json_file": "json/gt_json\\data307_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data307.png" +} \ No newline at end of file diff --git a/json/data308.json b/json/data308.json new file mode 100644 index 0000000000000000000000000000000000000000..fbaabf0f282dc7f33c1aecd6b75c0b8cd7a273ae --- /dev/null +++ b/json/data308.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data308", + "pre_dec_file": "pre_dec_json\\data308_aligned.json", + "gt_json_file": "json/gt_json\\data308_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data308.png" +} \ No newline at end of file diff --git a/json/data309.json b/json/data309.json new file mode 100644 index 0000000000000000000000000000000000000000..d051b918286c0916e9ff3b1d8f23a9c1be9ccf65 --- /dev/null +++ b/json/data309.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data309", + "pre_dec_file": "pre_dec_json\\data309_aligned.json", + "gt_json_file": "json/gt_json\\data309_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data309.png" +} \ No newline at end of file diff --git a/json/data31.json b/json/data31.json new file mode 100644 index 0000000000000000000000000000000000000000..d72f610273eea283892398b9ec2e09d9d17b6379 --- /dev/null +++ b/json/data31.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.3", + "pic_name": "data31", + "pre_dec_file": "pre_dec_json\\data31_aligned.json", + "gt_json_file": "json/gt_json\\data31_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-Parking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data31.png" +} \ No newline at end of file diff --git a/json/data310.json b/json/data310.json new file mode 100644 index 0000000000000000000000000000000000000000..d3f48368e61ad6a47856a688400ce93ef96ac159 --- /dev/null +++ b/json/data310.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data310", + "pre_dec_file": "pre_dec_json\\data310_aligned.json", + "gt_json_file": "json/gt_json\\data310_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data310.png" +} \ No newline at end of file diff --git a/json/data311.json b/json/data311.json new file mode 100644 index 0000000000000000000000000000000000000000..dee1c3cc8f962e8fac4db48b6ad24f7fb678b245 --- /dev/null +++ b/json/data311.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data311", + "pre_dec_file": "pre_dec_json\\data311_aligned.json", + "gt_json_file": "json/gt_json\\data311_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data311.png" +} \ No newline at end of file diff --git a/json/data312.json b/json/data312.json new file mode 100644 index 0000000000000000000000000000000000000000..ed5ed626895b541fd3ba888a03b0679d8e133e91 --- /dev/null +++ b/json/data312.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data312", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data312.png", + "pre_dec_file": "pre_dec_json\\data312_aligned.json", + "gt_json_file": "json/gt_json\\data312_gt.json" +} \ No newline at end of file diff --git a/json/data313.json b/json/data313.json new file mode 100644 index 0000000000000000000000000000000000000000..d1dd7942b826e031db1db6bc92c1e1a5d8d05722 --- /dev/null +++ b/json/data313.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data313", + "pre_dec_file": "pre_dec_json\\data313_aligned.json", + "gt_json_file": "json/gt_json\\data313_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data313.png" +} \ No newline at end of file diff --git a/json/data314.json b/json/data314.json new file mode 100644 index 0000000000000000000000000000000000000000..4458612774fb377f80ca9370464962ce0706c056 --- /dev/null +++ b/json/data314.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data314", + "pre_dec_file": "pre_dec_json\\data314_aligned.json", + "gt_json_file": "json/gt_json\\data314_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data314.png" +} \ No newline at end of file diff --git a/json/data315.json b/json/data315.json new file mode 100644 index 0000000000000000000000000000000000000000..a47ecc30c554fd445550ec20885d042b58caf003 --- /dev/null +++ b/json/data315.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data315", + "pre_dec_file": "pre_dec_json\\data315_aligned.json", + "gt_json_file": "json/gt_json\\data315_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data315.png" +} \ No newline at end of file diff --git a/json/data316.json b/json/data316.json new file mode 100644 index 0000000000000000000000000000000000000000..1f0956ecf4d57b3784102139cf356fda5255ef97 --- /dev/null +++ b/json/data316.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.2", + "pic_name": "data316", + "pre_dec_file": "pre_dec_json\\data316_aligned.json", + "gt_json_file": "json/gt_json\\data316_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data316.png" +} \ No newline at end of file diff --git a/json/data317.json b/json/data317.json new file mode 100644 index 0000000000000000000000000000000000000000..c000c51b2fb0b31b6527213d182f7dbeed9472f7 --- /dev/null +++ b/json/data317.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data317", + "pre_dec_file": "pre_dec_json\\data317_aligned.json", + "gt_json_file": "json/gt_json\\data317_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data317.png" +} \ No newline at end of file diff --git a/json/data318.json b/json/data318.json new file mode 100644 index 0000000000000000000000000000000000000000..6880d0a4f50fd1bf5b70b1fbcdd85a0c1faab9e8 --- /dev/null +++ b/json/data318.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data318", + "pre_dec_file": "pre_dec_json\\data318_aligned.json", + "gt_json_file": "json/gt_json\\data318_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data318.png" +} \ No newline at end of file diff --git a/json/data319.json b/json/data319.json new file mode 100644 index 0000000000000000000000000000000000000000..d73abff92f8fc9a0fdf91331532819bcbc7d4eca --- /dev/null +++ b/json/data319.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data319", + "pre_dec_file": "pre_dec_json\\data319_aligned.json", + "gt_json_file": "json/gt_json\\data319_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data319.png" +} \ No newline at end of file diff --git a/json/data32.json b/json/data32.json new file mode 100644 index 0000000000000000000000000000000000000000..543aa08bc37903e3242e5b0429a0aa6fcb72d077 --- /dev/null +++ b/json/data32.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data32", + "is_longtail": "True", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data32.png", + "pre_dec_file": "pre_dec_json\\data32_aligned.json", + "gt_json_file": "json/gt_json\\data32_gt.json" +} \ No newline at end of file diff --git a/json/data320.json b/json/data320.json new file mode 100644 index 0000000000000000000000000000000000000000..2cbc2b96ec57f5c1c94c7144d934f37908f4f7ab --- /dev/null +++ b/json/data320.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data320", + "pre_dec_file": "pre_dec_json\\data320_aligned.json", + "gt_json_file": "json/gt_json\\data320_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data320.png" +} \ No newline at end of file diff --git a/json/data321.json b/json/data321.json new file mode 100644 index 0000000000000000000000000000000000000000..ced3560344fd9709dfa7981e667ac80ec8f3a1dc --- /dev/null +++ b/json/data321.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data321", + "pre_dec_file": "pre_dec_json\\data321_aligned.json", + "gt_json_file": "json/gt_json\\data321_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data321.png" +} \ No newline at end of file diff --git a/json/data322.json b/json/data322.json new file mode 100644 index 0000000000000000000000000000000000000000..f85c339550680c622732b45c2fb69451aac99808 --- /dev/null +++ b/json/data322.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data322", + "pre_dec_file": "pre_dec_json\\data322_aligned.json", + "gt_json_file": "json/gt_json\\data322_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data322.png" +} \ No newline at end of file diff --git a/json/data323.json b/json/data323.json new file mode 100644 index 0000000000000000000000000000000000000000..dc8e85bd3e705870b7a43437b8dfdc4ad499ea31 --- /dev/null +++ b/json/data323.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data323", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data323.png", + "pre_dec_file": "pre_dec_json\\data323_aligned.json", + "gt_json_file": "json/gt_json\\data323_gt.json" +} \ No newline at end of file diff --git a/json/data324.json b/json/data324.json new file mode 100644 index 0000000000000000000000000000000000000000..04d14a6ed551f40a06fb664e9e6b21d94ece7f97 --- /dev/null +++ b/json/data324.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data324", + "pre_dec_file": "pre_dec_json\\data324_aligned.json", + "gt_json_file": "json/gt_json\\data324_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data324.png" +} \ No newline at end of file diff --git a/json/data325.json b/json/data325.json new file mode 100644 index 0000000000000000000000000000000000000000..ca2d4b6659067ca9dd4d79e9c23f5587b6c9f083 --- /dev/null +++ b/json/data325.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data325", + "pre_dec_file": "pre_dec_json\\data325_aligned.json", + "gt_json_file": "json/gt_json\\data325_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data325.png" +} \ No newline at end of file diff --git a/json/data326.json b/json/data326.json new file mode 100644 index 0000000000000000000000000000000000000000..30781e0f42c6e48599fcbdd06925dcf8df744f94 --- /dev/null +++ b/json/data326.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data326", + "pre_dec_file": "pre_dec_json\\data326_aligned.json", + "gt_json_file": "json/gt_json\\data326_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data326.png" +} \ No newline at end of file diff --git a/json/data327.json b/json/data327.json new file mode 100644 index 0000000000000000000000000000000000000000..2f80a6553f59b01e06c3d1f4cd0d080ea4706908 --- /dev/null +++ b/json/data327.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data327", + "pre_dec_file": "pre_dec_json\\data327_aligned.json", + "gt_json_file": "json/gt_json\\data327_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data327.png" +} \ No newline at end of file diff --git a/json/data328.json b/json/data328.json new file mode 100644 index 0000000000000000000000000000000000000000..386a0cf6fcb64f6991bbf1a58382c32efa9f3e16 --- /dev/null +++ b/json/data328.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data328", + "pre_dec_file": "pre_dec_json\\data328_aligned.json", + "gt_json_file": "json/gt_json\\data328_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data328.png" +} \ No newline at end of file diff --git a/json/data329.json b/json/data329.json new file mode 100644 index 0000000000000000000000000000000000000000..10112734fb41e52ef98363ecc0b7038679b5a0dc --- /dev/null +++ b/json/data329.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data329", + "pre_dec_file": "pre_dec_json\\data329_aligned.json", + "gt_json_file": "json/gt_json\\data329_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data329.png" +} \ No newline at end of file diff --git a/json/data33.json b/json/data33.json new file mode 100644 index 0000000000000000000000000000000000000000..5ad0def7c42d4c01ae1a3526ca955ee0ae2249d1 --- /dev/null +++ b/json/data33.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data33", + "pre_dec_file": "pre_dec_json\\data33_aligned.json", + "gt_json_file": "json/gt_json\\data33_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data33.png" +} \ No newline at end of file diff --git a/json/data330.json b/json/data330.json new file mode 100644 index 0000000000000000000000000000000000000000..9784028d8516af328a9507c09e87b13bb8980831 --- /dev/null +++ b/json/data330.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.2", + "pic_name": "data330", + "pre_dec_file": "pre_dec_json\\data330_aligned.json", + "gt_json_file": "json/gt_json\\data330_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data330.png" +} \ No newline at end of file diff --git a/json/data331.json b/json/data331.json new file mode 100644 index 0000000000000000000000000000000000000000..e918f253804b9b438abd22820b6d9a0c749f4bc1 --- /dev/null +++ b/json/data331.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data331", + "pre_dec_file": "pre_dec_json\\data331_aligned.json", + "gt_json_file": "json/gt_json\\data331_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data331.png" +} \ No newline at end of file diff --git a/json/data332.json b/json/data332.json new file mode 100644 index 0000000000000000000000000000000000000000..9f30e6c54735d8d5acc4a4055e40c5aa91dbef67 --- /dev/null +++ b/json/data332.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data332", + "pre_dec_file": "pre_dec_json\\data332_aligned.json", + "gt_json_file": "json/gt_json\\data332_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data332.png" +} \ No newline at end of file diff --git a/json/data333.json b/json/data333.json new file mode 100644 index 0000000000000000000000000000000000000000..34139f2453b2cb795a8c07531e4d988c13850137 --- /dev/null +++ b/json/data333.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data333", + "pre_dec_file": "pre_dec_json\\data333_aligned.json", + "gt_json_file": "json/gt_json\\data333_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data333.png" +} \ No newline at end of file diff --git a/json/data334.json b/json/data334.json new file mode 100644 index 0000000000000000000000000000000000000000..68670883c47eee0b0adb9b8e255c36835fd156ad --- /dev/null +++ b/json/data334.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data334", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Non-motor vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data334.png", + "pre_dec_file": "pre_dec_json\\data334_aligned.json", + "gt_json_file": "json/gt_json\\data334_gt.json" +} \ No newline at end of file diff --git a/json/data335.json b/json/data335.json new file mode 100644 index 0000000000000000000000000000000000000000..b8f55902d1990d41a93b55dddc4ac520aa3eb40e --- /dev/null +++ b/json/data335.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data335", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data335.png", + "pre_dec_file": "pre_dec_json\\data335_aligned.json", + "gt_json_file": "json/gt_json\\data335_gt.json" +} \ No newline at end of file diff --git a/json/data336.json b/json/data336.json new file mode 100644 index 0000000000000000000000000000000000000000..d6b918f4909fb3bbdbaffa27b2bc67ba3a96bba9 --- /dev/null +++ b/json/data336.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data336", + "pre_dec_file": "pre_dec_json\\data336_aligned.json", + "gt_json_file": "json/gt_json\\data336_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data336.png" +} \ No newline at end of file diff --git a/json/data337.json b/json/data337.json new file mode 100644 index 0000000000000000000000000000000000000000..9e4044308a54a27337f811329d6d0a96ba028543 --- /dev/null +++ b/json/data337.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data337", + "pre_dec_file": "pre_dec_json\\data337_aligned.json", + "gt_json_file": "json/gt_json\\data337_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data337.png" +} \ No newline at end of file diff --git a/json/data338.json b/json/data338.json new file mode 100644 index 0000000000000000000000000000000000000000..db8fe6e793161ef237cdab74dc6e3cbfb5d33fb4 --- /dev/null +++ b/json/data338.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data338", + "pre_dec_file": "pre_dec_json\\data338_aligned.json", + "gt_json_file": "json/gt_json\\data338_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data338.png" +} \ No newline at end of file diff --git a/json/data339.json b/json/data339.json new file mode 100644 index 0000000000000000000000000000000000000000..c24487221ae01c638a2acc4700c4b5822c816d6d --- /dev/null +++ b/json/data339.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data339", + "pre_dec_file": "pre_dec_json\\data339_aligned.json", + "gt_json_file": "json/gt_json\\data339_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data339.png" +} \ No newline at end of file diff --git a/json/data34.json b/json/data34.json new file mode 100644 index 0000000000000000000000000000000000000000..d6cb8cb3fadc6044ab3aa6c7e31f305485891d68 --- /dev/null +++ b/json/data34.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data34", + "pre_dec_file": "pre_dec_json\\data34_aligned.json", + "gt_json_file": "json/gt_json\\data34_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data34.png" +} \ No newline at end of file diff --git a/json/data340.json b/json/data340.json new file mode 100644 index 0000000000000000000000000000000000000000..8a87f828716351850fa3789a0012f049db62f998 --- /dev/null +++ b/json/data340.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data340", + "pre_dec_file": "pre_dec_json\\data340_aligned.json", + "gt_json_file": "json/gt_json\\data340_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data340.png" +} \ No newline at end of file diff --git a/json/data341.json b/json/data341.json new file mode 100644 index 0000000000000000000000000000000000000000..eb4baf5037a36da36d0e95e98d3d2852be2cb1eb --- /dev/null +++ b/json/data341.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data341", + "pre_dec_file": "pre_dec_json\\data341_aligned.json", + "gt_json_file": "json/gt_json\\data341_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data341.png" +} \ No newline at end of file diff --git a/json/data342.json b/json/data342.json new file mode 100644 index 0000000000000000000000000000000000000000..68d5e9efd9e6ff5717071227d726dcfd5148d5e0 --- /dev/null +++ b/json/data342.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data342", + "pre_dec_file": "pre_dec_json\\data342_aligned.json", + "gt_json_file": "json/gt_json\\data342_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data342.png" +} \ No newline at end of file diff --git a/json/data343.json b/json/data343.json new file mode 100644 index 0000000000000000000000000000000000000000..5edd47b3095095cea408b9ad52ad3f4df15e0c92 --- /dev/null +++ b/json/data343.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data343", + "pre_dec_file": "pre_dec_json\\data343_aligned.json", + "gt_json_file": "json/gt_json\\data343_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data343.png" +} \ No newline at end of file diff --git a/json/data344.json b/json/data344.json new file mode 100644 index 0000000000000000000000000000000000000000..0e6d4e1562da2c55651acea22b76d0d382db05f0 --- /dev/null +++ b/json/data344.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data344", + "pre_dec_file": "pre_dec_json\\data344_aligned.json", + "gt_json_file": "json/gt_json\\data344_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data344.png" +} \ No newline at end of file diff --git a/json/data345.json b/json/data345.json new file mode 100644 index 0000000000000000000000000000000000000000..1977b0c4305b8c72015183accb8722bba0517a4f --- /dev/null +++ b/json/data345.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data345", + "pre_dec_file": "pre_dec_json\\data345_aligned.json", + "gt_json_file": "json/gt_json\\data345_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data345.png" +} \ No newline at end of file diff --git a/json/data346.json b/json/data346.json new file mode 100644 index 0000000000000000000000000000000000000000..cd8503eb9cfba2f9a654e9967c3501492bbba4c8 --- /dev/null +++ b/json/data346.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data346", + "pre_dec_file": "pre_dec_json\\data346_aligned.json", + "gt_json_file": "json/gt_json\\data346_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data346.png" +} \ No newline at end of file diff --git a/json/data347.json b/json/data347.json new file mode 100644 index 0000000000000000000000000000000000000000..48fed1b3047e3a136ef6fa6380fb0dc2c60960bc --- /dev/null +++ b/json/data347.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data347", + "pre_dec_file": "pre_dec_json\\data347_aligned.json", + "gt_json_file": "json/gt_json\\data347_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data347.png" +} \ No newline at end of file diff --git a/json/data348.json b/json/data348.json new file mode 100644 index 0000000000000000000000000000000000000000..1d6f89ad4fb3107ee826f01273046b3a7330215c --- /dev/null +++ b/json/data348.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.1", + "pic_name": "data348", + "pre_dec_file": "pre_dec_json\\data348_aligned.json", + "gt_json_file": "json/gt_json\\data348_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data348.png" +} \ No newline at end of file diff --git a/json/data349.json b/json/data349.json new file mode 100644 index 0000000000000000000000000000000000000000..4b7c999dda25b70574f0619ed443bdc0663bc79f --- /dev/null +++ b/json/data349.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.3", + "pic_name": "data349", + "pre_dec_file": "pre_dec_json\\data349_aligned.json", + "gt_json_file": "json/gt_json\\data349_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Sand and dust", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data349.png" +} \ No newline at end of file diff --git a/json/data35.json b/json/data35.json new file mode 100644 index 0000000000000000000000000000000000000000..d9fce0752ea35a2cd0f12ab31033790e8a99e980 --- /dev/null +++ b/json/data35.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data35", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data35.png", + "pre_dec_file": "pre_dec_json\\data35_aligned.json", + "gt_json_file": "json/gt_json\\data35_gt.json" +} \ No newline at end of file diff --git a/json/data350.json b/json/data350.json new file mode 100644 index 0000000000000000000000000000000000000000..cc3a93dca86c4f436e2b5230c2f8c7ff69b6b8fb --- /dev/null +++ b/json/data350.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data350", + "pre_dec_file": "pre_dec_json\\data350_aligned.json", + "gt_json_file": "json/gt_json\\data350_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data350.png" +} \ No newline at end of file diff --git a/json/data351.json b/json/data351.json new file mode 100644 index 0000000000000000000000000000000000000000..72b2d7cc98b081abbc66ed6d37901d105f244df7 --- /dev/null +++ b/json/data351.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data351", + "pre_dec_file": "pre_dec_json\\data351_aligned.json", + "gt_json_file": "json/gt_json\\data351_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data351.png" +} \ No newline at end of file diff --git a/json/data352.json b/json/data352.json new file mode 100644 index 0000000000000000000000000000000000000000..49f5d4c78492b8fbade5d5f74255441ca5361953 --- /dev/null +++ b/json/data352.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.3", + "pic_name": "data352", + "pre_dec_file": "pre_dec_json\\data352_aligned.json", + "gt_json_file": "json/gt_json\\data352_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Sand and dust", + "acc_factors": [ + "Non-motor vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data352.png" +} \ No newline at end of file diff --git a/json/data353.json b/json/data353.json new file mode 100644 index 0000000000000000000000000000000000000000..ce6dc820f54caa1280e3b80305efd72fcf6e44d3 --- /dev/null +++ b/json/data353.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data353", + "pre_dec_file": "pre_dec_json\\data353_aligned.json", + "gt_json_file": "json/gt_json\\data353_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data353.png" +} \ No newline at end of file diff --git a/json/data354.json b/json/data354.json new file mode 100644 index 0000000000000000000000000000000000000000..386275463207d28b32ddf5b3aab81429be805ebb --- /dev/null +++ b/json/data354.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data354", + "pre_dec_file": "pre_dec_json\\data354_aligned.json", + "gt_json_file": "json/gt_json\\data354_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data354.png" +} \ No newline at end of file diff --git a/json/data355.json b/json/data355.json new file mode 100644 index 0000000000000000000000000000000000000000..6a99f781115dd90355ed6800e65785e6c2610092 --- /dev/null +++ b/json/data355.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data355", + "pre_dec_file": "pre_dec_json\\data355_aligned.json", + "gt_json_file": "json/gt_json\\data355_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data355.png" +} \ No newline at end of file diff --git a/json/data356.json b/json/data356.json new file mode 100644 index 0000000000000000000000000000000000000000..f9592baf9d4f0d5d1bf573bc9e97fcde48a5af3d --- /dev/null +++ b/json/data356.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data356", + "pre_dec_file": "pre_dec_json\\data356_aligned.json", + "gt_json_file": "json/gt_json\\data356_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data356.png" +} \ No newline at end of file diff --git a/json/data357.json b/json/data357.json new file mode 100644 index 0000000000000000000000000000000000000000..f9429908cb0cce2d964c4b759da2ea49e0953a49 --- /dev/null +++ b/json/data357.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data357", + "pre_dec_file": "pre_dec_json\\data357_aligned.json", + "gt_json_file": "json/gt_json\\data357_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data357.png" +} \ No newline at end of file diff --git a/json/data358.json b/json/data358.json new file mode 100644 index 0000000000000000000000000000000000000000..26f16bfff1f6aa54ef402b0546a724e400f65320 --- /dev/null +++ b/json/data358.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data358", + "pre_dec_file": "pre_dec_json\\data358_aligned.json", + "gt_json_file": "json/gt_json\\data358_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data358.png" +} \ No newline at end of file diff --git a/json/data359.json b/json/data359.json new file mode 100644 index 0000000000000000000000000000000000000000..06047016902f2d9a955a7cb9c6611e61b70837ef --- /dev/null +++ b/json/data359.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data359", + "pre_dec_file": "pre_dec_json\\data359_aligned.json", + "gt_json_file": "json/gt_json\\data359_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data359.png" +} \ No newline at end of file diff --git a/json/data36.json b/json/data36.json new file mode 100644 index 0000000000000000000000000000000000000000..241357b4040bc542aa9a6e5f1bcdb7d4a40fe954 --- /dev/null +++ b/json/data36.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data36", + "pre_dec_file": "pre_dec_json\\data36_aligned.json", + "gt_json_file": "json/gt_json\\data36_gt.json", + "is_longtail": "True", + "Sup_description": "Navigation information shows that the current road section is closed and impassable", + "lt_ele": "Information conflict", + "acc_factors": [ + "Non-motor vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data36.png" +} \ No newline at end of file diff --git a/json/data360.json b/json/data360.json new file mode 100644 index 0000000000000000000000000000000000000000..75e0a5c891f7a807ae7cf360f4ad191a2743c125 --- /dev/null +++ b/json/data360.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data360", + "pre_dec_file": "pre_dec_json\\data360_aligned.json", + "gt_json_file": "json/gt_json\\data360_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data360.png" +} \ No newline at end of file diff --git a/json/data361.json b/json/data361.json new file mode 100644 index 0000000000000000000000000000000000000000..23d5a566696541d338648df5b013022651b41443 --- /dev/null +++ b/json/data361.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data361", + "pre_dec_file": "pre_dec_json\\data361_aligned.json", + "gt_json_file": "json/gt_json\\data361_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data361.png" +} \ No newline at end of file diff --git a/json/data362.json b/json/data362.json new file mode 100644 index 0000000000000000000000000000000000000000..47b942614d8675b5846ab41fc25e741a826be689 --- /dev/null +++ b/json/data362.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data362", + "pre_dec_file": "pre_dec_json\\data362_aligned.json", + "gt_json_file": "json/gt_json\\data362_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data362.png" +} \ No newline at end of file diff --git a/json/data363.json b/json/data363.json new file mode 100644 index 0000000000000000000000000000000000000000..45a1e78c3402305cd0e8fad91007d77b3a950e6f --- /dev/null +++ b/json/data363.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data363", + "pre_dec_file": "pre_dec_json\\data363_aligned.json", + "gt_json_file": "json/gt_json\\data363_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data363.png" +} \ No newline at end of file diff --git a/json/data364.json b/json/data364.json new file mode 100644 index 0000000000000000000000000000000000000000..6eae1371f2a180d47d9f3a8ec4ce024b24583e2b --- /dev/null +++ b/json/data364.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data364", + "pre_dec_file": "pre_dec_json\\data364_aligned.json", + "gt_json_file": "json/gt_json\\data364_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data364.png" +} \ No newline at end of file diff --git a/json/data365.json b/json/data365.json new file mode 100644 index 0000000000000000000000000000000000000000..002cab0024b6d68a083cad143e0e40145b94a012 --- /dev/null +++ b/json/data365.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data365", + "pre_dec_file": "pre_dec_json\\data365_aligned.json", + "gt_json_file": "json/gt_json\\data365_gt.json", + "is_longtail": "False", + "Sup_description": "", + "lt_ele": "", + "acc_factors": [], + "post_dec": "", + "pic_path": "..\\pic\\data365.png" +} \ No newline at end of file diff --git a/json/data366.json b/json/data366.json new file mode 100644 index 0000000000000000000000000000000000000000..7113bcbcf5cc03ae420a45afc496937ac9538524 --- /dev/null +++ b/json/data366.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data366", + "pre_dec_file": "pre_dec_json\\data366_aligned.json", + "gt_json_file": "json/gt_json\\data366_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data366.png" +} \ No newline at end of file diff --git a/json/data367.json b/json/data367.json new file mode 100644 index 0000000000000000000000000000000000000000..2d8c74756558a328bbd3b3bd5b14be66b9746041 --- /dev/null +++ b/json/data367.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data367", + "pre_dec_file": "pre_dec_json\\data367_aligned.json", + "gt_json_file": "json/gt_json\\data367_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data367.png" +} \ No newline at end of file diff --git a/json/data368.json b/json/data368.json new file mode 100644 index 0000000000000000000000000000000000000000..e00d01d64abd0b57f8c427b99670f341d4de5f2d --- /dev/null +++ b/json/data368.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data368", + "pre_dec_file": "pre_dec_json\\data368_aligned.json", + "gt_json_file": "json/gt_json\\data368_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data368.png" +} \ No newline at end of file diff --git a/json/data369.json b/json/data369.json new file mode 100644 index 0000000000000000000000000000000000000000..8a846acdbd49249109234906c64dc10d1b78d0a4 --- /dev/null +++ b/json/data369.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data369", + "pre_dec_file": "pre_dec_json\\data369_aligned.json", + "gt_json_file": "json/gt_json\\data369_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data369.png" +} \ No newline at end of file diff --git a/json/data37.json b/json/data37.json new file mode 100644 index 0000000000000000000000000000000000000000..538fd7052c8492a06a65b9a2ebe8a4e54788c98d --- /dev/null +++ b/json/data37.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.1", + "pic_name": "data37", + "pre_dec_file": "pre_dec_json\\data37_aligned.json", + "gt_json_file": "json/gt_json\\data37_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data37.png" +} \ No newline at end of file diff --git a/json/data370.json b/json/data370.json new file mode 100644 index 0000000000000000000000000000000000000000..66b55062ee955af29b6bca23bb5fe8746ab0e179 --- /dev/null +++ b/json/data370.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data370", + "pre_dec_file": "pre_dec_json\\data370_aligned.json", + "gt_json_file": "json/gt_json\\data370_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data370.png" +} \ No newline at end of file diff --git a/json/data371.json b/json/data371.json new file mode 100644 index 0000000000000000000000000000000000000000..d15b2fb43037bae1980c35d7db5256e57e83ab82 --- /dev/null +++ b/json/data371.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data371", + "pre_dec_file": "pre_dec_json\\data371_aligned.json", + "gt_json_file": "json/gt_json\\data371_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data371.png" +} \ No newline at end of file diff --git a/json/data372.json b/json/data372.json new file mode 100644 index 0000000000000000000000000000000000000000..5b37f62716810f7789b22c618b2dda8185ec49f0 --- /dev/null +++ b/json/data372.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data372", + "pre_dec_file": "pre_dec_json\\data372_aligned.json", + "gt_json_file": "json/gt_json\\data372_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data372.png" +} \ No newline at end of file diff --git a/json/data373.json b/json/data373.json new file mode 100644 index 0000000000000000000000000000000000000000..810ad22006e1dc00aaaa96752f5a749137e71751 --- /dev/null +++ b/json/data373.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data373", + "pre_dec_file": "pre_dec_json\\data373_aligned.json", + "gt_json_file": "json/gt_json\\data373_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data373.png" +} \ No newline at end of file diff --git a/json/data374.json b/json/data374.json new file mode 100644 index 0000000000000000000000000000000000000000..a659ca49fe1b9ab2159861e8d616e42513efe2e8 --- /dev/null +++ b/json/data374.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data374", + "pre_dec_file": "pre_dec_json\\data374_aligned.json", + "gt_json_file": "json/gt_json\\data374_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data374.png" +} \ No newline at end of file diff --git a/json/data375.json b/json/data375.json new file mode 100644 index 0000000000000000000000000000000000000000..29bacfab2ff6a95f07e6eed5cc90cf318b663966 --- /dev/null +++ b/json/data375.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.4", + "pic_name": "data375", + "pre_dec_file": "pre_dec_json\\data375_aligned.json", + "gt_json_file": "json/gt_json\\data375_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "non-motorized vehicle", + "acc_factors": [ + "Non-motor vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data375.png" +} \ No newline at end of file diff --git a/json/data376.json b/json/data376.json new file mode 100644 index 0000000000000000000000000000000000000000..86063bde6be27ed408c0025d6f8f813829e40a55 --- /dev/null +++ b/json/data376.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data376", + "pre_dec_file": "pre_dec_json\\data376_aligned.json", + "gt_json_file": "json/gt_json\\data376_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data376.png" +} \ No newline at end of file diff --git a/json/data377.json b/json/data377.json new file mode 100644 index 0000000000000000000000000000000000000000..0fabf6e7c9d7b2042f9d6c1e2c711a847d115bee --- /dev/null +++ b/json/data377.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.2", + "pic_name": "data377", + "pre_dec_file": "pre_dec_json\\data377_aligned.json", + "gt_json_file": "json/gt_json\\data377_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data377.png" +} \ No newline at end of file diff --git a/json/data378.json b/json/data378.json new file mode 100644 index 0000000000000000000000000000000000000000..07f6f183a595098420345d93ad16f48c7914969e --- /dev/null +++ b/json/data378.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data378", + "pre_dec_file": "pre_dec_json\\data378_aligned.json", + "gt_json_file": "json/gt_json\\data378_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data378.png" +} \ No newline at end of file diff --git a/json/data379.json b/json/data379.json new file mode 100644 index 0000000000000000000000000000000000000000..a76d37f5b680cb0358e10a8ed0f7f4311566e1d0 --- /dev/null +++ b/json/data379.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data379", + "pre_dec_file": "pre_dec_json\\data379_aligned.json", + "gt_json_file": "json/gt_json\\data379_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data379.png" +} \ No newline at end of file diff --git a/json/data38.json b/json/data38.json new file mode 100644 index 0000000000000000000000000000000000000000..a650ea6df2f60cb68ed373e5b09fc0935d3065e4 --- /dev/null +++ b/json/data38.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.1", + "pic_name": "data38", + "pre_dec_file": "pre_dec_json\\data38_aligned.json", + "gt_json_file": "json/gt_json\\data38_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data38.png" +} \ No newline at end of file diff --git a/json/data380.json b/json/data380.json new file mode 100644 index 0000000000000000000000000000000000000000..9b352d0a4b35a043f4be3facd63b3663ff20cabd --- /dev/null +++ b/json/data380.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data380", + "pre_dec_file": "pre_dec_json\\data380_aligned.json", + "gt_json_file": "json/gt_json\\data380_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data380.png" +} \ No newline at end of file diff --git a/json/data381.json b/json/data381.json new file mode 100644 index 0000000000000000000000000000000000000000..d0fd489cd9001018d7989c3665c601aa41746499 --- /dev/null +++ b/json/data381.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data381", + "pre_dec_file": "pre_dec_json\\data381_aligned.json", + "gt_json_file": "json/gt_json\\data381_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data381.png" +} \ No newline at end of file diff --git a/json/data382.json b/json/data382.json new file mode 100644 index 0000000000000000000000000000000000000000..b86d45b1fec6234c67dec10615be9f9cc80ef2e1 --- /dev/null +++ b/json/data382.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data382", + "pre_dec_file": "pre_dec_json\\data382_aligned.json", + "gt_json_file": "json/gt_json\\data382_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data382.png" +} \ No newline at end of file diff --git a/json/data383.json b/json/data383.json new file mode 100644 index 0000000000000000000000000000000000000000..4c6c0abc9dc71d2f15bbe2fa10b7f76e61fd91ea --- /dev/null +++ b/json/data383.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data383", + "pre_dec_file": "pre_dec_json\\data383_aligned.json", + "gt_json_file": "json/gt_json\\data383_gt.json", + "is_longtail": "False", + "Sup_description": "", + "lt_ele": "", + "acc_factors": [], + "post_dec": "", + "pic_path": "..\\pic\\data383.png" +} \ No newline at end of file diff --git a/json/data384.json b/json/data384.json new file mode 100644 index 0000000000000000000000000000000000000000..2b864c96c0304eec675f13ca6ebfade9862240e1 --- /dev/null +++ b/json/data384.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data384", + "pre_dec_file": "pre_dec_json\\data384_aligned.json", + "gt_json_file": "json/gt_json\\data384_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data384.png" +} \ No newline at end of file diff --git a/json/data385.json b/json/data385.json new file mode 100644 index 0000000000000000000000000000000000000000..94a2d800790c8958327a6ed104d6bb4f7ee0d6b4 --- /dev/null +++ b/json/data385.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.1", + "pic_name": "data385", + "pre_dec_file": "pre_dec_json\\data385_aligned.json", + "gt_json_file": "json/gt_json\\data385_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data385.png" +} \ No newline at end of file diff --git a/json/data386.json b/json/data386.json new file mode 100644 index 0000000000000000000000000000000000000000..5dd24a636cca41c820504b15c877334efe401d15 --- /dev/null +++ b/json/data386.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data386", + "pre_dec_file": "pre_dec_json\\data386_aligned.json", + "gt_json_file": "json/gt_json\\data386_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data386.png" +} \ No newline at end of file diff --git a/json/data387.json b/json/data387.json new file mode 100644 index 0000000000000000000000000000000000000000..be5d0f1e2ea94f61a30752c2abcdc96db11c8b1e --- /dev/null +++ b/json/data387.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data387", + "pre_dec_file": "pre_dec_json\\data387_aligned.json", + "gt_json_file": "json/gt_json\\data387_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data387.png" +} \ No newline at end of file diff --git a/json/data388.json b/json/data388.json new file mode 100644 index 0000000000000000000000000000000000000000..bb814c54e2f22b2ef816b4b0976439b9d48467f8 --- /dev/null +++ b/json/data388.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data388", + "pre_dec_file": "pre_dec_json\\data388_aligned.json", + "gt_json_file": "json/gt_json\\data388_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data388.png" +} \ No newline at end of file diff --git a/json/data389.json b/json/data389.json new file mode 100644 index 0000000000000000000000000000000000000000..52d1a7217e2692bdf0623440ea6665e6e76e4245 --- /dev/null +++ b/json/data389.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data389", + "pre_dec_file": "pre_dec_json\\data389_aligned.json", + "gt_json_file": "json/gt_json\\data389_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data389.png" +} \ No newline at end of file diff --git a/json/data39.json b/json/data39.json new file mode 100644 index 0000000000000000000000000000000000000000..ee637974ef083fe4e8f460165f6b3dbf67897ce8 --- /dev/null +++ b/json/data39.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data39", + "pre_dec_file": "pre_dec_json\\data39_aligned.json", + "gt_json_file": "json/gt_json\\data39_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data39.png" +} \ No newline at end of file diff --git a/json/data390.json b/json/data390.json new file mode 100644 index 0000000000000000000000000000000000000000..9c52bb60ed74ab7a06fa674d40191c4b25391365 --- /dev/null +++ b/json/data390.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data390", + "pre_dec_file": "pre_dec_json\\data390_aligned.json", + "gt_json_file": "json/gt_json\\data390_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data390.png" +} \ No newline at end of file diff --git a/json/data391.json b/json/data391.json new file mode 100644 index 0000000000000000000000000000000000000000..06151502601b920c2953f13cccd9128d993701ee --- /dev/null +++ b/json/data391.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data391", + "pre_dec_file": "pre_dec_json\\data391_aligned.json", + "gt_json_file": "json/gt_json\\data391_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data391.png" +} \ No newline at end of file diff --git a/json/data392.json b/json/data392.json new file mode 100644 index 0000000000000000000000000000000000000000..24924d4e5c9ab30fa5d3b47eb524f5e6f4028c90 --- /dev/null +++ b/json/data392.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data392", + "pre_dec_file": "pre_dec_json\\data392_aligned.json", + "gt_json_file": "json/gt_json\\data392_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data392.png" +} \ No newline at end of file diff --git a/json/data393.json b/json/data393.json new file mode 100644 index 0000000000000000000000000000000000000000..65fe162a12823d053830c8b19829fe8eaed4c5ae --- /dev/null +++ b/json/data393.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data393", + "pre_dec_file": "pre_dec_json\\data393_aligned.json", + "gt_json_file": "json/gt_json\\data393_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Non-motor vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data393.png" +} \ No newline at end of file diff --git a/json/data394.json b/json/data394.json new file mode 100644 index 0000000000000000000000000000000000000000..8d927388199b38ee132da04c9448c9f9f92c0efa --- /dev/null +++ b/json/data394.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data394", + "pre_dec_file": "pre_dec_json\\data394_aligned.json", + "gt_json_file": "json/gt_json\\data394_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data394.png" +} \ No newline at end of file diff --git a/json/data395.json b/json/data395.json new file mode 100644 index 0000000000000000000000000000000000000000..34c090a067f342f05277c9b2329fd5e5325a35b5 --- /dev/null +++ b/json/data395.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data395", + "pre_dec_file": "pre_dec_json\\data395_aligned.json", + "gt_json_file": "json/gt_json\\data395_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data395.png" +} \ No newline at end of file diff --git a/json/data396.json b/json/data396.json new file mode 100644 index 0000000000000000000000000000000000000000..0c89cdac7a6ec4a817fdc8c93fc62b6997e9b8ba --- /dev/null +++ b/json/data396.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.1", + "pic_name": "data396", + "pre_dec_file": "pre_dec_json\\data396_aligned.json", + "gt_json_file": "json/gt_json\\data396_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-U-turn", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data396.png" +} \ No newline at end of file diff --git a/json/data397.json b/json/data397.json new file mode 100644 index 0000000000000000000000000000000000000000..120e95c02708708266d1cf97a29fe96158116bf8 --- /dev/null +++ b/json/data397.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data397", + "pre_dec_file": "pre_dec_json\\data397_aligned.json", + "gt_json_file": "json/gt_json\\data397_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data397.png" +} \ No newline at end of file diff --git a/json/data398.json b/json/data398.json new file mode 100644 index 0000000000000000000000000000000000000000..fde2cd94dc3b828f5f0ecac50f5aec20f56e8ff8 --- /dev/null +++ b/json/data398.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data398", + "pre_dec_file": "pre_dec_json\\data398_aligned.json", + "gt_json_file": "json/gt_json\\data398_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data398.png" +} \ No newline at end of file diff --git a/json/data399.json b/json/data399.json new file mode 100644 index 0000000000000000000000000000000000000000..b710076adbce9bca4521eb1f90d40b7eee732c91 --- /dev/null +++ b/json/data399.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data399", + "pre_dec_file": "pre_dec_json\\data399_aligned.json", + "gt_json_file": "json/gt_json\\data399_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data399.png" +} \ No newline at end of file diff --git a/json/data4.json b/json/data4.json new file mode 100644 index 0000000000000000000000000000000000000000..d4fc2c79c3a51fe246ea0a75e876ad0dedbd6679 --- /dev/null +++ b/json/data4.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data4", + "pre_dec_file": "pre_dec_json\\data4_aligned.json", + "gt_json_file": "json/gt_json\\data4_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data4.png" +} \ No newline at end of file diff --git a/json/data40.json b/json/data40.json new file mode 100644 index 0000000000000000000000000000000000000000..89e2eaf4926c51274dd42ee2df10abe865a1e567 --- /dev/null +++ b/json/data40.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data40", + "pre_dec_file": "pre_dec_json\\data40_aligned.json", + "gt_json_file": "json/gt_json\\data40_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data40.png" +} \ No newline at end of file diff --git a/json/data400.json b/json/data400.json new file mode 100644 index 0000000000000000000000000000000000000000..c238a95ba47392f3beb6467c74d354ab12f8a142 --- /dev/null +++ b/json/data400.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data400", + "pre_dec_file": "pre_dec_json\\data400_aligned.json", + "gt_json_file": "json/gt_json\\data400_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data400.png" +} \ No newline at end of file diff --git a/json/data401.json b/json/data401.json new file mode 100644 index 0000000000000000000000000000000000000000..e3dc2da1e6ee24dc01ea96bca30d8d5b2a9fcaa5 --- /dev/null +++ b/json/data401.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.1", + "pic_name": "data401", + "pre_dec_file": "pre_dec_json\\data401_aligned.json", + "gt_json_file": "json/gt_json\\data401_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data401.png" +} \ No newline at end of file diff --git a/json/data402.json b/json/data402.json new file mode 100644 index 0000000000000000000000000000000000000000..0bc1aa6a4e67d622f51d599d1cde4f84cc2423a7 --- /dev/null +++ b/json/data402.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.3", + "pic_name": "data402", + "pre_dec_file": "pre_dec_json\\data402_aligned.json", + "gt_json_file": "json/gt_json\\data402_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-Parking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data402.png" +} \ No newline at end of file diff --git a/json/data403.json b/json/data403.json new file mode 100644 index 0000000000000000000000000000000000000000..fb5aeede37326b9e90a97f57c80ea5891d0dba8d --- /dev/null +++ b/json/data403.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data403", + "pic_path": "..\\pic\\data403.png", + "pre_dec_file": "pre_dec_json\\data403_aligned.json", + "gt_json_file": "json/gt_json\\data403_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage" +} \ No newline at end of file diff --git a/json/data404.json b/json/data404.json new file mode 100644 index 0000000000000000000000000000000000000000..a7fb510ba2d9d8d8653dd06b46071b155625cde0 --- /dev/null +++ b/json/data404.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data404", + "pre_dec_file": "pre_dec_json\\data404_aligned.json", + "gt_json_file": "json/gt_json\\data404_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data404.png" +} \ No newline at end of file diff --git a/json/data405.json b/json/data405.json new file mode 100644 index 0000000000000000000000000000000000000000..8080f5f44a98c7e311eafdf6ba0712ff44c6b355 --- /dev/null +++ b/json/data405.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data405", + "pre_dec_file": "pre_dec_json\\data405_aligned.json", + "gt_json_file": "json/gt_json\\data405_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data405.png" +} \ No newline at end of file diff --git a/json/data406.json b/json/data406.json new file mode 100644 index 0000000000000000000000000000000000000000..a8719fce0e0f19f61dd3f5cb65ad28455a68e691 --- /dev/null +++ b/json/data406.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data406", + "pre_dec_file": "pre_dec_json\\data406_aligned.json", + "gt_json_file": "json/gt_json\\data406_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data406.png" +} \ No newline at end of file diff --git a/json/data407.json b/json/data407.json new file mode 100644 index 0000000000000000000000000000000000000000..821662eaca0975e37d8cc611038375c0fab7fd63 --- /dev/null +++ b/json/data407.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data407", + "pre_dec_file": "pre_dec_json\\data407_aligned.json", + "gt_json_file": "json/gt_json\\data407_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data407.png" +} \ No newline at end of file diff --git a/json/data408.json b/json/data408.json new file mode 100644 index 0000000000000000000000000000000000000000..fbfa19bd3204735b36ec6321071ae83322493568 --- /dev/null +++ b/json/data408.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data408", + "pre_dec_file": "pre_dec_json\\data408_aligned.json", + "gt_json_file": "json/gt_json\\data408_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data408.png" +} \ No newline at end of file diff --git a/json/data409.json b/json/data409.json new file mode 100644 index 0000000000000000000000000000000000000000..2e6deb09225efb854ca965d8f36f16f30aa05f5b --- /dev/null +++ b/json/data409.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data409", + "pre_dec_file": "pre_dec_json\\data409_aligned.json", + "gt_json_file": "json/gt_json\\data409_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data409.png" +} \ No newline at end of file diff --git a/json/data41.json b/json/data41.json new file mode 100644 index 0000000000000000000000000000000000000000..d535abc3b007cedee5a0f57fef4db26eefa9a1c5 --- /dev/null +++ b/json/data41.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data41", + "is_longtail": "True", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data41.png", + "pre_dec_file": "pre_dec_json\\data41_aligned.json", + "gt_json_file": "json/gt_json\\data41_gt.json" +} \ No newline at end of file diff --git a/json/data410.json b/json/data410.json new file mode 100644 index 0000000000000000000000000000000000000000..cae3f65d3aba7968d08867bfd39b03eca87d1eee --- /dev/null +++ b/json/data410.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data410", + "pre_dec_file": "pre_dec_json\\data410_aligned.json", + "gt_json_file": "json/gt_json\\data410_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data410.png" +} \ No newline at end of file diff --git a/json/data411.json b/json/data411.json new file mode 100644 index 0000000000000000000000000000000000000000..6bfa1422c7548cea3d398dcaa60c6009770cfb25 --- /dev/null +++ b/json/data411.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data411", + "pre_dec_file": "pre_dec_json\\data411_aligned.json", + "gt_json_file": "json/gt_json\\data411_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data411.png" +} \ No newline at end of file diff --git a/json/data412.json b/json/data412.json new file mode 100644 index 0000000000000000000000000000000000000000..ea1f941723719648d58309b4a2eea8f0bf21ce43 --- /dev/null +++ b/json/data412.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data412", + "pre_dec_file": "pre_dec_json\\data412_aligned.json", + "gt_json_file": "json/gt_json\\data412_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data412.png" +} \ No newline at end of file diff --git a/json/data413.json b/json/data413.json new file mode 100644 index 0000000000000000000000000000000000000000..6e5b53bff9144e5ac9cbca9df73c944baea9c773 --- /dev/null +++ b/json/data413.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data413", + "pre_dec_file": "pre_dec_json\\data413_aligned.json", + "gt_json_file": "json/gt_json\\data413_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data413.png" +} \ No newline at end of file diff --git a/json/data414.json b/json/data414.json new file mode 100644 index 0000000000000000000000000000000000000000..403766533e239e525d076a0bb831dcb1cac774ef --- /dev/null +++ b/json/data414.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data414", + "pre_dec_file": "pre_dec_json\\data414_aligned.json", + "gt_json_file": "json/gt_json\\data414_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Low-speed heavy vehicles", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data414.png" +} \ No newline at end of file diff --git a/json/data415.json b/json/data415.json new file mode 100644 index 0000000000000000000000000000000000000000..a10e6731b6108159a4748fbb1f6b76334293e51a --- /dev/null +++ b/json/data415.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data415", + "pre_dec_file": "pre_dec_json\\data415_aligned.json", + "gt_json_file": "json/gt_json\\data415_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data415.png" +} \ No newline at end of file diff --git a/json/data416.json b/json/data416.json new file mode 100644 index 0000000000000000000000000000000000000000..485d00bb8516bc7f0cd794a15823c8d1cf2c6cd4 --- /dev/null +++ b/json/data416.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data416", + "pre_dec_file": "pre_dec_json\\data416_aligned.json", + "gt_json_file": "json/gt_json\\data416_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data416.png" +} \ No newline at end of file diff --git a/json/data417.json b/json/data417.json new file mode 100644 index 0000000000000000000000000000000000000000..ecff328d784fe7407ed9ba8865894bd1776778ae --- /dev/null +++ b/json/data417.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data417", + "pre_dec_file": "pre_dec_json\\data417_aligned.json", + "gt_json_file": "json/gt_json\\data417_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data417.png" +} \ No newline at end of file diff --git a/json/data418.json b/json/data418.json new file mode 100644 index 0000000000000000000000000000000000000000..bc578ce2a585c36f6ea48ad4aa27732b43394150 --- /dev/null +++ b/json/data418.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data418", + "pre_dec_file": "pre_dec_json\\data418_aligned.json", + "gt_json_file": "json/gt_json\\data418_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data418.png" +} \ No newline at end of file diff --git a/json/data419.json b/json/data419.json new file mode 100644 index 0000000000000000000000000000000000000000..349b55858aa27af550b15c8a97c8bbc0551a0e24 --- /dev/null +++ b/json/data419.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data419", + "pre_dec_file": "pre_dec_json\\data419_aligned.json", + "gt_json_file": "json/gt_json\\data419_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data419.png" +} \ No newline at end of file diff --git a/json/data42.json b/json/data42.json new file mode 100644 index 0000000000000000000000000000000000000000..e243a9c41ab1d2dc0edc344691a802dc3d949659 --- /dev/null +++ b/json/data42.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data42", + "pre_dec_file": "pre_dec_json\\data42_aligned.json", + "gt_json_file": "json/gt_json\\data42_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data42.png" +} \ No newline at end of file diff --git a/json/data420.json b/json/data420.json new file mode 100644 index 0000000000000000000000000000000000000000..8a5f0b159858e0b9d5fee871c9fd76cf1585dc68 --- /dev/null +++ b/json/data420.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data420", + "pic_path": "..\\pic\\data420.png", + "pre_dec_file": "pre_dec_json\\data420_aligned.json", + "gt_json_file": "json/gt_json\\data420_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route" +} \ No newline at end of file diff --git a/json/data421.json b/json/data421.json new file mode 100644 index 0000000000000000000000000000000000000000..88bbb0fae8dfa5734ff07c9775a8188a9e9b5c43 --- /dev/null +++ b/json/data421.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data421", + "pre_dec_file": "pre_dec_json\\data421_aligned.json", + "gt_json_file": "json/gt_json\\data421_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data421.png" +} \ No newline at end of file diff --git a/json/data422.json b/json/data422.json new file mode 100644 index 0000000000000000000000000000000000000000..65e3daaab66d26021667dbe0605a3ad289ab4e4b --- /dev/null +++ b/json/data422.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data422", + "pre_dec_file": "pre_dec_json\\data422_aligned.json", + "gt_json_file": "json/gt_json\\data422_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data422.png" +} \ No newline at end of file diff --git a/json/data423.json b/json/data423.json new file mode 100644 index 0000000000000000000000000000000000000000..e5d4e090ae4ce2247b7a83d5f3a2db4673b8f099 --- /dev/null +++ b/json/data423.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data423", + "pre_dec_file": "pre_dec_json\\data423_aligned.json", + "gt_json_file": "json/gt_json\\data423_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data423.png" +} \ No newline at end of file diff --git a/json/data424.json b/json/data424.json new file mode 100644 index 0000000000000000000000000000000000000000..7343883703ba184a2055c9446d45bc9c3c026f80 --- /dev/null +++ b/json/data424.json @@ -0,0 +1,17 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data424", + "is_longtail": "True", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data424.png", + "pre_dec_file": "pre_dec_json\\data424_aligned.json", + "gt_json_file": "json/gt_json\\data424_gt.json" +} \ No newline at end of file diff --git a/json/data425.json b/json/data425.json new file mode 100644 index 0000000000000000000000000000000000000000..04dc5a7e213a5faa8eb7e400f6fdcc438a584e41 --- /dev/null +++ b/json/data425.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data425", + "pre_dec_file": "pre_dec_json\\data425_aligned.json", + "gt_json_file": "json/gt_json\\data425_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data425.png" +} \ No newline at end of file diff --git a/json/data426.json b/json/data426.json new file mode 100644 index 0000000000000000000000000000000000000000..16583ff7287f6fe86a79a647746d7590f13b7173 --- /dev/null +++ b/json/data426.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data426", + "pre_dec_file": "pre_dec_json\\data426_aligned.json", + "gt_json_file": "json/gt_json\\data426_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data426.png" +} \ No newline at end of file diff --git a/json/data427.json b/json/data427.json new file mode 100644 index 0000000000000000000000000000000000000000..d94e85038ce0c645fa360d08b1f344ff61e7d95a --- /dev/null +++ b/json/data427.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data427", + "pre_dec_file": "pre_dec_json\\data427_aligned.json", + "gt_json_file": "json/gt_json\\data427_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data427.png" +} \ No newline at end of file diff --git a/json/data428.json b/json/data428.json new file mode 100644 index 0000000000000000000000000000000000000000..ce0dc29290226278c5896546252b9918fbf8f17d --- /dev/null +++ b/json/data428.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.3", + "pic_name": "data428", + "pre_dec_file": "pre_dec_json\\data428_aligned.json", + "gt_json_file": "json/gt_json\\data428_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Sand and dust", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data428.png" +} \ No newline at end of file diff --git a/json/data429.json b/json/data429.json new file mode 100644 index 0000000000000000000000000000000000000000..e1f84b54a9c1af86c22d333a1129899e3e64cb9e --- /dev/null +++ b/json/data429.json @@ -0,0 +1,17 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data429", + "is_longtail": "True", + "lt_ele": "Event control", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data429.png", + "pre_dec_file": "pre_dec_json\\data429_aligned.json", + "gt_json_file": "json/gt_json\\data429_gt.json" +} \ No newline at end of file diff --git a/json/data43.json b/json/data43.json new file mode 100644 index 0000000000000000000000000000000000000000..33795fa9de165a7b95d3059643b120bc5b845843 --- /dev/null +++ b/json/data43.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data43", + "pre_dec_file": "pre_dec_json\\data43_aligned.json", + "gt_json_file": "json/gt_json\\data43_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data43.png" +} \ No newline at end of file diff --git a/json/data430.json b/json/data430.json new file mode 100644 index 0000000000000000000000000000000000000000..37064994a0364e580d86df669a48da88ea0df7b1 --- /dev/null +++ b/json/data430.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data430", + "pre_dec_file": "pre_dec_json\\data430_aligned.json", + "gt_json_file": "json/gt_json\\data430_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data430.png" +} \ No newline at end of file diff --git a/json/data431.json b/json/data431.json new file mode 100644 index 0000000000000000000000000000000000000000..373e38c7f91c6773d80b1d39499e6f14a8224f57 --- /dev/null +++ b/json/data431.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data431", + "pre_dec_file": "pre_dec_json\\data431_aligned.json", + "gt_json_file": "json/gt_json\\data431_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data431.png" +} \ No newline at end of file diff --git a/json/data432.json b/json/data432.json new file mode 100644 index 0000000000000000000000000000000000000000..d3b7a83b229de395ac4af0ef39d232294a19d85f --- /dev/null +++ b/json/data432.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.4", + "pic_name": "data432", + "pre_dec_file": "pre_dec_json\\data432_aligned.json", + "gt_json_file": "json/gt_json\\data432_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "non-motorized vehicle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data432.png" +} \ No newline at end of file diff --git a/json/data433.json b/json/data433.json new file mode 100644 index 0000000000000000000000000000000000000000..620c23fac81a617f89b3b7dfd9072e73c3d3fdb0 --- /dev/null +++ b/json/data433.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data433", + "pre_dec_file": "pre_dec_json\\data433_aligned.json", + "gt_json_file": "json/gt_json\\data433_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data433.png" +} \ No newline at end of file diff --git a/json/data434.json b/json/data434.json new file mode 100644 index 0000000000000000000000000000000000000000..9871b35e45d3a3e5efa6267682c8aa251bdbed24 --- /dev/null +++ b/json/data434.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data434", + "pre_dec_file": "pre_dec_json\\data434_aligned.json", + "gt_json_file": "json/gt_json\\data434_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data434.png" +} \ No newline at end of file diff --git a/json/data435.json b/json/data435.json new file mode 100644 index 0000000000000000000000000000000000000000..deb23019ad0cf314db94e684a32ad18dd998ded1 --- /dev/null +++ b/json/data435.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data435", + "pre_dec_file": "pre_dec_json\\data435_aligned.json", + "gt_json_file": "json/gt_json\\data435_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data435.png" +} \ No newline at end of file diff --git a/json/data436.json b/json/data436.json new file mode 100644 index 0000000000000000000000000000000000000000..8a90165cf66828053477c32eca8d99e34f29cdf9 --- /dev/null +++ b/json/data436.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data436", + "is_longtail": "True", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data436.png", + "pre_dec_file": "pre_dec_json\\data436_aligned.json", + "gt_json_file": "json/gt_json\\data436_gt.json" +} \ No newline at end of file diff --git a/json/data437.json b/json/data437.json new file mode 100644 index 0000000000000000000000000000000000000000..1ef59c0ea6e866196759567a31ca70d71f85592b --- /dev/null +++ b/json/data437.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data437", + "pre_dec_file": "pre_dec_json\\data437_aligned.json", + "gt_json_file": "json/gt_json\\data437_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data437.png" +} \ No newline at end of file diff --git a/json/data438.json b/json/data438.json new file mode 100644 index 0000000000000000000000000000000000000000..6cd7fa385c54ff4d22c8e851987be21fc3b77cb6 --- /dev/null +++ b/json/data438.json @@ -0,0 +1,17 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data438", + "is_longtail": "True", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data438.png", + "pre_dec_file": "pre_dec_json\\data438_aligned.json", + "gt_json_file": "json/gt_json\\data438_gt.json" +} \ No newline at end of file diff --git a/json/data439.json b/json/data439.json new file mode 100644 index 0000000000000000000000000000000000000000..4571a939811d5988cad170dc725db27f2023600b --- /dev/null +++ b/json/data439.json @@ -0,0 +1,17 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data439", + "is_longtail": "True", + "lt_ele": "Event control", + "acc_factors": [ + "Non-motor vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data439.png", + "pre_dec_file": "pre_dec_json\\data439_aligned.json", + "gt_json_file": "json/gt_json\\data439_gt.json" +} \ No newline at end of file diff --git a/json/data44.json b/json/data44.json new file mode 100644 index 0000000000000000000000000000000000000000..d51458c86087a9289bdff7d6dfa6f75e6f48fc15 --- /dev/null +++ b/json/data44.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data44", + "pre_dec_file": "pre_dec_json\\data44_aligned.json", + "gt_json_file": "json/gt_json\\data44_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data44.png" +} \ No newline at end of file diff --git a/json/data440.json b/json/data440.json new file mode 100644 index 0000000000000000000000000000000000000000..32784e28255ff7ad6ac0375f370f74cf55b7ee42 --- /dev/null +++ b/json/data440.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data440", + "pre_dec_file": "pre_dec_json\\data440_aligned.json", + "gt_json_file": "json/gt_json\\data440_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data440.png" +} \ No newline at end of file diff --git a/json/data441.json b/json/data441.json new file mode 100644 index 0000000000000000000000000000000000000000..f16bbe80db383d93575c13be0c56ac38932ec139 --- /dev/null +++ b/json/data441.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.1", + "pic_name": "data441", + "pic_path": "..\\pic\\data441.png", + "pre_dec_file": "pre_dec_json\\data441_aligned.json", + "gt_json_file": "json/gt_json\\data441_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour" +} \ No newline at end of file diff --git a/json/data442.json b/json/data442.json new file mode 100644 index 0000000000000000000000000000000000000000..f6ba004733fe9e61f7e76d989d48ebedef268de7 --- /dev/null +++ b/json/data442.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.1", + "pic_name": "data442", + "pre_dec_file": "pre_dec_json\\data442_aligned.json", + "gt_json_file": "json/gt_json\\data442_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data442.png" +} \ No newline at end of file diff --git a/json/data443.json b/json/data443.json new file mode 100644 index 0000000000000000000000000000000000000000..f5522ae8c4656960976ab54e3ffbc2714eab35f0 --- /dev/null +++ b/json/data443.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data443", + "pre_dec_file": "pre_dec_json\\data443_aligned.json", + "gt_json_file": "json/gt_json\\data443_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data443.png" +} \ No newline at end of file diff --git a/json/data444.json b/json/data444.json new file mode 100644 index 0000000000000000000000000000000000000000..f234080c5dd262e997cf494906107fbc8bfdaed9 --- /dev/null +++ b/json/data444.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data444", + "pre_dec_file": "pre_dec_json\\data444_aligned.json", + "gt_json_file": "json/gt_json\\data444_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data444.png" +} \ No newline at end of file diff --git a/json/data445.json b/json/data445.json new file mode 100644 index 0000000000000000000000000000000000000000..7bbbac4ea5d1a9502594f530f16f5aea86f3df64 --- /dev/null +++ b/json/data445.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data445", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data445.png", + "pre_dec_file": "pre_dec_json\\data445_aligned.json", + "gt_json_file": "json/gt_json\\data445_gt.json" +} \ No newline at end of file diff --git a/json/data446.json b/json/data446.json new file mode 100644 index 0000000000000000000000000000000000000000..a8edffc70c47ec72da3b59a400d703dd5bc25b06 --- /dev/null +++ b/json/data446.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data446", + "pre_dec_file": "pre_dec_json\\data446_aligned.json", + "gt_json_file": "json/gt_json\\data446_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data446.png" +} \ No newline at end of file diff --git a/json/data447.json b/json/data447.json new file mode 100644 index 0000000000000000000000000000000000000000..ac3a4caa2e61961168b2efb68752f5a17f30b5bc --- /dev/null +++ b/json/data447.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data447", + "pre_dec_file": "pre_dec_json\\data447_aligned.json", + "gt_json_file": "json/gt_json\\data447_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data447.png" +} \ No newline at end of file diff --git a/json/data448.json b/json/data448.json new file mode 100644 index 0000000000000000000000000000000000000000..9ad3e3f9939298b36adab2cc98a502b7e9755e99 --- /dev/null +++ b/json/data448.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data448", + "pic_path": "..\\pic\\data448.png", + "pre_dec_file": "pre_dec_json\\data448_aligned.json", + "gt_json_file": "json/gt_json\\data448_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead" +} \ No newline at end of file diff --git a/json/data449.json b/json/data449.json new file mode 100644 index 0000000000000000000000000000000000000000..2e35245fa1e36757e76512b31f382a8c2251dd92 --- /dev/null +++ b/json/data449.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data449", + "pre_dec_file": "pre_dec_json\\data449_aligned.json", + "gt_json_file": "json/gt_json\\data449_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data449.png" +} \ No newline at end of file diff --git a/json/data45.json b/json/data45.json new file mode 100644 index 0000000000000000000000000000000000000000..fc63f591fb491dbe51d09f3076c7ea34e9e1fc8b --- /dev/null +++ b/json/data45.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data45", + "pre_dec_file": "pre_dec_json\\data45_aligned.json", + "gt_json_file": "json/gt_json\\data45_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data45.png" +} \ No newline at end of file diff --git a/json/data450.json b/json/data450.json new file mode 100644 index 0000000000000000000000000000000000000000..b024d6fadd2afcc37887e8632957b3ba2838870b --- /dev/null +++ b/json/data450.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data450", + "pre_dec_file": "pre_dec_json\\data450_aligned.json", + "gt_json_file": "json/gt_json\\data450_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data450.png" +} \ No newline at end of file diff --git a/json/data451.json b/json/data451.json new file mode 100644 index 0000000000000000000000000000000000000000..112f579afb679936e30886214182696201f000b7 --- /dev/null +++ b/json/data451.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.2", + "pic_name": "data451", + "pre_dec_file": "pre_dec_json\\data451_aligned.json", + "gt_json_file": "json/gt_json\\data451_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data451.png" +} \ No newline at end of file diff --git a/json/data452.json b/json/data452.json new file mode 100644 index 0000000000000000000000000000000000000000..5ce892bdec4164c0c1b122170aef8202bfedc4d7 --- /dev/null +++ b/json/data452.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data452", + "pre_dec_file": "pre_dec_json\\data452_aligned.json", + "gt_json_file": "json/gt_json\\data452_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data452.png" +} \ No newline at end of file diff --git a/json/data453.json b/json/data453.json new file mode 100644 index 0000000000000000000000000000000000000000..ea6a3d37c8b2b505f6c9298738b558f689728c76 --- /dev/null +++ b/json/data453.json @@ -0,0 +1,17 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.1", + "pic_name": "data453", + "is_longtail": "True", + "lt_ele": "Abnormal traffic flow-U-turn", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data453.png", + "pre_dec_file": "pre_dec_json\\data453_aligned.json", + "gt_json_file": "json/gt_json\\data453_gt.json" +} \ No newline at end of file diff --git a/json/data454.json b/json/data454.json new file mode 100644 index 0000000000000000000000000000000000000000..733719c42bb137d3661f88cce238bd862c519785 --- /dev/null +++ b/json/data454.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data454", + "pre_dec_file": "pre_dec_json\\data454_aligned.json", + "gt_json_file": "json/gt_json\\data454_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data454.png" +} \ No newline at end of file diff --git a/json/data455.json b/json/data455.json new file mode 100644 index 0000000000000000000000000000000000000000..a7db6c623bfc0a9b2e6a97d34d71d8f9711cad24 --- /dev/null +++ b/json/data455.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data455", + "pre_dec_file": "pre_dec_json\\data455_aligned.json", + "gt_json_file": "json/gt_json\\data455_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data455.png" +} \ No newline at end of file diff --git a/json/data456.json b/json/data456.json new file mode 100644 index 0000000000000000000000000000000000000000..eea20806e8d23fce4c67941d0ae01a8d4b8752f1 --- /dev/null +++ b/json/data456.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data456", + "pre_dec_file": "pre_dec_json\\data456_aligned.json", + "gt_json_file": "json/gt_json\\data456_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data456.png" +} \ No newline at end of file diff --git a/json/data457.json b/json/data457.json new file mode 100644 index 0000000000000000000000000000000000000000..704a34ffd08773f89cdeb2886fff27be63e3f5b9 --- /dev/null +++ b/json/data457.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data457", + "pre_dec_file": "pre_dec_json\\data457_aligned.json", + "gt_json_file": "json/gt_json\\data457_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data457.png" +} \ No newline at end of file diff --git a/json/data458.json b/json/data458.json new file mode 100644 index 0000000000000000000000000000000000000000..0c34659f077c7dd2a4effa36cdb340a17f491e84 --- /dev/null +++ b/json/data458.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data458", + "pre_dec_file": "pre_dec_json\\data458_aligned.json", + "gt_json_file": "json/gt_json\\data458_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data458.png" +} \ No newline at end of file diff --git a/json/data459.json b/json/data459.json new file mode 100644 index 0000000000000000000000000000000000000000..27b276f1a40ff35172b9b37b6f4554962a384acb --- /dev/null +++ b/json/data459.json @@ -0,0 +1,17 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.3", + "pic_name": "data459", + "is_longtail": "True", + "lt_ele": "Abnormal traffic flow-Parking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data459.png", + "pre_dec_file": "pre_dec_json\\data459_aligned.json", + "gt_json_file": "json/gt_json\\data459_gt.json" +} \ No newline at end of file diff --git a/json/data46.json b/json/data46.json new file mode 100644 index 0000000000000000000000000000000000000000..79c26077c081585a94e9f6ee13143e96a6bdb305 --- /dev/null +++ b/json/data46.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data46", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data46.png", + "pre_dec_file": "pre_dec_json\\data46_aligned.json", + "gt_json_file": "json/gt_json\\data46_gt.json" +} \ No newline at end of file diff --git a/json/data460.json b/json/data460.json new file mode 100644 index 0000000000000000000000000000000000000000..7625ba8c0962390f5c26785d6646b5c5720e78f6 --- /dev/null +++ b/json/data460.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data460", + "pre_dec_file": "pre_dec_json\\data460_aligned.json", + "gt_json_file": "json/gt_json\\data460_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data460.png" +} \ No newline at end of file diff --git a/json/data461.json b/json/data461.json new file mode 100644 index 0000000000000000000000000000000000000000..1dc6fd102892768ffd969ec71750cdfd3544cf0b --- /dev/null +++ b/json/data461.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data461", + "pre_dec_file": "pre_dec_json\\data461_aligned.json", + "gt_json_file": "json/gt_json\\data461_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data461.png" +} \ No newline at end of file diff --git a/json/data462.json b/json/data462.json new file mode 100644 index 0000000000000000000000000000000000000000..0627ddb5296a76e2f34db0e021a89e48df195ae4 --- /dev/null +++ b/json/data462.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.4", + "pic_name": "data462", + "is_longtail": "True", + "lt_ele": "non-motorized vehicle", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data462.png", + "pre_dec_file": "pre_dec_json\\data462_aligned.json", + "gt_json_file": "json/gt_json\\data462_gt.json" +} \ No newline at end of file diff --git a/json/data463.json b/json/data463.json new file mode 100644 index 0000000000000000000000000000000000000000..a303536f524a7034c8cae5d684771551d333894b --- /dev/null +++ b/json/data463.json @@ -0,0 +1,17 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data463", + "is_longtail": "True", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data463.png", + "pre_dec_file": "pre_dec_json\\data463_aligned.json", + "gt_json_file": "json/gt_json\\data463_gt.json" +} \ No newline at end of file diff --git a/json/data464.json b/json/data464.json new file mode 100644 index 0000000000000000000000000000000000000000..fcf46dbe7ffc6ab43d8dffec9f5d06d4a64872ee --- /dev/null +++ b/json/data464.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data464", + "pre_dec_file": "pre_dec_json\\data464_aligned.json", + "gt_json_file": "json/gt_json\\data464_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data464.png" +} \ No newline at end of file diff --git a/json/data465.json b/json/data465.json new file mode 100644 index 0000000000000000000000000000000000000000..a0542ed412e8da38129721f7743b28eb5156a3e0 --- /dev/null +++ b/json/data465.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data465", + "pre_dec_file": "pre_dec_json\\data465_aligned.json", + "gt_json_file": "json/gt_json\\data465_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data465.png" +} \ No newline at end of file diff --git a/json/data466.json b/json/data466.json new file mode 100644 index 0000000000000000000000000000000000000000..e2e501a6929a7158a19cbf6271a95c3df691db67 --- /dev/null +++ b/json/data466.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data466", + "pre_dec_file": "pre_dec_json\\data466_aligned.json", + "gt_json_file": "json/gt_json\\data466_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data466.png" +} \ No newline at end of file diff --git a/json/data467.json b/json/data467.json new file mode 100644 index 0000000000000000000000000000000000000000..517528da5e2e9bf786d2a00b711339ec97f53c9c --- /dev/null +++ b/json/data467.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data467", + "pre_dec_file": "pre_dec_json\\data467_aligned.json", + "gt_json_file": "json/gt_json\\data467_gt.json", + "is_longtail": "True", + "Sup_description": "Navigation information shows that the current road section is closed and impassable", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data467.png" +} \ No newline at end of file diff --git a/json/data468.json b/json/data468.json new file mode 100644 index 0000000000000000000000000000000000000000..fa79a4bc239eeab40a5640155386a81fdb5eeab4 --- /dev/null +++ b/json/data468.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data468", + "pic_path": "..\\pic\\data468.png", + "pre_dec_file": "pre_dec_json\\data468_aligned.json", + "gt_json_file": "json/gt_json\\data468_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour" +} \ No newline at end of file diff --git a/json/data469.json b/json/data469.json new file mode 100644 index 0000000000000000000000000000000000000000..58aed55cc97a5c3624d7869e0924586f0bcc267e --- /dev/null +++ b/json/data469.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data469", + "pre_dec_file": "pre_dec_json\\data469_aligned.json", + "gt_json_file": "json/gt_json\\data469_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data469.png" +} \ No newline at end of file diff --git a/json/data47.json b/json/data47.json new file mode 100644 index 0000000000000000000000000000000000000000..05677736693d87024516d969da402ce068cb4221 --- /dev/null +++ b/json/data47.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data47", + "pre_dec_file": "pre_dec_json\\data47_aligned.json", + "gt_json_file": "json/gt_json\\data47_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data47.png" +} \ No newline at end of file diff --git a/json/data470.json b/json/data470.json new file mode 100644 index 0000000000000000000000000000000000000000..192a9bc40b459c52e8821694a65cbbe018c9e279 --- /dev/null +++ b/json/data470.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data470", + "pre_dec_file": "pre_dec_json\\data470_aligned.json", + "gt_json_file": "json/gt_json\\data470_gt.json", + "is_longtail": "False", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [], + "post_dec": "", + "pic_path": "..\\pic\\data470.png" +} \ No newline at end of file diff --git a/json/data471.json b/json/data471.json new file mode 100644 index 0000000000000000000000000000000000000000..49eb17f56b8904c0361d9a1529ae50675fe63dd7 --- /dev/null +++ b/json/data471.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data471", + "pre_dec_file": "pre_dec_json\\data471_aligned.json", + "gt_json_file": "json/gt_json\\data471_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data471.png" +} \ No newline at end of file diff --git a/json/data472.json b/json/data472.json new file mode 100644 index 0000000000000000000000000000000000000000..f9a6240700df7bda8a2262c794567a0a8cb5bd13 --- /dev/null +++ b/json/data472.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data472", + "pre_dec_file": "pre_dec_json\\data472_aligned.json", + "gt_json_file": "json/gt_json\\data472_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data472.png" +} \ No newline at end of file diff --git a/json/data473.json b/json/data473.json new file mode 100644 index 0000000000000000000000000000000000000000..73303184f2d44a722f2f08d20334fe670e7fafa1 --- /dev/null +++ b/json/data473.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data473", + "pre_dec_file": "pre_dec_json\\data473_aligned.json", + "gt_json_file": "json/gt_json\\data473_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data473.png" +} \ No newline at end of file diff --git a/json/data474.json b/json/data474.json new file mode 100644 index 0000000000000000000000000000000000000000..77134a8ee798fb3c73158cc8a19fd258b5b71384 --- /dev/null +++ b/json/data474.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data474", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data474.png", + "pre_dec_file": "pre_dec_json\\data474_aligned.json", + "gt_json_file": "json/gt_json\\data474_gt.json" +} \ No newline at end of file diff --git a/json/data475.json b/json/data475.json new file mode 100644 index 0000000000000000000000000000000000000000..8967558413ef05c1b7486025f4fe4bd28cb32e9a --- /dev/null +++ b/json/data475.json @@ -0,0 +1,17 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.3", + "pic_name": "data475", + "is_longtail": "True", + "lt_ele": "Abnormal traffic flow-Parking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data475.png", + "pre_dec_file": "pre_dec_json\\data475_aligned.json", + "gt_json_file": "json/gt_json\\data475_gt.json" +} \ No newline at end of file diff --git a/json/data476.json b/json/data476.json new file mode 100644 index 0000000000000000000000000000000000000000..67918ab53ab760c01785fad4877a583a795216ab --- /dev/null +++ b/json/data476.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data476", + "pre_dec_file": "pre_dec_json\\data476_aligned.json", + "gt_json_file": "json/gt_json\\data476_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data476.png" +} \ No newline at end of file diff --git a/json/data477.json b/json/data477.json new file mode 100644 index 0000000000000000000000000000000000000000..2464c610983563329b076f115337adceae690079 --- /dev/null +++ b/json/data477.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data477", + "pre_dec_file": "pre_dec_json\\data477_aligned.json", + "gt_json_file": "json/gt_json\\data477_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data477.png" +} \ No newline at end of file diff --git a/json/data478.json b/json/data478.json new file mode 100644 index 0000000000000000000000000000000000000000..7f66c79ae00afc80c76b89b390375d4d017bd774 --- /dev/null +++ b/json/data478.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data478", + "pre_dec_file": "pre_dec_json\\data478_aligned.json", + "gt_json_file": "json/gt_json\\data478_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data478.png" +} \ No newline at end of file diff --git a/json/data479.json b/json/data479.json new file mode 100644 index 0000000000000000000000000000000000000000..0c91e50f44cc9c035595a91d44f8236c03415eed --- /dev/null +++ b/json/data479.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data479", + "pre_dec_file": "pre_dec_json\\data479_aligned.json", + "gt_json_file": "json/gt_json\\data479_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data479.png" +} \ No newline at end of file diff --git a/json/data48.json b/json/data48.json new file mode 100644 index 0000000000000000000000000000000000000000..ca3b29a05135932d228ed9fefd3654ed85866ba0 --- /dev/null +++ b/json/data48.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data48", + "pre_dec_file": "pre_dec_json\\data48_aligned.json", + "gt_json_file": "json/gt_json\\data48_gt.json", + "is_longtail": "False", + "Sup_description": "", + "lt_ele": "", + "acc_factors": [], + "post_dec": "", + "pic_path": "..\\pic\\data48.png" +} \ No newline at end of file diff --git a/json/data480.json b/json/data480.json new file mode 100644 index 0000000000000000000000000000000000000000..639fd14364a9ea173d344cf98ad957a0019cfb86 --- /dev/null +++ b/json/data480.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data480", + "pre_dec_file": "pre_dec_json\\data480_aligned.json", + "gt_json_file": "json/gt_json\\data480_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data480.png" +} \ No newline at end of file diff --git a/json/data481.json b/json/data481.json new file mode 100644 index 0000000000000000000000000000000000000000..3e48709546c3d45cfa54a53f4cb99be164b9cc1f --- /dev/null +++ b/json/data481.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.2", + "pic_name": "data481", + "pre_dec_file": "pre_dec_json\\data481_aligned.json", + "gt_json_file": "json/gt_json\\data481_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data481.png" +} \ No newline at end of file diff --git a/json/data482.json b/json/data482.json new file mode 100644 index 0000000000000000000000000000000000000000..7d64d62327842b40284bcaf74ec0a3d93f4ef3d2 --- /dev/null +++ b/json/data482.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data482", + "pre_dec_file": "pre_dec_json\\data482_aligned.json", + "gt_json_file": "json/gt_json\\data482_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data482.png" +} \ No newline at end of file diff --git a/json/data483.json b/json/data483.json new file mode 100644 index 0000000000000000000000000000000000000000..4d16af92fe01ffe038c4e43252fd0e26cfffe7a0 --- /dev/null +++ b/json/data483.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data483", + "is_longtail": "True", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data483.png", + "pre_dec_file": "pre_dec_json\\data483_aligned.json", + "gt_json_file": "json/gt_json\\data483_gt.json" +} \ No newline at end of file diff --git a/json/data484.json b/json/data484.json new file mode 100644 index 0000000000000000000000000000000000000000..d56d8e5a20a1b8a57efad3278647dfc1a8a117f3 --- /dev/null +++ b/json/data484.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data484", + "pre_dec_file": "pre_dec_json\\data484_aligned.json", + "gt_json_file": "json/gt_json\\data484_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data484.png" +} \ No newline at end of file diff --git a/json/data485.json b/json/data485.json new file mode 100644 index 0000000000000000000000000000000000000000..87b4a4ba39d4c3d9367517627373599aa832d413 --- /dev/null +++ b/json/data485.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data485", + "is_longtail": "True", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "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.", + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data485.png", + "pre_dec_file": "pre_dec_json\\data485_aligned.json", + "gt_json_file": "json/gt_json\\data485_gt.json" +} \ No newline at end of file diff --git a/json/data486.json b/json/data486.json new file mode 100644 index 0000000000000000000000000000000000000000..84266de9057ed14e88c16ffbc18d930f61b0bb93 --- /dev/null +++ b/json/data486.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data486", + "pic_path": "..\\pic\\data486.png", + "pre_dec_file": "pre_dec_json\\data486_aligned.json", + "gt_json_file": "json/gt_json\\data486_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage" +} \ No newline at end of file diff --git a/json/data487.json b/json/data487.json new file mode 100644 index 0000000000000000000000000000000000000000..95ef151a43e3996573e0942c4c86d84bfbf14b73 --- /dev/null +++ b/json/data487.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data487", + "pre_dec_file": "pre_dec_json\\data487_aligned.json", + "gt_json_file": "json/gt_json\\data487_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data487.png" +} \ No newline at end of file diff --git a/json/data488.json b/json/data488.json new file mode 100644 index 0000000000000000000000000000000000000000..7c422497de5eaefe3b632a49e27846b4eba29963 --- /dev/null +++ b/json/data488.json @@ -0,0 +1,17 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data488", + "is_longtail": "True", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data488.png", + "pre_dec_file": "pre_dec_json\\data488_aligned.json", + "gt_json_file": "json/gt_json\\data488_gt.json" +} \ No newline at end of file diff --git a/json/data489.json b/json/data489.json new file mode 100644 index 0000000000000000000000000000000000000000..866f84b6c8b09f6def9bbe5f44a71588aef1a1b5 --- /dev/null +++ b/json/data489.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data489", + "pre_dec_file": "pre_dec_json\\data489_aligned.json", + "gt_json_file": "json/gt_json\\data489_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data489.png" +} \ No newline at end of file diff --git a/json/data49.json b/json/data49.json new file mode 100644 index 0000000000000000000000000000000000000000..f21d2bac81c5f10500d7314b76512b0673580986 --- /dev/null +++ b/json/data49.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data49", + "pre_dec_file": "pre_dec_json\\data49_aligned.json", + "gt_json_file": "json/gt_json\\data49_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data49.png" +} \ No newline at end of file diff --git a/json/data490.json b/json/data490.json new file mode 100644 index 0000000000000000000000000000000000000000..53a2910f5c1d47bd5c1f90c727b2d75df937b791 --- /dev/null +++ b/json/data490.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data490", + "pre_dec_file": "pre_dec_json\\data490_aligned.json", + "gt_json_file": "json/gt_json\\data490_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data490.png" +} \ No newline at end of file diff --git a/json/data491.json b/json/data491.json new file mode 100644 index 0000000000000000000000000000000000000000..313b64f675d6888ba01142e2aeda16a42ce79f8f --- /dev/null +++ b/json/data491.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data491", + "pre_dec_file": "pre_dec_json\\data491_aligned.json", + "gt_json_file": "json/gt_json\\data491_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data491.png" +} \ No newline at end of file diff --git a/json/data492.json b/json/data492.json new file mode 100644 index 0000000000000000000000000000000000000000..408a6b55e181dad58e8ca2c4444304f104c662a9 --- /dev/null +++ b/json/data492.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data492", + "pre_dec_file": "pre_dec_json\\data492_aligned.json", + "gt_json_file": "json/gt_json\\data492_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data492.png" +} \ No newline at end of file diff --git a/json/data493.json b/json/data493.json new file mode 100644 index 0000000000000000000000000000000000000000..25573c769e257a8f1a5adc52a6d859d12fa8c64b --- /dev/null +++ b/json/data493.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.2", + "pic_name": "data493", + "is_longtail": "True", + "lt_ele": "Low-speed heavy vehicles", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data493.png", + "pre_dec_file": "pre_dec_json\\data493_aligned.json", + "gt_json_file": "json/gt_json\\data493_gt.json" +} \ No newline at end of file diff --git a/json/data494.json b/json/data494.json new file mode 100644 index 0000000000000000000000000000000000000000..a8940caffc5d3b80f0a3f8b2f9a3a95a27a5e639 --- /dev/null +++ b/json/data494.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data494", + "pre_dec_file": "pre_dec_json\\data494_aligned.json", + "gt_json_file": "json/gt_json\\data494_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data494.png" +} \ No newline at end of file diff --git a/json/data495.json b/json/data495.json new file mode 100644 index 0000000000000000000000000000000000000000..7aeb2c089dd8edf91cbe6aa073b58284d310c4cf --- /dev/null +++ b/json/data495.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data495", + "is_longtail": "True", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data495.png", + "pre_dec_file": "pre_dec_json\\data495_aligned.json", + "gt_json_file": "json/gt_json\\data495_gt.json" +} \ No newline at end of file diff --git a/json/data496.json b/json/data496.json new file mode 100644 index 0000000000000000000000000000000000000000..ecaa03c060cf9eb6d965d6889e90e02a4f4fb314 --- /dev/null +++ b/json/data496.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data496", + "is_longtail": "False", + "lt_ele": "", + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data496.png", + "pre_dec_file": "pre_dec_json\\data496_aligned.json", + "gt_json_file": "json/gt_json\\data496_gt.json" +} \ No newline at end of file diff --git a/json/data497.json b/json/data497.json new file mode 100644 index 0000000000000000000000000000000000000000..2f684613bf74651b731f9d1a3f0e085d3d0ea14e --- /dev/null +++ b/json/data497.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data497", + "pre_dec_file": "pre_dec_json\\data497_aligned.json", + "gt_json_file": "json/gt_json\\data497_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data497.png" +} \ No newline at end of file diff --git a/json/data498.json b/json/data498.json new file mode 100644 index 0000000000000000000000000000000000000000..fee4ed1cbf8cf8552d6219cb4d158f890e7376e5 --- /dev/null +++ b/json/data498.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.1", + "pic_name": "data498", + "pre_dec_file": "pre_dec_json\\data498_aligned.json", + "gt_json_file": "json/gt_json\\data498_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-U-turn", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data498.png" +} \ No newline at end of file diff --git a/json/data499.json b/json/data499.json new file mode 100644 index 0000000000000000000000000000000000000000..b2a1999863e33a38643791f9094e0e68cc2b6ae7 --- /dev/null +++ b/json/data499.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data499", + "is_longtail": "True", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data499.png", + "pre_dec_file": "pre_dec_json\\data499_aligned.json", + "gt_json_file": "json/gt_json\\data499_gt.json" +} \ No newline at end of file diff --git a/json/data5.json b/json/data5.json new file mode 100644 index 0000000000000000000000000000000000000000..1bb0f308cb88ed776903aaa7f59ac47dc36198b3 --- /dev/null +++ b/json/data5.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data5", + "pre_dec_file": "pre_dec_json\\data5_aligned.json", + "gt_json_file": "json/gt_json\\data5_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data5.png" +} \ No newline at end of file diff --git a/json/data50.json b/json/data50.json new file mode 100644 index 0000000000000000000000000000000000000000..8cbadb7613dd0f132c6aeed8af364b163cae81bf --- /dev/null +++ b/json/data50.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data50", + "pre_dec_file": "pre_dec_json\\data50_aligned.json", + "gt_json_file": "json/gt_json\\data50_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data50.png" +} \ No newline at end of file diff --git a/json/data500.json b/json/data500.json new file mode 100644 index 0000000000000000000000000000000000000000..12ae6013331b99a0ef1de0c30a3c95fe522e4fdd --- /dev/null +++ b/json/data500.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data500", + "pre_dec_file": "pre_dec_json\\data500_aligned.json", + "gt_json_file": "json/gt_json\\data500_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data500.png" +} \ No newline at end of file diff --git a/json/data501.json b/json/data501.json new file mode 100644 index 0000000000000000000000000000000000000000..98a21b418d6dddedb8a71b49e2628a61819b7b6d --- /dev/null +++ b/json/data501.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data501", + "pic_path": "..\\pic\\data501.png", + "pre_dec_file": "pre_dec_json\\data501_aligned.json", + "gt_json_file": "json/gt_json\\data501_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Emergency evacuation based on actual conditions" +} \ No newline at end of file diff --git a/json/data502.json b/json/data502.json new file mode 100644 index 0000000000000000000000000000000000000000..3e4fa1e962ad175be20f919935513db707b5ef7c --- /dev/null +++ b/json/data502.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data502", + "pre_dec_file": "pre_dec_json\\data502_aligned.json", + "gt_json_file": "json/gt_json\\data502_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data502.png" +} \ No newline at end of file diff --git a/json/data503.json b/json/data503.json new file mode 100644 index 0000000000000000000000000000000000000000..d2487019a7387e410975cef2a455fb8abbc71f84 --- /dev/null +++ b/json/data503.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data503", + "pre_dec_file": "pre_dec_json\\data503_aligned.json", + "gt_json_file": "json/gt_json\\data503_gt.json", + "is_longtail": "True", + "Sup_description": "Navigation information shows that the current road section is closed and impassable", + "lt_ele": "Information conflict", + "acc_factors": [ + "No vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data503.png" +} \ No newline at end of file diff --git a/json/data504.json b/json/data504.json new file mode 100644 index 0000000000000000000000000000000000000000..e6364f6d922ed64470665379b97fa07ff55384d5 --- /dev/null +++ b/json/data504.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.1", + "pic_name": "data504", + "pre_dec_file": "pre_dec_json\\data504_aligned.json", + "gt_json_file": "json/gt_json\\data504_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Construction work", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data504.png" +} \ No newline at end of file diff --git a/json/data505.json b/json/data505.json new file mode 100644 index 0000000000000000000000000000000000000000..fb156df38fb67dbf35269c3263147842e3a4451f --- /dev/null +++ b/json/data505.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data505", + "pic_path": "..\\pic\\data505.png", + "pre_dec_file": "pre_dec_json\\data505_aligned.json", + "gt_json_file": "json/gt_json\\data505_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route" +} \ No newline at end of file diff --git a/json/data506.json b/json/data506.json new file mode 100644 index 0000000000000000000000000000000000000000..6b7e2533f0b7b62329b0ed50079de0fae50d1eb6 --- /dev/null +++ b/json/data506.json @@ -0,0 +1,17 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data506", + "is_longtail": "True", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data506.png", + "pre_dec_file": "pre_dec_json\\data506_aligned.json", + "gt_json_file": "json/gt_json\\data506_gt.json" +} \ No newline at end of file diff --git a/json/data507.json b/json/data507.json new file mode 100644 index 0000000000000000000000000000000000000000..70b77dc6c3993245d58c80ecdd29e76ea8ddc4d0 --- /dev/null +++ b/json/data507.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data507", + "is_longtail": "False", + "lt_ele": "", + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data507.png", + "pre_dec_file": "pre_dec_json\\data507_aligned.json", + "gt_json_file": "json/gt_json\\data507_gt.json" +} \ No newline at end of file diff --git a/json/data508.json b/json/data508.json new file mode 100644 index 0000000000000000000000000000000000000000..71c7b453a13075080b0e4726460755644a07e297 --- /dev/null +++ b/json/data508.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.2", + "pic_name": "data508", + "pic_path": "..\\pic\\data508.png", + "pre_dec_file": "pre_dec_json\\data508_aligned.json", + "gt_json_file": "json/gt_json\\data508_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead" +} \ No newline at end of file diff --git a/json/data509.json b/json/data509.json new file mode 100644 index 0000000000000000000000000000000000000000..b5ee9593ad03d1d66bcda7e6370c41cae043abbe --- /dev/null +++ b/json/data509.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data509", + "pic_path": "..\\pic\\data509.png", + "pre_dec_file": "pre_dec_json\\data509_aligned.json", + "gt_json_file": "json/gt_json\\data509_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour" +} \ No newline at end of file diff --git a/json/data51.json b/json/data51.json new file mode 100644 index 0000000000000000000000000000000000000000..6de5ce5461b892911c4b84e7ee0540c1ad9abe84 --- /dev/null +++ b/json/data51.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data51", + "pre_dec_file": "pre_dec_json\\data51_aligned.json", + "gt_json_file": "json/gt_json\\data51_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data51.png" +} \ No newline at end of file diff --git a/json/data510.json b/json/data510.json new file mode 100644 index 0000000000000000000000000000000000000000..381ad9e9515398c2b138e0cf2f7fc2e847af01b5 --- /dev/null +++ b/json/data510.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data510", + "pic_path": "..\\pic\\data510.png", + "pre_dec_file": "pre_dec_json\\data510_aligned.json", + "gt_json_file": "json/gt_json\\data510_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Emergency evacuation based on actual conditions" +} \ No newline at end of file diff --git a/json/data511.json b/json/data511.json new file mode 100644 index 0000000000000000000000000000000000000000..b83ec7cfea7cce3a52bb3f48b51f011c9828f7dd --- /dev/null +++ b/json/data511.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.4", + "level3": "3.4.2", + "pic_name": "data511", + "pre_dec_file": "pre_dec_json\\data511_aligned.json", + "gt_json_file": "json/gt_json\\data511_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Poor visibility", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data511.png" +} \ No newline at end of file diff --git a/json/data512.json b/json/data512.json new file mode 100644 index 0000000000000000000000000000000000000000..c1bdb32306a46a11a72be8618de29bf743b4222f --- /dev/null +++ b/json/data512.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.2", + "pic_name": "data512", + "pic_path": "..\\pic\\data512.png", + "pre_dec_file": "pre_dec_json\\data512_aligned.json", + "gt_json_file": "json/gt_json\\data512_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale accident", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route" +} \ No newline at end of file diff --git a/json/data513.json b/json/data513.json new file mode 100644 index 0000000000000000000000000000000000000000..cea97c6ba077907c2e516d3f7b791bf201c41292 --- /dev/null +++ b/json/data513.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data513", + "pic_path": "..\\pic\\data513.png", + "pre_dec_file": "pre_dec_json\\data513_aligned.json", + "gt_json_file": "json/gt_json\\data513_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage" +} \ No newline at end of file diff --git a/json/data514.json b/json/data514.json new file mode 100644 index 0000000000000000000000000000000000000000..c403ce3281ce9dd0ade3fdef22ce1a8be7809401 --- /dev/null +++ b/json/data514.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data514", + "pic_path": "..\\pic\\data514.png", + "pre_dec_file": "pre_dec_json\\data514_aligned.json", + "gt_json_file": "json/gt_json\\data514_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route" +} \ No newline at end of file diff --git a/json/data515.json b/json/data515.json new file mode 100644 index 0000000000000000000000000000000000000000..0d200f09e71e4160316b1ef9fea3869f03cbf5f2 --- /dev/null +++ b/json/data515.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.2", + "level3": "3.2.1", + "pic_name": "data515", + "pre_dec_file": "pre_dec_json\\data515_aligned.json", + "gt_json_file": "json/gt_json\\data515_gt.json", + "is_longtail": "True", + "Sup_description": "Navigation information shows that the current road section is closed and impassable", + "lt_ele": "Information conflict", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data515.png" +} \ No newline at end of file diff --git a/json/data516.json b/json/data516.json new file mode 100644 index 0000000000000000000000000000000000000000..23aafe069ab279bb2a48b9d65e1649c39ee7b5b8 --- /dev/null +++ b/json/data516.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data516", + "pic_path": "..\\pic\\data516.png", + "pre_dec_file": "pre_dec_json\\data516_aligned.json", + "gt_json_file": "json/gt_json\\data516_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route" +} \ No newline at end of file diff --git a/json/data517.json b/json/data517.json new file mode 100644 index 0000000000000000000000000000000000000000..ac98b31075a662ae30c2453a62c92b44196916fa --- /dev/null +++ b/json/data517.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data517", + "pre_dec_file": "pre_dec_json\\data517_aligned.json", + "gt_json_file": "json/gt_json\\data517_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data517.png" +} \ No newline at end of file diff --git a/json/data518.json b/json/data518.json new file mode 100644 index 0000000000000000000000000000000000000000..46e5ef0ac0a163c7a010f23982d1237cdd880548 --- /dev/null +++ b/json/data518.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data518", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data518.png", + "pre_dec_file": "pre_dec_json\\data518_aligned.json", + "gt_json_file": "json/gt_json\\data518_gt.json" +} \ No newline at end of file diff --git a/json/data519.json b/json/data519.json new file mode 100644 index 0000000000000000000000000000000000000000..ef26fa59bd78e9bded617d9301357d7e047ae6ef --- /dev/null +++ b/json/data519.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data519", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data519.png", + "pre_dec_file": "pre_dec_json\\data519_aligned.json", + "gt_json_file": "json/gt_json\\data519_gt.json" +} \ No newline at end of file diff --git a/json/data52.json b/json/data52.json new file mode 100644 index 0000000000000000000000000000000000000000..93e7a22f122b4d8f3c397e9e8b4cfb7b117f43d0 --- /dev/null +++ b/json/data52.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.3", + "pic_name": "data52", + "pre_dec_file": "pre_dec_json\\data52_aligned.json", + "gt_json_file": "json/gt_json\\data52_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data52.png" +} \ No newline at end of file diff --git a/json/data520.json b/json/data520.json new file mode 100644 index 0000000000000000000000000000000000000000..8ce6fff16630d41c5514224073bfa67fb90b8529 --- /dev/null +++ b/json/data520.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data520", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data520.png", + "pre_dec_file": "pre_dec_json\\data520_aligned.json", + "gt_json_file": "json/gt_json\\data520_gt.json" +} \ No newline at end of file diff --git a/json/data521.json b/json/data521.json new file mode 100644 index 0000000000000000000000000000000000000000..324b866a6981b1403e6032421cbe11e93e35ee02 --- /dev/null +++ b/json/data521.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data521", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data521.png", + "pre_dec_file": "pre_dec_json\\data521_aligned.json", + "gt_json_file": "json/gt_json\\data521_gt.json" +} \ No newline at end of file diff --git a/json/data522.json b/json/data522.json new file mode 100644 index 0000000000000000000000000000000000000000..17e32e042b977863e674c754942c329a999804ee --- /dev/null +++ b/json/data522.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data522", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data522.png", + "pre_dec_file": "pre_dec_json\\data522_aligned.json", + "gt_json_file": "json/gt_json\\data522_gt.json" +} \ No newline at end of file diff --git a/json/data523.json b/json/data523.json new file mode 100644 index 0000000000000000000000000000000000000000..73643fab5a9c2a3054c292fc1215aca3b66dd610 --- /dev/null +++ b/json/data523.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data523", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data523.png", + "pre_dec_file": "pre_dec_json\\data523_aligned.json", + "gt_json_file": "json/gt_json\\data523_gt.json" +} \ No newline at end of file diff --git a/json/data524.json b/json/data524.json new file mode 100644 index 0000000000000000000000000000000000000000..077b247536c60dac00e39fd2916b6280de0857ca --- /dev/null +++ b/json/data524.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data524", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data524.png", + "pre_dec_file": "pre_dec_json\\data524_aligned.json", + "gt_json_file": "json/gt_json\\data524_gt.json" +} \ No newline at end of file diff --git a/json/data525.json b/json/data525.json new file mode 100644 index 0000000000000000000000000000000000000000..f6f24d3f8d6fa534b95ba9069f9d4cd5c1852411 --- /dev/null +++ b/json/data525.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data525", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data525.png", + "pre_dec_file": "pre_dec_json\\data525_aligned.json", + "gt_json_file": "json/gt_json\\data525_gt.json" +} \ No newline at end of file diff --git a/json/data526.json b/json/data526.json new file mode 100644 index 0000000000000000000000000000000000000000..a62cf867b7dc02cd5e3664135468b40a9086b903 --- /dev/null +++ b/json/data526.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data526", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data526.png", + "pre_dec_file": "pre_dec_json\\data526_aligned.json", + "gt_json_file": "json/gt_json\\data526_gt.json" +} \ No newline at end of file diff --git a/json/data527.json b/json/data527.json new file mode 100644 index 0000000000000000000000000000000000000000..80b3508ce6b41e452123d7702a62d33203ce0b33 --- /dev/null +++ b/json/data527.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data527", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data527.png", + "pre_dec_file": "pre_dec_json\\data527_aligned.json", + "gt_json_file": "json/gt_json\\data527_gt.json" +} \ No newline at end of file diff --git a/json/data528.json b/json/data528.json new file mode 100644 index 0000000000000000000000000000000000000000..562ca914f8c15aa709f41d80266c3affd453b995 --- /dev/null +++ b/json/data528.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data528", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data528.png", + "pre_dec_file": "pre_dec_json\\data528_aligned.json", + "gt_json_file": "json/gt_json\\data528_gt.json" +} \ No newline at end of file diff --git a/json/data529.json b/json/data529.json new file mode 100644 index 0000000000000000000000000000000000000000..35076a38baff01124f50f6c6de400110eb78b654 --- /dev/null +++ b/json/data529.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data529", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data529.png", + "pre_dec_file": "pre_dec_json\\data529_aligned.json", + "gt_json_file": "json/gt_json\\data529_gt.json" +} \ No newline at end of file diff --git a/json/data53.json b/json/data53.json new file mode 100644 index 0000000000000000000000000000000000000000..f65a9d7a7d512a927392f412be7c0fcd95f4a446 --- /dev/null +++ b/json/data53.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data53", + "pre_dec_file": "pre_dec_json\\data53_aligned.json", + "gt_json_file": "json/gt_json\\data53_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data53.png" +} \ No newline at end of file diff --git a/json/data530.json b/json/data530.json new file mode 100644 index 0000000000000000000000000000000000000000..e188874011f3f9f07b28ef74ed03c784db287799 --- /dev/null +++ b/json/data530.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data530", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data530.png", + "pre_dec_file": "pre_dec_json\\data530_aligned.json", + "gt_json_file": "json/gt_json\\data530_gt.json" +} \ No newline at end of file diff --git a/json/data531.json b/json/data531.json new file mode 100644 index 0000000000000000000000000000000000000000..92979cc6ace92bca4247d87fd543ec24a592b96d --- /dev/null +++ b/json/data531.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data531", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data531.png", + "pre_dec_file": "pre_dec_json\\data531_aligned.json", + "gt_json_file": "json/gt_json\\data531_gt.json" +} \ No newline at end of file diff --git a/json/data532.json b/json/data532.json new file mode 100644 index 0000000000000000000000000000000000000000..5d2193ab5b20bca932c133e3b3c4356d4b4293ff --- /dev/null +++ b/json/data532.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data532", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data532.png", + "pre_dec_file": "pre_dec_json\\data532_aligned.json", + "gt_json_file": "json/gt_json\\data532_gt.json" +} \ No newline at end of file diff --git a/json/data533.json b/json/data533.json new file mode 100644 index 0000000000000000000000000000000000000000..2607c55a92ace82490196aaea08c0e26d5c14dd3 --- /dev/null +++ b/json/data533.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data533", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data533.png", + "pre_dec_file": "pre_dec_json\\data533_aligned.json", + "gt_json_file": "json/gt_json\\data533_gt.json" +} \ No newline at end of file diff --git a/json/data534.json b/json/data534.json new file mode 100644 index 0000000000000000000000000000000000000000..0f0c92c5ac347bfab4916e302d192520b491b955 --- /dev/null +++ b/json/data534.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data534", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data534.png", + "pre_dec_file": "pre_dec_json\\data534_aligned.json", + "gt_json_file": "json/gt_json\\data534_gt.json" +} \ No newline at end of file diff --git a/json/data535.json b/json/data535.json new file mode 100644 index 0000000000000000000000000000000000000000..02a6fa54690deb4476b26b760b7631484a8af161 --- /dev/null +++ b/json/data535.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data535", + "pre_dec_file": "pre_dec_json\\data535_aligned.json", + "gt_json_file": "json/gt_json\\data535_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data535.png" +} \ No newline at end of file diff --git a/json/data536.json b/json/data536.json new file mode 100644 index 0000000000000000000000000000000000000000..74dce3fbf9b62e86af669829a12d8d26f0f3d300 --- /dev/null +++ b/json/data536.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data536", + "pre_dec_file": "pre_dec_json\\data536_aligned.json", + "gt_json_file": "json/gt_json\\data536_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data536.png" +} \ No newline at end of file diff --git a/json/data537.json b/json/data537.json new file mode 100644 index 0000000000000000000000000000000000000000..c3f5843100b3985954cf439ad00fecdffa7e36a3 --- /dev/null +++ b/json/data537.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data537", + "pre_dec_file": "pre_dec_json\\data537_aligned.json", + "gt_json_file": "json/gt_json\\data537_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data537.png" +} \ No newline at end of file diff --git a/json/data538.json b/json/data538.json new file mode 100644 index 0000000000000000000000000000000000000000..dd460286f39c82af4b6c73e01f47c6b4ec8739e2 --- /dev/null +++ b/json/data538.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data538", + "pre_dec_file": "pre_dec_json\\data538_aligned.json", + "gt_json_file": "json/gt_json\\data538_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data538.png" +} \ No newline at end of file diff --git a/json/data539.json b/json/data539.json new file mode 100644 index 0000000000000000000000000000000000000000..66e85d578e4815c8261eda5860cf2c489d342751 --- /dev/null +++ b/json/data539.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data539", + "pre_dec_file": "pre_dec_json\\data539_aligned.json", + "gt_json_file": "json/gt_json\\data539_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data539.png" +} \ No newline at end of file diff --git a/json/data54.json b/json/data54.json new file mode 100644 index 0000000000000000000000000000000000000000..64f8a68f19c8048c6190aabf7e8cde3f877af9d3 --- /dev/null +++ b/json/data54.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data54", + "pre_dec_file": "pre_dec_json\\data54_aligned.json", + "gt_json_file": "json/gt_json\\data54_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data54.png" +} \ No newline at end of file diff --git a/json/data540.json b/json/data540.json new file mode 100644 index 0000000000000000000000000000000000000000..a278a7adf943d1d9b67d92760c4b2928627db080 --- /dev/null +++ b/json/data540.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data540", + "pre_dec_file": "pre_dec_json\\data540_aligned.json", + "gt_json_file": "json/gt_json\\data540_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data540.png" +} \ No newline at end of file diff --git a/json/data541.json b/json/data541.json new file mode 100644 index 0000000000000000000000000000000000000000..b27502e79f7596ea67507f5b39db0af4288f7b17 --- /dev/null +++ b/json/data541.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data541", + "pre_dec_file": "pre_dec_json\\data541_aligned.json", + "gt_json_file": "json/gt_json\\data541_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data541.png" +} \ No newline at end of file diff --git a/json/data542.json b/json/data542.json new file mode 100644 index 0000000000000000000000000000000000000000..bbfb1fb42f72744797baec765d5272cb1c8fb113 --- /dev/null +++ b/json/data542.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.2", + "pic_name": "data542", + "pre_dec_file": "pre_dec_json\\data542_aligned.json", + "gt_json_file": "json/gt_json\\data542_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data542.png" +} \ No newline at end of file diff --git a/json/data543.json b/json/data543.json new file mode 100644 index 0000000000000000000000000000000000000000..1e4525d03cbe0ba0ad463e0b194a2542cbc7aff5 --- /dev/null +++ b/json/data543.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data543", + "pre_dec_file": "pre_dec_json\\data543_aligned.json", + "gt_json_file": "json/gt_json\\data543_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data543.png" +} \ No newline at end of file diff --git a/json/data544.json b/json/data544.json new file mode 100644 index 0000000000000000000000000000000000000000..063fca6b2cfd50d2599a5225b26b451baa832f04 --- /dev/null +++ b/json/data544.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.2", + "pic_name": "data544", + "pre_dec_file": "pre_dec_json\\data544_aligned.json", + "gt_json_file": "json/gt_json\\data544_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data544.png" +} \ No newline at end of file diff --git a/json/data545.json b/json/data545.json new file mode 100644 index 0000000000000000000000000000000000000000..1cac0622e22281be78a3ac96937b66e6a1e4fca8 --- /dev/null +++ b/json/data545.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data545", + "pre_dec_file": "pre_dec_json\\data545_aligned.json", + "gt_json_file": "json/gt_json\\data545_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data545.png" +} \ No newline at end of file diff --git a/json/data546.json b/json/data546.json new file mode 100644 index 0000000000000000000000000000000000000000..019ae4b441bf82fbb6ff4c3e588db6eb3b594c30 --- /dev/null +++ b/json/data546.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data546", + "pre_dec_file": "pre_dec_json\\data546_aligned.json", + "gt_json_file": "json/gt_json\\data546_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data546.png" +} \ No newline at end of file diff --git a/json/data547.json b/json/data547.json new file mode 100644 index 0000000000000000000000000000000000000000..8210ede2adc0ce093b88a5e6e281336b497776cf --- /dev/null +++ b/json/data547.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data547", + "pre_dec_file": "pre_dec_json\\data547_aligned.json", + "gt_json_file": "json/gt_json\\data547_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data547.png" +} \ No newline at end of file diff --git a/json/data548.json b/json/data548.json new file mode 100644 index 0000000000000000000000000000000000000000..cf1a9f44638778d8c70d7e84c90f5d49328c1ef7 --- /dev/null +++ b/json/data548.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.4", + "level3": "2.4.2", + "pic_name": "data548", + "pre_dec_file": "pre_dec_json\\data548_aligned.json", + "gt_json_file": "json/gt_json\\data548_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Special vehicles", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data548.png" +} \ No newline at end of file diff --git a/json/data549.json b/json/data549.json new file mode 100644 index 0000000000000000000000000000000000000000..5dfd8e81be7067109e9348038fdb44fdf2f4d1db --- /dev/null +++ b/json/data549.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.2", + "pic_name": "data549", + "pre_dec_file": "pre_dec_json\\data549_aligned.json", + "gt_json_file": "json/gt_json\\data549_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Pedestrians", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data549.png" +} \ No newline at end of file diff --git a/json/data55.json b/json/data55.json new file mode 100644 index 0000000000000000000000000000000000000000..52b5b70998be4afdc1adb05f454cb666299724b8 --- /dev/null +++ b/json/data55.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data55", + "pre_dec_file": "pre_dec_json\\data55_aligned.json", + "gt_json_file": "json/gt_json\\data55_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data55.png" +} \ No newline at end of file diff --git a/json/data550.json b/json/data550.json new file mode 100644 index 0000000000000000000000000000000000000000..3cf6b45b016d684f1183ac33cc1c4299c87b24f6 --- /dev/null +++ b/json/data550.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.5", + "level3": "1.5.1", + "pic_name": "data550", + "pre_dec_file": "pre_dec_json\\data550_aligned.json", + "gt_json_file": "json/gt_json\\data550_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Natural disaster", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data550.png" +} \ No newline at end of file diff --git a/json/data56.json b/json/data56.json new file mode 100644 index 0000000000000000000000000000000000000000..8d6cd2379409636c14fe3f3d930c58ceca10d90d --- /dev/null +++ b/json/data56.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.1", + "pic_name": "data56", + "pre_dec_file": "pre_dec_json\\data56_aligned.json", + "gt_json_file": "json/gt_json\\data56_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Snowy terrain", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data56.png" +} \ No newline at end of file diff --git a/json/data57.json b/json/data57.json new file mode 100644 index 0000000000000000000000000000000000000000..4c8539241b9180abf7ef31d81588b2fbf5aeb866 --- /dev/null +++ b/json/data57.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data57", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data57.png", + "pre_dec_file": "pre_dec_json\\data57_aligned.json", + "gt_json_file": "json/gt_json\\data57_gt.json" +} \ No newline at end of file diff --git a/json/data58.json b/json/data58.json new file mode 100644 index 0000000000000000000000000000000000000000..6e2c46e20c6c2f1e4098bb05cf046010cb9db3c3 --- /dev/null +++ b/json/data58.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data58", + "pre_dec_file": "pre_dec_json\\data58_aligned.json", + "gt_json_file": "json/gt_json\\data58_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data58.png" +} \ No newline at end of file diff --git a/json/data59.json b/json/data59.json new file mode 100644 index 0000000000000000000000000000000000000000..323b574166644d691093f25f08104e55213c36ae --- /dev/null +++ b/json/data59.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data59", + "pre_dec_file": "pre_dec_json\\data59_aligned.json", + "gt_json_file": "json/gt_json\\data59_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data59.png" +} \ No newline at end of file diff --git a/json/data6.json b/json/data6.json new file mode 100644 index 0000000000000000000000000000000000000000..b33427f5a877dcf8019b945e29ea40cc75730c3f --- /dev/null +++ b/json/data6.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data6", + "pre_dec_file": "pre_dec_json\\data6_aligned.json", + "gt_json_file": "json/gt_json\\data6_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data6.png" +} \ No newline at end of file diff --git a/json/data60.json b/json/data60.json new file mode 100644 index 0000000000000000000000000000000000000000..4da78a926997d70b807a44f54517f26a1fdbad05 --- /dev/null +++ b/json/data60.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data60", + "pre_dec_file": "pre_dec_json\\data60_aligned.json", + "gt_json_file": "json/gt_json\\data60_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data60.png" +} \ No newline at end of file diff --git a/json/data61.json b/json/data61.json new file mode 100644 index 0000000000000000000000000000000000000000..3a8dfa0bc73f3892246a2a5ad0f198f85ec98a01 --- /dev/null +++ b/json/data61.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data61", + "pre_dec_file": "pre_dec_json\\data61_aligned.json", + "gt_json_file": "json/gt_json\\data61_gt.json", + "is_longtail": "False", + "Sup_description": "", + "lt_ele": "", + "acc_factors": [], + "post_dec": "", + "pic_path": "..\\pic\\data61.png" +} \ No newline at end of file diff --git a/json/data62.json b/json/data62.json new file mode 100644 index 0000000000000000000000000000000000000000..615d4760b7fba2c6b1b1c59933604a799e06cbae --- /dev/null +++ b/json/data62.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data62", + "pre_dec_file": "pre_dec_json\\data62_aligned.json", + "gt_json_file": "json/gt_json\\data62_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data62.png" +} \ No newline at end of file diff --git a/json/data63.json b/json/data63.json new file mode 100644 index 0000000000000000000000000000000000000000..d1505ea2373e7572239bd3121b625c9357fda179 --- /dev/null +++ b/json/data63.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data63", + "pre_dec_file": "pre_dec_json\\data63_aligned.json", + "gt_json_file": "json/gt_json\\data63_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data63.png" +} \ No newline at end of file diff --git a/json/data64.json b/json/data64.json new file mode 100644 index 0000000000000000000000000000000000000000..ea8d3d62b1bb927a583c1d211854f8560577f27f --- /dev/null +++ b/json/data64.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.2", + "level3": "1.2.2", + "pic_name": "data64", + "pre_dec_file": "pre_dec_json\\data64_aligned.json", + "gt_json_file": "json/gt_json\\data64_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Large-scale equipment", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data64.png" +} \ No newline at end of file diff --git a/json/data65.json b/json/data65.json new file mode 100644 index 0000000000000000000000000000000000000000..274376437c42f49d6fdde7b4d17ee96c39dd5a15 --- /dev/null +++ b/json/data65.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data65", + "pre_dec_file": "pre_dec_json\\data65_aligned.json", + "gt_json_file": "json/gt_json\\data65_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data65.png" +} \ No newline at end of file diff --git a/json/data66.json b/json/data66.json new file mode 100644 index 0000000000000000000000000000000000000000..aca7c9ee694849dc82c37786c0dac738fec9d6e4 --- /dev/null +++ b/json/data66.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.1", + "level3": "1.1.2", + "pic_name": "data66", + "pre_dec_file": "pre_dec_json\\data66_aligned.json", + "gt_json_file": "json/gt_json\\data66_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ponding water", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data66.png" +} \ No newline at end of file diff --git a/json/data67.json b/json/data67.json new file mode 100644 index 0000000000000000000000000000000000000000..73e6ddd04ddd0129dd00704d800de6c24b608e62 --- /dev/null +++ b/json/data67.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data67", + "pre_dec_file": "pre_dec_json\\data67_aligned.json", + "gt_json_file": "json/gt_json\\data67_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data67.png" +} \ No newline at end of file diff --git a/json/data68.json b/json/data68.json new file mode 100644 index 0000000000000000000000000000000000000000..90db948e3796a38fd7c631853d5ea228f5fd2d8e --- /dev/null +++ b/json/data68.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data68", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data68.png", + "pre_dec_file": "pre_dec_json\\data68_aligned.json", + "gt_json_file": "json/gt_json\\data68_gt.json" +} \ No newline at end of file diff --git a/json/data69.json b/json/data69.json new file mode 100644 index 0000000000000000000000000000000000000000..f34079a7fd61a690c47bcda6c767b78354e5640c --- /dev/null +++ b/json/data69.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data69", + "pre_dec_file": "pre_dec_json\\data69_aligned.json", + "gt_json_file": "json/gt_json\\data69_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data69.png" +} \ No newline at end of file diff --git a/json/data7.json b/json/data7.json new file mode 100644 index 0000000000000000000000000000000000000000..bc132995841ed786b23cd42ff5b3245db9d15856 --- /dev/null +++ b/json/data7.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.1", + "pic_name": "data7", + "pre_dec_file": "pre_dec_json\\data7_aligned.json", + "gt_json_file": "json/gt_json\\data7_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Animals", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data7.png" +} \ No newline at end of file diff --git a/json/data70.json b/json/data70.json new file mode 100644 index 0000000000000000000000000000000000000000..a3f4048cab0ad852b124eced3753021682a759c5 --- /dev/null +++ b/json/data70.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.2", + "pic_name": "data70", + "pre_dec_file": "pre_dec_json\\data70_aligned.json", + "gt_json_file": "json/gt_json\\data70_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data70.png" +} \ No newline at end of file diff --git a/json/data71.json b/json/data71.json new file mode 100644 index 0000000000000000000000000000000000000000..9665ca191a9549432913b1cbcc2633d46b119063 --- /dev/null +++ b/json/data71.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data71", + "pre_dec_file": "pre_dec_json\\data71_aligned.json", + "gt_json_file": "json/gt_json\\data71_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data71.png" +} \ No newline at end of file diff --git a/json/data72.json b/json/data72.json new file mode 100644 index 0000000000000000000000000000000000000000..5a753909707f59c8b97d08a79a1424733593a0f6 --- /dev/null +++ b/json/data72.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data72", + "pre_dec_file": "pre_dec_json\\data72_aligned.json", + "gt_json_file": "json/gt_json\\data72_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data72.png" +} \ No newline at end of file diff --git a/json/data73.json b/json/data73.json new file mode 100644 index 0000000000000000000000000000000000000000..8943b7f0a14057962e7a929d18a51304c57f9834 --- /dev/null +++ b/json/data73.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data73", + "pic_path": "..\\pic\\data73.png", + "pre_dec_file": "pre_dec_json\\data73_aligned.json", + "gt_json_file": "json/gt_json\\data73_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead" +} \ No newline at end of file diff --git a/json/data74.json b/json/data74.json new file mode 100644 index 0000000000000000000000000000000000000000..35b52d8996320cae3bbe851a212250cbe6156713 --- /dev/null +++ b/json/data74.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data74", + "pre_dec_file": "pre_dec_json\\data74_aligned.json", + "gt_json_file": "json/gt_json\\data74_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data74.png" +} \ No newline at end of file diff --git a/json/data75.json b/json/data75.json new file mode 100644 index 0000000000000000000000000000000000000000..0f9b93b5eb0e3ebc4cd52f2b18f20d6386416cc0 --- /dev/null +++ b/json/data75.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.3", + "level3": "1.3.1", + "pic_name": "data75", + "pre_dec_file": "pre_dec_json\\data75_aligned.json", + "gt_json_file": "json/gt_json\\data75_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Hazardous materials transport vehicle accident", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Emergency evacuation based on actual conditions", + "pic_path": "..\\pic\\data75.png" +} \ No newline at end of file diff --git a/json/data76.json b/json/data76.json new file mode 100644 index 0000000000000000000000000000000000000000..10378307ebe0c31d4948d0e09ce39ef0a6e80e75 --- /dev/null +++ b/json/data76.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.3", + "pic_name": "data76", + "pre_dec_file": "pre_dec_json\\data76_aligned.json", + "gt_json_file": "json/gt_json\\data76_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Vehicle body abnormality", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and depending on the situation, proceed straight ahead or take a detour", + "pic_path": "..\\pic\\data76.png" +} \ No newline at end of file diff --git a/json/data77.json b/json/data77.json new file mode 100644 index 0000000000000000000000000000000000000000..3978ba2517265bab978b40da85d28a14959bf856 --- /dev/null +++ b/json/data77.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.2", + "pic_name": "data77", + "pre_dec_file": "pre_dec_json\\data77_aligned.json", + "gt_json_file": "json/gt_json\\data77_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden lane change", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data77.png" +} \ No newline at end of file diff --git a/json/data78.json b/json/data78.json new file mode 100644 index 0000000000000000000000000000000000000000..0168f6e857b6de3498eb1cdba2792f494a406e03 --- /dev/null +++ b/json/data78.json @@ -0,0 +1,18 @@ +{ + "level1": "1", + "level2": "1.4", + "level3": "1.4.1", + "pic_name": "data78", + "pre_dec_file": "pre_dec_json\\data78_aligned.json", + "gt_json_file": "json/gt_json\\data78_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Event control", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data78.png" +} \ No newline at end of file diff --git a/json/data79.json b/json/data79.json new file mode 100644 index 0000000000000000000000000000000000000000..e2cb053c3b87d5d54ffb23c3cc543084d47539de --- /dev/null +++ b/json/data79.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data79", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data79.png", + "pre_dec_file": "pre_dec_json\\data79_aligned.json", + "gt_json_file": "json/gt_json\\data79_gt.json" +} \ No newline at end of file diff --git a/json/data8.json b/json/data8.json new file mode 100644 index 0000000000000000000000000000000000000000..604d490de103dc2a8719cd2fe49f8cf83614dfbc --- /dev/null +++ b/json/data8.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.4", + "pic_name": "data8", + "pre_dec_file": "pre_dec_json\\data8_aligned.json", + "gt_json_file": "json/gt_json\\data8_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "non-motorized vehicle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and take a detour", + "pic_path": "..\\pic\\data8.png" +} \ No newline at end of file diff --git a/json/data80.json b/json/data80.json new file mode 100644 index 0000000000000000000000000000000000000000..c837659e9a19d57cf142025b97c7bea594fdfca1 --- /dev/null +++ b/json/data80.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.1", + "pic_name": "data80", + "pre_dec_file": "pre_dec_json\\data80_aligned.json", + "gt_json_file": "json/gt_json\\data80_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Severe", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route", + "pic_path": "..\\pic\\data80.png" +} \ No newline at end of file diff --git a/json/data81.json b/json/data81.json new file mode 100644 index 0000000000000000000000000000000000000000..9b2a52d0d66df3fbeca7aceaa63a0f022ce3def7 --- /dev/null +++ b/json/data81.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data81", + "pre_dec_file": "pre_dec_json\\data81_aligned.json", + "gt_json_file": "json/gt_json\\data81_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data81.png" +} \ No newline at end of file diff --git a/json/data82.json b/json/data82.json new file mode 100644 index 0000000000000000000000000000000000000000..203645947ff3e7880290f8d3383c7cd68b78c436 --- /dev/null +++ b/json/data82.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.3", + "level3": "3.3.1", + "pic_name": "data82", + "pre_dec_file": "pre_dec_json\\data82_aligned.json", + "gt_json_file": "json/gt_json\\data82_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal behavior of other vehicles-Sudden braking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility temporarily" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data82.png" +} \ No newline at end of file diff --git a/json/data83.json b/json/data83.json new file mode 100644 index 0000000000000000000000000000000000000000..1b93631a1e28bc3d3a84a0fac8b1fc00dbd048ca --- /dev/null +++ b/json/data83.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.2", + "pic_name": "data83", + "pre_dec_file": "pre_dec_json\\data83_aligned.json", + "gt_json_file": "json/gt_json\\data83_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Low-speed heavy vehicles", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data83.png" +} \ No newline at end of file diff --git a/json/data84.json b/json/data84.json new file mode 100644 index 0000000000000000000000000000000000000000..e00b0c3686b983c9a4448cd86e6757efdac4c1dc --- /dev/null +++ b/json/data84.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data84", + "pre_dec_file": "pre_dec_json\\data84_aligned.json", + "gt_json_file": "json/gt_json\\data84_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data84.png" +} \ No newline at end of file diff --git a/json/data85.json b/json/data85.json new file mode 100644 index 0000000000000000000000000000000000000000..5abcf82281ff04058bcc75a0d6080a67cdef8e77 --- /dev/null +++ b/json/data85.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data85", + "pre_dec_file": "pre_dec_json\\data85_aligned.json", + "gt_json_file": "json/gt_json\\data85_gt.json", + "is_longtail": "False", + "Sup_description": "", + "lt_ele": "", + "acc_factors": [], + "post_dec": "", + "pic_path": "..\\pic\\data85.png" +} \ No newline at end of file diff --git a/json/data86.json b/json/data86.json new file mode 100644 index 0000000000000000000000000000000000000000..56dfaacc0a7890fb17279d7f379b3aa21ef854ac --- /dev/null +++ b/json/data86.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.2", + "pic_name": "data86", + "pre_dec_file": "pre_dec_json\\data86_aligned.json", + "gt_json_file": "json/gt_json\\data86_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Falling objects from above", + "acc_factors": [ + "No vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data86.png" +} \ No newline at end of file diff --git a/json/data87.json b/json/data87.json new file mode 100644 index 0000000000000000000000000000000000000000..5dff7eeeb0ffaf4196b8091bc3c0c87dcd3f219b --- /dev/null +++ b/json/data87.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.5", + "level3": "3.5.1", + "pic_name": "data87", + "pre_dec_file": "pre_dec_json\\data87_aligned.json", + "gt_json_file": "json/gt_json\\data87_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data87.png" +} \ No newline at end of file diff --git a/json/data88.json b/json/data88.json new file mode 100644 index 0000000000000000000000000000000000000000..f1435a8ec53d91fcf14d4a84513cd942c56a8ad2 --- /dev/null +++ b/json/data88.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.1", + "pic_name": "data88", + "pre_dec_file": "pre_dec_json\\data88_aligned.json", + "gt_json_file": "json/gt_json\\data88_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-U-turn", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data88.png" +} \ No newline at end of file diff --git a/json/data89.json b/json/data89.json new file mode 100644 index 0000000000000000000000000000000000000000..a80dd31165c80471b45f864e2d673d89b321f6af --- /dev/null +++ b/json/data89.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.3", + "pic_name": "data89", + "pre_dec_file": "pre_dec_json\\data89_aligned.json", + "gt_json_file": "json/gt_json\\data89_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-Parking", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data89.png" +} \ No newline at end of file diff --git a/json/data9.json b/json/data9.json new file mode 100644 index 0000000000000000000000000000000000000000..e40275a6cf7d7010e237dd7c89ddd3594cde12f1 --- /dev/null +++ b/json/data9.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.1", + "level3": "2.1.1", + "pic_name": "data9", + "pic_path": "..\\pic\\data9.png", + "pre_dec_file": "pre_dec_json\\data9_aligned.json", + "gt_json_file": "json/gt_json\\data9_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Ground obstacle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Park safely and replan the route" +} \ No newline at end of file diff --git a/json/data90.json b/json/data90.json new file mode 100644 index 0000000000000000000000000000000000000000..1653e482cc04702b1c3b639554c31f7e6ced17d2 --- /dev/null +++ b/json/data90.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data90", + "is_longtail": "False", + "lt_ele": null, + "acc_factors": [], + "Sup_description": "", + "post_dec": "", + "pic_path": "..\\pic\\data90.png", + "pre_dec_file": "pre_dec_json\\data90_aligned.json", + "gt_json_file": "json/gt_json\\data90_gt.json" +} \ No newline at end of file diff --git a/json/data91.json b/json/data91.json new file mode 100644 index 0000000000000000000000000000000000000000..70005d31361f9a2302a225362cdfc5f087b2c27b --- /dev/null +++ b/json/data91.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.3", + "level3": "2.3.1", + "pic_name": "data91", + "pre_dec_file": "pre_dec_json\\data91_aligned.json", + "gt_json_file": "json/gt_json\\data91_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Command signals/temporary signs", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Park safely and request instructions", + "pic_path": "..\\pic\\data91.png" +} \ No newline at end of file diff --git a/json/data92.json b/json/data92.json new file mode 100644 index 0000000000000000000000000000000000000000..20eca0181c2d760eca361e49b0d586924d055c6a --- /dev/null +++ b/json/data92.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.4", + "pic_name": "data92", + "pre_dec_file": "pre_dec_json\\data92_aligned.json", + "gt_json_file": "json/gt_json\\data92_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "non-motorized vehicle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data92.png" +} \ No newline at end of file diff --git a/json/data93.json b/json/data93.json new file mode 100644 index 0000000000000000000000000000000000000000..d4656d12c51fc5e84879bd8509af7a58f2bafae5 --- /dev/null +++ b/json/data93.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data93", + "pre_dec_file": "pre_dec_json\\data93_aligned.json", + "gt_json_file": "json/gt_json\\data93_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data93.png" +} \ No newline at end of file diff --git a/json/data94.json b/json/data94.json new file mode 100644 index 0000000000000000000000000000000000000000..0b01aadb127ae31851e048cac9d5f01703141b21 --- /dev/null +++ b/json/data94.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.3", + "pic_name": "data94", + "pre_dec_file": "pre_dec_json\\data94_aligned.json", + "gt_json_file": "json/gt_json\\data94_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Light", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data94.png" +} \ No newline at end of file diff --git a/json/data95.json b/json/data95.json new file mode 100644 index 0000000000000000000000000000000000000000..4daf20656b5c3a36f47d6b1a38453ed620978e84 --- /dev/null +++ b/json/data95.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.5", + "level3": "2.5.2", + "pic_name": "data95", + "pre_dec_file": "pre_dec_json\\data95_aligned.json", + "gt_json_file": "json/gt_json\\data95_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Road surface damage-Moderate", + "acc_factors": [ + "Vehicles ahead", + "Does not affect own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Low-speed straight passage", + "pic_path": "..\\pic\\data95.png" +} \ No newline at end of file diff --git a/json/data96.json b/json/data96.json new file mode 100644 index 0000000000000000000000000000000000000000..ed7dc5563d6aaca2e3496afc2ff891e08273ad5c --- /dev/null +++ b/json/data96.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.1", + "pic_name": "data96", + "pre_dec_file": "pre_dec_json\\data96_aligned.json", + "gt_json_file": "json/gt_json\\data96_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-U-turn", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data96.png" +} \ No newline at end of file diff --git a/json/data97.json b/json/data97.json new file mode 100644 index 0000000000000000000000000000000000000000..28cab8e2e1b80e2e3dcc0ccabc92d2a0d5faa05a --- /dev/null +++ b/json/data97.json @@ -0,0 +1,14 @@ +{ + "level1": "", + "level2": "", + "level3": "", + "pic_name": "data97", + "pre_dec_file": "pre_dec_json\\data97_aligned.json", + "gt_json_file": "json/gt_json\\data97_gt.json", + "is_longtail": "False", + "Sup_description": "", + "lt_ele": "", + "acc_factors": [], + "post_dec": "", + "pic_path": "..\\pic\\data97.png" +} \ No newline at end of file diff --git a/json/data98.json b/json/data98.json new file mode 100644 index 0000000000000000000000000000000000000000..2ddff773192565f872486fc92233b1a4de465e66 --- /dev/null +++ b/json/data98.json @@ -0,0 +1,18 @@ +{ + "level1": "2", + "level2": "2.2", + "level3": "2.2.4", + "pic_name": "data98", + "pre_dec_file": "pre_dec_json\\data98_aligned.json", + "gt_json_file": "json/gt_json\\data98_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "non-motorized vehicle", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "Lane-borrowing possible" + ], + "post_dec": "Slow down and take a detour", + "pic_path": "..\\pic\\data98.png" +} \ No newline at end of file diff --git a/json/data99.json b/json/data99.json new file mode 100644 index 0000000000000000000000000000000000000000..c10d3bd9135bb786bf3337b8b62dbe0c812d6d52 --- /dev/null +++ b/json/data99.json @@ -0,0 +1,18 @@ +{ + "level1": "3", + "level2": "3.1", + "level3": "3.1.1", + "pic_name": "data99", + "pre_dec_file": "pre_dec_json\\data99_aligned.json", + "gt_json_file": "json/gt_json\\data99_gt.json", + "is_longtail": "True", + "Sup_description": "", + "lt_ele": "Abnormal traffic flow-U-turn", + "acc_factors": [ + "Vehicles ahead", + "Affects own vehicle's passage", + "No lane-borrowing possibility" + ], + "post_dec": "Wait for avoidance and proceed straight ahead", + "pic_path": "..\\pic\\data99.png" +} \ No newline at end of file diff --git a/json/gt_json/data100_gt.json b/json/gt_json/data100_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..858006310d7dea531fcbd2b466d950d2b260d514 --- /dev/null +++ b/json/gt_json/data100_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data100_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data101_gt.json b/json/gt_json/data101_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e147e0ff76e77253f3810f7ccadbc66e7607215e --- /dev/null +++ b/json/gt_json/data101_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data101_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data102_gt.json b/json/gt_json/data102_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c82e1242faec7274171198efe650f2595914bfdb --- /dev/null +++ b/json/gt_json/data102_gt.json @@ -0,0 +1,152 @@ +{ + "source_scene": "pre_dec_json\\data102_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 29, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data103_gt.json b/json/gt_json/data103_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9e7e4b463810b9dc379474bbc014f94ccef8688c --- /dev/null +++ b/json/gt_json/data103_gt.json @@ -0,0 +1,182 @@ +{ + "source_scene": "pre_dec_json\\data103_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 35, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data104_gt.json b/json/gt_json/data104_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ff50b47329a55db2d1a16a5ed84297f245957ffb --- /dev/null +++ b/json/gt_json/data104_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data104_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data105_gt.json b/json/gt_json/data105_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..759a63262cbf145031e0bad8b8d6e844bf2985f2 --- /dev/null +++ b/json/gt_json/data105_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data105_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data106_gt.json b/json/gt_json/data106_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..472de51a991631e7b144ca4a7b14f4cd019f1d8f --- /dev/null +++ b/json/gt_json/data106_gt.json @@ -0,0 +1,257 @@ +{ + "source_scene": "pre_dec_json\\data106_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 50, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data107_gt.json b/json/gt_json/data107_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..debf10fa832f98ec593a45087ddc33262f4f2e00 --- /dev/null +++ b/json/gt_json/data107_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data107_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data108_gt.json b/json/gt_json/data108_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8e8652e4426c9816e9e256f2f18a51ce6b686575 --- /dev/null +++ b/json/gt_json/data108_gt.json @@ -0,0 +1,122 @@ +{ + "source_scene": "pre_dec_json\\data108_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 23, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data109_gt.json b/json/gt_json/data109_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b14c0986dd751ec8922d291bd2054e8bf6829a5b --- /dev/null +++ b/json/gt_json/data109_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data109_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data10_gt.json b/json/gt_json/data10_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e1f20bedb61db76a8987eee6b5182e78d7826ebd --- /dev/null +++ b/json/gt_json/data10_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data10_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data110_gt.json b/json/gt_json/data110_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..706cf30d45858a7f36e6923d6c3819b1ccf78828 --- /dev/null +++ b/json/gt_json/data110_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data110_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data111_gt.json b/json/gt_json/data111_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..737b96add928b0d065e79c304d75d3075bd9e1d7 --- /dev/null +++ b/json/gt_json/data111_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data111_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data112_gt.json b/json/gt_json/data112_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..7139b073c8c8fb6b1090fdbc23ec520321e40c72 --- /dev/null +++ b/json/gt_json/data112_gt.json @@ -0,0 +1,177 @@ +{ + "source_scene": "pre_dec_json\\data112_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 34, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data113_gt.json b/json/gt_json/data113_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f737be2ee05838344b83a9d000a001ec6d6fa114 --- /dev/null +++ b/json/gt_json/data113_gt.json @@ -0,0 +1,152 @@ +{ + "source_scene": "pre_dec_json\\data113_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 29, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data114_gt.json b/json/gt_json/data114_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ea3462153ee1a73f0ee978f75fb552b2fb9407ba --- /dev/null +++ b/json/gt_json/data114_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data114_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data115_gt.json b/json/gt_json/data115_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ae39a83e381f0df6fb499c57684e8dacff5cd464 --- /dev/null +++ b/json/gt_json/data115_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data115_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data116_gt.json b/json/gt_json/data116_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d4b1f0eb6aa803572f9db5a6ee043e51985ddd94 --- /dev/null +++ b/json/gt_json/data116_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data116_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data117_gt.json b/json/gt_json/data117_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..63fe8d2ce80f57074f0e97a586439af88ad6e37b --- /dev/null +++ b/json/gt_json/data117_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data117_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data118_gt.json b/json/gt_json/data118_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..44a1d41c52478d4e6068b3e6eb4939a079da6fe7 --- /dev/null +++ b/json/gt_json/data118_gt.json @@ -0,0 +1,107 @@ +{ + "source_scene": "pre_dec_json\\data118_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 20, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data119_gt.json b/json/gt_json/data119_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5702ba188f913c136bd07e7c5147140fd8857313 --- /dev/null +++ b/json/gt_json/data119_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data119_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data11_gt.json b/json/gt_json/data11_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e2a1c5b0b9914f859210fe9116a65a618a30f0ce --- /dev/null +++ b/json/gt_json/data11_gt.json @@ -0,0 +1,287 @@ +{ + "source_scene": "pre_dec_json\\data11_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 56, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data120_gt.json b/json/gt_json/data120_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0de5f73bcd7405f88668c1fdcc68681b09b850c4 --- /dev/null +++ b/json/gt_json/data120_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data120_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data121_gt.json b/json/gt_json/data121_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..72a00b9fb653374db609ee49ad3cc37aa38c92ea --- /dev/null +++ b/json/gt_json/data121_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data121_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data122_gt.json b/json/gt_json/data122_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..63c4b7c0226a7f42e44b43a38c1cb020fbf5ff60 --- /dev/null +++ b/json/gt_json/data122_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data122_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data123_gt.json b/json/gt_json/data123_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..226928ad9925046e17bf0a914041e78685693f3d --- /dev/null +++ b/json/gt_json/data123_gt.json @@ -0,0 +1,132 @@ +{ + "source_scene": "pre_dec_json\\data123_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 25, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data124_gt.json b/json/gt_json/data124_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..50e81a7b6c0e30c546e1f9f9ee189dbcd1ac4274 --- /dev/null +++ b/json/gt_json/data124_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data124_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data125_gt.json b/json/gt_json/data125_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c64f6810466e5982502d128dee8684d1a5cee90a --- /dev/null +++ b/json/gt_json/data125_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data125_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data126_gt.json b/json/gt_json/data126_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..32e4d50a8470311c80d7b31f63a20de737f97fca --- /dev/null +++ b/json/gt_json/data126_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data126_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data127_gt.json b/json/gt_json/data127_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5cb5b6c4752522fdf601f9090749b768f3d2daf1 --- /dev/null +++ b/json/gt_json/data127_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data127_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data128_gt.json b/json/gt_json/data128_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..45f61b6e04eb11148773b5a24b02e3811cfa4ecc --- /dev/null +++ b/json/gt_json/data128_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data128_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data129_gt.json b/json/gt_json/data129_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e2e3e5e501b7ecfe24637d7b199fa2d82816cb25 --- /dev/null +++ b/json/gt_json/data129_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data129_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data12_gt.json b/json/gt_json/data12_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ce5258c51a02e286e340cda15175e58af23346d9 --- /dev/null +++ b/json/gt_json/data12_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data12_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "1" + }, + { + "vx": 100, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": 0, + "label": "2" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data130_gt.json b/json/gt_json/data130_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..40d6a64b5c26f03423e50a3d57ced3f515d6dd82 --- /dev/null +++ b/json/gt_json/data130_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data130_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data131_gt.json b/json/gt_json/data131_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..faa73c528edca57d940a0fedbfb503a24fad0b6c --- /dev/null +++ b/json/gt_json/data131_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data131_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data132_gt.json b/json/gt_json/data132_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..bcc0521d413fc18fa8924bfc7d1ea952e9f0dbcd --- /dev/null +++ b/json/gt_json/data132_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data132_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data133_gt.json b/json/gt_json/data133_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b1dd22845fcbc8e7abec63bef3e37b4f70131704 --- /dev/null +++ b/json/gt_json/data133_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data133_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data134_gt.json b/json/gt_json/data134_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..737f1d3642de13b7f3402a167e7aa33999226d7c --- /dev/null +++ b/json/gt_json/data134_gt.json @@ -0,0 +1,197 @@ +{ + "source_scene": "pre_dec_json\\data134_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 38, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data135_gt.json b/json/gt_json/data135_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fdbc53f37e9f77186c9fd611331567d889c8c9e7 --- /dev/null +++ b/json/gt_json/data135_gt.json @@ -0,0 +1,167 @@ +{ + "source_scene": "pre_dec_json\\data135_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 32, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": 30, + "label": "2" + }, + { + "vx": -100, + "ay": 75, + "label": "2" + }, + { + "vx": -100, + "ay": 150, + "label": "2" + }, + { + "vx": -100, + "ay": 225, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data136_gt.json b/json/gt_json/data136_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..14bf0999ef11d8ffdd67e406a6eaa6e3583ca8e9 --- /dev/null +++ b/json/gt_json/data136_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data136_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data137_gt.json b/json/gt_json/data137_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f075ca35a74c757223a5ef4b727e92b799190e05 --- /dev/null +++ b/json/gt_json/data137_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data137_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data138_gt.json b/json/gt_json/data138_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..33d214706e975ea8497297e3a6d82901759c73fd --- /dev/null +++ b/json/gt_json/data138_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data138_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data139_gt.json b/json/gt_json/data139_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8985ca9a7b8e709c368019dba9d13c9a7bf46402 --- /dev/null +++ b/json/gt_json/data139_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data139_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data13_gt.json b/json/gt_json/data13_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b3b0255ab74603d393156a90dd410d68f4c1492f --- /dev/null +++ b/json/gt_json/data13_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data13_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data140_gt.json b/json/gt_json/data140_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..296868bae75b565457e2e22945bda158fcec7dd3 --- /dev/null +++ b/json/gt_json/data140_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data140_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data141_gt.json b/json/gt_json/data141_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..96ee20356814de3d6da2502a81fa80c10fa44ea6 --- /dev/null +++ b/json/gt_json/data141_gt.json @@ -0,0 +1,107 @@ +{ + "source_scene": "pre_dec_json\\data141_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 20, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data142_gt.json b/json/gt_json/data142_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0a300faf964a35106ba08dbb478e6942956c6d65 --- /dev/null +++ b/json/gt_json/data142_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data142_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data143_gt.json b/json/gt_json/data143_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f9d1537510ddf33853b67d941845664cbaf2726c --- /dev/null +++ b/json/gt_json/data143_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data143_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data144_gt.json b/json/gt_json/data144_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f2bf929b1dfe7dc1932e8117a09fda00be5d4ea4 --- /dev/null +++ b/json/gt_json/data144_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data144_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data145_gt.json b/json/gt_json/data145_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..bd326ae2035f527b40bcfc8feb9da05ed4764c04 --- /dev/null +++ b/json/gt_json/data145_gt.json @@ -0,0 +1,167 @@ +{ + "source_scene": "pre_dec_json\\data145_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 32, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data146_gt.json b/json/gt_json/data146_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3cc12a0c6a3290bceabc463e41bfe7c658709105 --- /dev/null +++ b/json/gt_json/data146_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data146_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data147_gt.json b/json/gt_json/data147_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e6269ec70c4dc4c3bf2ff5bb10b3d3eadcf395b3 --- /dev/null +++ b/json/gt_json/data147_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data147_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data148_gt.json b/json/gt_json/data148_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f3f213ea42b9a3028e79122a1b681168d1210873 --- /dev/null +++ b/json/gt_json/data148_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data148_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data149_gt.json b/json/gt_json/data149_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..62674809ef46c5afb08d2756bad7fa8a8e2f9c69 --- /dev/null +++ b/json/gt_json/data149_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data149_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data14_gt.json b/json/gt_json/data14_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..398f95b90dfeeef888cabe0b4a6918316b8f97ef --- /dev/null +++ b/json/gt_json/data14_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data14_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data150_gt.json b/json/gt_json/data150_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..dd37fe4e6466944946956f47913b62597e787bff --- /dev/null +++ b/json/gt_json/data150_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data150_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data151_gt.json b/json/gt_json/data151_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..cc99204b35febc1e0bbdf46ab54f3b8091e4b9fa --- /dev/null +++ b/json/gt_json/data151_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data151_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data152_gt.json b/json/gt_json/data152_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a151c3dd0c040858a7bfd3ccfff812c7acfe4c74 --- /dev/null +++ b/json/gt_json/data152_gt.json @@ -0,0 +1,157 @@ +{ + "source_scene": "pre_dec_json\\data152_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 30, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data153_gt.json b/json/gt_json/data153_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..90c7e38bf808b89d19b4453f707add8228dfa563 --- /dev/null +++ b/json/gt_json/data153_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data153_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data154_gt.json b/json/gt_json/data154_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0b1e10fa01181527d03036e1988393ab0b970043 --- /dev/null +++ b/json/gt_json/data154_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data154_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data155_gt.json b/json/gt_json/data155_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..73ca3208e407b231a4c87404fa992f1646b5b944 --- /dev/null +++ b/json/gt_json/data155_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data155_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data156_gt.json b/json/gt_json/data156_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..55d563f756878202c9bfb1b337af9db7a815207e --- /dev/null +++ b/json/gt_json/data156_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data156_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data157_gt.json b/json/gt_json/data157_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..75841bc8bb56afd47b4354488b35756b8d872a6e --- /dev/null +++ b/json/gt_json/data157_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data157_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": 225, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data158_gt.json b/json/gt_json/data158_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..71bfe10fe47ebac8c2c90d486d568ed0315b2ea5 --- /dev/null +++ b/json/gt_json/data158_gt.json @@ -0,0 +1,192 @@ +{ + "source_scene": "pre_dec_json\\data158_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 37, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data159_gt.json b/json/gt_json/data159_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a0a7ae2e122eac1aebb005027427e3597b933d00 --- /dev/null +++ b/json/gt_json/data159_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data159_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data15_gt.json b/json/gt_json/data15_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..69c8cc644cb0f1232feb981ba189481e284a7b52 --- /dev/null +++ b/json/gt_json/data15_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data15_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data160_gt.json b/json/gt_json/data160_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ee3a8e964995969bed941b637e0ffe58308696a1 --- /dev/null +++ b/json/gt_json/data160_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data160_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data161_gt.json b/json/gt_json/data161_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..eaba75e4fadc563493eab7d26722d576e10547a9 --- /dev/null +++ b/json/gt_json/data161_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data161_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data162_gt.json b/json/gt_json/data162_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b5a915dbd2ec2be0aaf15da3cb944d2258de59ac --- /dev/null +++ b/json/gt_json/data162_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data162_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data163_gt.json b/json/gt_json/data163_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e1ddfb10274a179b00e24707300debfb0f1b80c6 --- /dev/null +++ b/json/gt_json/data163_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data163_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data164_gt.json b/json/gt_json/data164_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fe9fa95e193cac019835ddb96dd05ec0af7aa7de --- /dev/null +++ b/json/gt_json/data164_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data164_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data165_gt.json b/json/gt_json/data165_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..05b30bdea7c9417da92d09881f92a6319371952f --- /dev/null +++ b/json/gt_json/data165_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data165_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data166_gt.json b/json/gt_json/data166_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b39af7aa30ce2ae52088d7efbd49ea80ef0dbe9e --- /dev/null +++ b/json/gt_json/data166_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data166_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data167_gt.json b/json/gt_json/data167_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..83e2d2133ce47555b091d6a6176393001f693dda --- /dev/null +++ b/json/gt_json/data167_gt.json @@ -0,0 +1,207 @@ +{ + "source_scene": "pre_dec_json\\data167_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 40, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data168_gt.json b/json/gt_json/data168_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..708347d6d5bf27f5eed7ab07dfbf0840f28caa62 --- /dev/null +++ b/json/gt_json/data168_gt.json @@ -0,0 +1,222 @@ +{ + "source_scene": "pre_dec_json\\data168_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 43, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": 225, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data169_gt.json b/json/gt_json/data169_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d29fcb2a750aa26b0b1352ae354d2e10275508e9 --- /dev/null +++ b/json/gt_json/data169_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data169_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data16_gt.json b/json/gt_json/data16_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f72586e5cffb480c0fe0a5759a86551397ce2663 --- /dev/null +++ b/json/gt_json/data16_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data16_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data170_gt.json b/json/gt_json/data170_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..4324c007f271fd11737d98e1f2facc39743ee968 --- /dev/null +++ b/json/gt_json/data170_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data170_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "" + }, + { + "vx": -35, + "ay": -150, + "label": "" + }, + { + "vx": -35, + "ay": -75, + "label": "" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data171_gt.json b/json/gt_json/data171_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..37412e8d2ae05279e4855632c25872cd33fe4e4e --- /dev/null +++ b/json/gt_json/data171_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data171_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data172_gt.json b/json/gt_json/data172_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..cf0aac4425fb3723068a21137074c3243b72434d --- /dev/null +++ b/json/gt_json/data172_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data172_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data173_gt.json b/json/gt_json/data173_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5503dcda4a80d9afdd5b2faae38c5a2c5857ec5c --- /dev/null +++ b/json/gt_json/data173_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data173_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data174_gt.json b/json/gt_json/data174_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8365506687419749c7cad9262bdc10e263629aae --- /dev/null +++ b/json/gt_json/data174_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data174_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data175_gt.json b/json/gt_json/data175_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9093b2c4467d2e782999e33b7259e99d75b8956b --- /dev/null +++ b/json/gt_json/data175_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data175_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data176_gt.json b/json/gt_json/data176_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9fb9d382952f509bf361aeb07848a369f1bf0293 --- /dev/null +++ b/json/gt_json/data176_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data176_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data177_gt.json b/json/gt_json/data177_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2aa7484e199efae769e69f891ac5b458c6df51ca --- /dev/null +++ b/json/gt_json/data177_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data177_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data178_gt.json b/json/gt_json/data178_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..755e66ec6c07c74eeca6012c0fe5c11c1b18c827 --- /dev/null +++ b/json/gt_json/data178_gt.json @@ -0,0 +1,202 @@ +{ + "source_scene": "pre_dec_json\\data178_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 39, + "valid_controls": [ + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data179_gt.json b/json/gt_json/data179_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..cf6d8c5a9cdeded562cc38960d2bfce677b2699a --- /dev/null +++ b/json/gt_json/data179_gt.json @@ -0,0 +1,242 @@ +{ + "source_scene": "pre_dec_json\\data179_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 47, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": 225, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": 225, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data17_gt.json b/json/gt_json/data17_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..53f43a3828e84ca3ef81c8552021008bcf6f7f4a --- /dev/null +++ b/json/gt_json/data17_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data17_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data180_gt.json b/json/gt_json/data180_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f6f35dd96d8c9f5479a44cc29713fe71c19423b0 --- /dev/null +++ b/json/gt_json/data180_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data180_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data181_gt.json b/json/gt_json/data181_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..29e8a5277e4b1365cc65372adb46db80fee8303d --- /dev/null +++ b/json/gt_json/data181_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data181_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data182_gt.json b/json/gt_json/data182_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ae7b6f40ff9df75f01cb8159fc88cae3c3556b94 --- /dev/null +++ b/json/gt_json/data182_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data182_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data183_gt.json b/json/gt_json/data183_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..cb9ee420b57ef7a87d4b2f53d3a4a8a3a6d928f9 --- /dev/null +++ b/json/gt_json/data183_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data183_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data184_gt.json b/json/gt_json/data184_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..92221bb00f32fe5fb824d0130ff0324aa2bb8765 --- /dev/null +++ b/json/gt_json/data184_gt.json @@ -0,0 +1,137 @@ +{ + "source_scene": "pre_dec_json\\data184_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 26, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data185_gt.json b/json/gt_json/data185_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..39718745ed6a576881db2cd486f781576701eb48 --- /dev/null +++ b/json/gt_json/data185_gt.json @@ -0,0 +1,282 @@ +{ + "source_scene": "pre_dec_json\\data185_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 55, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data186_gt.json b/json/gt_json/data186_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..99ac66b933e86b45ce13baa332ccdb69db8a7846 --- /dev/null +++ b/json/gt_json/data186_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data186_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data187_gt.json b/json/gt_json/data187_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8a6da05805561fcce36abdfc454e6363b3df3f03 --- /dev/null +++ b/json/gt_json/data187_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data187_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data188_gt.json b/json/gt_json/data188_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8c7c95af8bc23ecf0c39a243dc6fed575634ef17 --- /dev/null +++ b/json/gt_json/data188_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data188_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data189_gt.json b/json/gt_json/data189_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c59623a79390e56b09be9e96b29fff24157b4c0f --- /dev/null +++ b/json/gt_json/data189_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data189_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data18_gt.json b/json/gt_json/data18_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..35b3bc29626afe3f56d7179546f1dd3e47fb9353 --- /dev/null +++ b/json/gt_json/data18_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data18_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data190_gt.json b/json/gt_json/data190_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ddd6b7f4abb51585c4b0780b009ecdd737eef421 --- /dev/null +++ b/json/gt_json/data190_gt.json @@ -0,0 +1,187 @@ +{ + "source_scene": "pre_dec_json\\data190_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 36, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": 30, + "label": "2" + }, + { + "vx": -100, + "ay": 75, + "label": "2" + }, + { + "vx": -100, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data191_gt.json b/json/gt_json/data191_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0949347cf8384a9b5a58136268aa4c260cd2448b --- /dev/null +++ b/json/gt_json/data191_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data191_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data192_gt.json b/json/gt_json/data192_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c7e04e860c07e7306892d4c6b000e2c411dc84f3 --- /dev/null +++ b/json/gt_json/data192_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data192_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data193_gt.json b/json/gt_json/data193_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..51255e34b4122c866dff0f4526971b933a37f580 --- /dev/null +++ b/json/gt_json/data193_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data193_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data194_gt.json b/json/gt_json/data194_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..100d21889a98564a11dd5bd041a726a701b3730f --- /dev/null +++ b/json/gt_json/data194_gt.json @@ -0,0 +1,137 @@ +{ + "source_scene": "pre_dec_json\\data194_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 26, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data195_gt.json b/json/gt_json/data195_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..87eec614f47fdd7b69d99560452c82dec602e2a0 --- /dev/null +++ b/json/gt_json/data195_gt.json @@ -0,0 +1,237 @@ +{ + "source_scene": "pre_dec_json\\data195_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 46, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data196_gt.json b/json/gt_json/data196_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b72d898d80adde70ab4d22d61610965dd1f939de --- /dev/null +++ b/json/gt_json/data196_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data196_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data197_gt.json b/json/gt_json/data197_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c2855c396f5f5221c529a3b9a072f2534b1c8fe3 --- /dev/null +++ b/json/gt_json/data197_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data197_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data198_gt.json b/json/gt_json/data198_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..cae084023aa8a29b966a1cfa7ddcc5c895535d0e --- /dev/null +++ b/json/gt_json/data198_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data198_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data199_gt.json b/json/gt_json/data199_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3396dbab411388772c1ba8dae9474ae06e46db27 --- /dev/null +++ b/json/gt_json/data199_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data199_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data19_gt.json b/json/gt_json/data19_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..84afbcfd9d39dd3ba007f73d3a57aec95d131c66 --- /dev/null +++ b/json/gt_json/data19_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data19_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data1_gt.json b/json/gt_json/data1_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a2623d6469de29f82c186c669127a05dd04128f8 --- /dev/null +++ b/json/gt_json/data1_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data1_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data200_gt.json b/json/gt_json/data200_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f70ab82425c29a4115adf999003e1225435e989c --- /dev/null +++ b/json/gt_json/data200_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data200_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data201_gt.json b/json/gt_json/data201_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..afdbef65fdf0033e8edd7904916da69374eb0249 --- /dev/null +++ b/json/gt_json/data201_gt.json @@ -0,0 +1,157 @@ +{ + "source_scene": "pre_dec_json\\data201_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 30, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": 0, + "label": "2" + }, + { + "vx": 100, + "ay": 30, + "label": "2" + }, + { + "vx": 100, + "ay": 75, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data202_gt.json b/json/gt_json/data202_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..094c06b6b168aee9ba2ef0754daad78eb6368d51 --- /dev/null +++ b/json/gt_json/data202_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data202_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data203_gt.json b/json/gt_json/data203_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..70f388c75602e5c48babe181bbb66ede1f4e0d35 --- /dev/null +++ b/json/gt_json/data203_gt.json @@ -0,0 +1,232 @@ +{ + "source_scene": "pre_dec_json\\data203_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 45, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data204_gt.json b/json/gt_json/data204_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..955c8f7acc9b772cc1eb97f7466b67f218b9fec0 --- /dev/null +++ b/json/gt_json/data204_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data204_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data205_gt.json b/json/gt_json/data205_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..cc7a41928c082803dbf93c4e47ff55a39b1f64f9 --- /dev/null +++ b/json/gt_json/data205_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data205_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data206_gt.json b/json/gt_json/data206_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..afa501d22a0145a5a31db3af3af9d8966663cd84 --- /dev/null +++ b/json/gt_json/data206_gt.json @@ -0,0 +1,182 @@ +{ + "source_scene": "pre_dec_json\\data206_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 35, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data207_gt.json b/json/gt_json/data207_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fa643d7064fddba89f81027a0dac2c32174c332d --- /dev/null +++ b/json/gt_json/data207_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data207_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data208_gt.json b/json/gt_json/data208_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3d009a24d6a1965465e47588f845c0eb16754194 --- /dev/null +++ b/json/gt_json/data208_gt.json @@ -0,0 +1,232 @@ +{ + "source_scene": "pre_dec_json\\data208_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 45, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data209_gt.json b/json/gt_json/data209_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..73603ddf0015e9712fa9b9bb3155a5724378c70f --- /dev/null +++ b/json/gt_json/data209_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data209_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data20_gt.json b/json/gt_json/data20_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..647f4b502a2cec08b59041727613106eefcf370c --- /dev/null +++ b/json/gt_json/data20_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data20_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data210_gt.json b/json/gt_json/data210_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2cba3ef4bf79dd05e2c8e6bfdc2a101c20886d0e --- /dev/null +++ b/json/gt_json/data210_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data210_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data211_gt.json b/json/gt_json/data211_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..29654db632df84e394e2afae1f349bd16cf73126 --- /dev/null +++ b/json/gt_json/data211_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data211_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data212_gt.json b/json/gt_json/data212_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..799b5a8e58c2023872a85d85dc781f8562349e79 --- /dev/null +++ b/json/gt_json/data212_gt.json @@ -0,0 +1,122 @@ +{ + "source_scene": "pre_dec_json\\data212_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 23, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data213_gt.json b/json/gt_json/data213_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..bc7c64dd726778221ced6fbb5698a3755381afef --- /dev/null +++ b/json/gt_json/data213_gt.json @@ -0,0 +1,152 @@ +{ + "source_scene": "pre_dec_json\\data213_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 29, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "" + }, + { + "vx": -35, + "ay": -150, + "label": "" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data214_gt.json b/json/gt_json/data214_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e5e956568fdc70eb4cd3f26bc5d406ba5d4a5933 --- /dev/null +++ b/json/gt_json/data214_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data214_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data215_gt.json b/json/gt_json/data215_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b07f4240a4995c0428fba33744d3c371ee149c75 --- /dev/null +++ b/json/gt_json/data215_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data215_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data216_gt.json b/json/gt_json/data216_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..930b0b5671c960080fa2e4a886414e69b1b918f8 --- /dev/null +++ b/json/gt_json/data216_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data216_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data217_gt.json b/json/gt_json/data217_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d3ddb71e9ab7211b15b191918e86a277624653c3 --- /dev/null +++ b/json/gt_json/data217_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data217_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data218_gt.json b/json/gt_json/data218_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a484fb857a2f9f53d3f68b77ed6715004db857a9 --- /dev/null +++ b/json/gt_json/data218_gt.json @@ -0,0 +1,217 @@ +{ + "source_scene": "pre_dec_json\\data218_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 42, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data219_gt.json b/json/gt_json/data219_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d603ad91a0f6deaad3ef879c916d80d456886e91 --- /dev/null +++ b/json/gt_json/data219_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data219_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data21_gt.json b/json/gt_json/data21_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..69fc8eb5fa28d1136ed8f57db95fa83393382827 --- /dev/null +++ b/json/gt_json/data21_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data21_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data220_gt.json b/json/gt_json/data220_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..1b0715872c3e0b576fbda83975a9cf5e2aa6b1ad --- /dev/null +++ b/json/gt_json/data220_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data220_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data221_gt.json b/json/gt_json/data221_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9149f4a2f703205dd4401eaf700d4ebe4dac84c6 --- /dev/null +++ b/json/gt_json/data221_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data221_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data222_gt.json b/json/gt_json/data222_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a7ed2105c6f79cddd047e743646672f28237359c --- /dev/null +++ b/json/gt_json/data222_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data222_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data223_gt.json b/json/gt_json/data223_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..97486d8b45fb79344690d3110124f31dff248afa --- /dev/null +++ b/json/gt_json/data223_gt.json @@ -0,0 +1,257 @@ +{ + "source_scene": "pre_dec_json\\data223_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 50, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data224_gt.json b/json/gt_json/data224_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f93fd76c156a2b19466260a2c72717a3a4f2feed --- /dev/null +++ b/json/gt_json/data224_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data224_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data225_gt.json b/json/gt_json/data225_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f612d81092e63ff4cdbab68ff6a74ca5fb19b6b2 --- /dev/null +++ b/json/gt_json/data225_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data225_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data226_gt.json b/json/gt_json/data226_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..1ffc9354207524e18a9a717195781dfdafe1c8dd --- /dev/null +++ b/json/gt_json/data226_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data226_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data227_gt.json b/json/gt_json/data227_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..674e2c9cccdb596c77fff6535ff98191b6e81a5c --- /dev/null +++ b/json/gt_json/data227_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data227_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data228_gt.json b/json/gt_json/data228_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b8d8854c13db82798aa9d956a7ec57672628f7d6 --- /dev/null +++ b/json/gt_json/data228_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data228_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data229_gt.json b/json/gt_json/data229_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..7a5af134680e01fb2e6b680854212fd21e0211f5 --- /dev/null +++ b/json/gt_json/data229_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data229_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data22_gt.json b/json/gt_json/data22_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..555136d9861191c626fccffb0dafb5e3f1288d53 --- /dev/null +++ b/json/gt_json/data22_gt.json @@ -0,0 +1,122 @@ +{ + "source_scene": "pre_dec_json\\data22_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 23, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data230_gt.json b/json/gt_json/data230_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a0092fe25599f5cfaa53c72056582b2b7e23213d --- /dev/null +++ b/json/gt_json/data230_gt.json @@ -0,0 +1,162 @@ +{ + "source_scene": "pre_dec_json\\data230_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 31, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data231_gt.json b/json/gt_json/data231_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..15d93eeb661cb302fe2c9260b0de7855ef325071 --- /dev/null +++ b/json/gt_json/data231_gt.json @@ -0,0 +1,227 @@ +{ + "source_scene": "pre_dec_json\\data231_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 44, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data232_gt.json b/json/gt_json/data232_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5667419215964517f6000c4429e4dfbdf90df29c --- /dev/null +++ b/json/gt_json/data232_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data232_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data233_gt.json b/json/gt_json/data233_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..30ee259589eac35462c8635b99085ac53576561d --- /dev/null +++ b/json/gt_json/data233_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data233_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data234_gt.json b/json/gt_json/data234_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..30d73d27e7470d2608a5e6a37c27eae1e0cd2d09 --- /dev/null +++ b/json/gt_json/data234_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data234_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data235_gt.json b/json/gt_json/data235_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2b73246226384a52ea647951630d0f9d5298ef17 --- /dev/null +++ b/json/gt_json/data235_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data235_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data236_gt.json b/json/gt_json/data236_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..00bd160d83d56b84a81227faa09ded476d02b365 --- /dev/null +++ b/json/gt_json/data236_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data236_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data237_gt.json b/json/gt_json/data237_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3a1804e9f2f69e84197d82c59cb29266a4c311ff --- /dev/null +++ b/json/gt_json/data237_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data237_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data238_gt.json b/json/gt_json/data238_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..258c83aa022160b32cd119f32ec0c1d44732a16d --- /dev/null +++ b/json/gt_json/data238_gt.json @@ -0,0 +1,107 @@ +{ + "source_scene": "pre_dec_json\\data238_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 20, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "1" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data239_gt.json b/json/gt_json/data239_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..203d28759e4a6e29b085ddf5d6a25572e6f2c26d --- /dev/null +++ b/json/gt_json/data239_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data239_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data23_gt.json b/json/gt_json/data23_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..58b25d4bb9986993eea6112ac97dd21921934d44 --- /dev/null +++ b/json/gt_json/data23_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data23_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data240_gt.json b/json/gt_json/data240_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c49b766c65adb58e96635af54eff24a2f39afddc --- /dev/null +++ b/json/gt_json/data240_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data240_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data241_gt.json b/json/gt_json/data241_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a1e362bea8e8489c644766f64b0f010dfb734ffa --- /dev/null +++ b/json/gt_json/data241_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data241_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data242_gt.json b/json/gt_json/data242_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5660b7ab94cd44215a962cef62bd979464bc8f5d --- /dev/null +++ b/json/gt_json/data242_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data242_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data243_gt.json b/json/gt_json/data243_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8137ef04bc45661dfb053ed67f99e38aa340c087 --- /dev/null +++ b/json/gt_json/data243_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data243_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data244_gt.json b/json/gt_json/data244_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..532037850b4fbf0b53aae1b672812127dc9a37e5 --- /dev/null +++ b/json/gt_json/data244_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data244_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data245_gt.json b/json/gt_json/data245_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..523f66d2f20aa4b542837633412a858d8fd90ab3 --- /dev/null +++ b/json/gt_json/data245_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data245_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data246_gt.json b/json/gt_json/data246_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e699b1c4317185f232ddea4356e4f3ee9b7fa4a4 --- /dev/null +++ b/json/gt_json/data246_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data246_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data247_gt.json b/json/gt_json/data247_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..da5c2bf488d86a7223ed1caed11f6c1f7175e6bf --- /dev/null +++ b/json/gt_json/data247_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data247_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data248_gt.json b/json/gt_json/data248_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..570141c054e72dc60bf85051e081434a116c6c3e --- /dev/null +++ b/json/gt_json/data248_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data248_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data249_gt.json b/json/gt_json/data249_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ab8c1c9e89098fc6c527550433038cc32504c483 --- /dev/null +++ b/json/gt_json/data249_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data249_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data24_gt.json b/json/gt_json/data24_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..28ae03e8cacdeec66b0c4629111f8908fcedff1e --- /dev/null +++ b/json/gt_json/data24_gt.json @@ -0,0 +1,187 @@ +{ + "source_scene": "pre_dec_json\\data24_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 36, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data250_gt.json b/json/gt_json/data250_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a83f906aea1d8800b820c212d3952ca097e7b2ab --- /dev/null +++ b/json/gt_json/data250_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data250_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data251_gt.json b/json/gt_json/data251_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..130050a7c9f19ee577d4089d4641316cb099e9f0 --- /dev/null +++ b/json/gt_json/data251_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data251_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data252_gt.json b/json/gt_json/data252_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..bb591a4d0b2166c809bf578976a7e072831eb9de --- /dev/null +++ b/json/gt_json/data252_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data252_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data253_gt.json b/json/gt_json/data253_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..23f751b29c589ba08b80365dc306b4b63011182b --- /dev/null +++ b/json/gt_json/data253_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data253_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data254_gt.json b/json/gt_json/data254_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..af58bffb3b6ec0e39acd80b381a84ab47cb15db9 --- /dev/null +++ b/json/gt_json/data254_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data254_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data255_gt.json b/json/gt_json/data255_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b2d9e29833a155813cdf94af7913d60fae51d3a8 --- /dev/null +++ b/json/gt_json/data255_gt.json @@ -0,0 +1,12 @@ +{ + "source_scene": "pre_dec_json\\data255_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 1, + "valid_controls": [ + { + "vx": 100, + "ay": -300, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data256_gt.json b/json/gt_json/data256_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d1cce9baf255fa309c49d572814794971dc7f4ad --- /dev/null +++ b/json/gt_json/data256_gt.json @@ -0,0 +1,137 @@ +{ + "source_scene": "pre_dec_json\\data256_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 26, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data257_gt.json b/json/gt_json/data257_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8369c29524017383e0a4847aa9063097fe54bd64 --- /dev/null +++ b/json/gt_json/data257_gt.json @@ -0,0 +1,137 @@ +{ + "source_scene": "pre_dec_json\\data257_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 26, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": 225, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data258_gt.json b/json/gt_json/data258_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..96fca4f65aa9bf3cd4e8b8fc015e0530ac4f8140 --- /dev/null +++ b/json/gt_json/data258_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data258_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data259_gt.json b/json/gt_json/data259_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0ed6ff7922635e5c1f61db66926b11318327cb98 --- /dev/null +++ b/json/gt_json/data259_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data259_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data25_gt.json b/json/gt_json/data25_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3dd0d376c898905ed1bcc56b8dce6efca925921d --- /dev/null +++ b/json/gt_json/data25_gt.json @@ -0,0 +1,172 @@ +{ + "source_scene": "pre_dec_json\\data25_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 33, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data260_gt.json b/json/gt_json/data260_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ed60493462f1275088af051e7f2dbbc24612866f --- /dev/null +++ b/json/gt_json/data260_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data260_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data261_gt.json b/json/gt_json/data261_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..26cb07487eb755a6be91443b82667b4c2e8c9bc4 --- /dev/null +++ b/json/gt_json/data261_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data261_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data262_gt.json b/json/gt_json/data262_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..7c3a51d7f41fc5f204446a0cd1628331f1ed4f3a --- /dev/null +++ b/json/gt_json/data262_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data262_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data263_gt.json b/json/gt_json/data263_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..4e597d6681ac7975a4796b4a81e22a23b72ed484 --- /dev/null +++ b/json/gt_json/data263_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data263_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data264_gt.json b/json/gt_json/data264_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..896923015104dec30983b737da5883303d445b30 --- /dev/null +++ b/json/gt_json/data264_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data264_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data265_gt.json b/json/gt_json/data265_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..186827d7d14d6b1d6d84a925de43911310312792 --- /dev/null +++ b/json/gt_json/data265_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data265_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data266_gt.json b/json/gt_json/data266_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c2e1b112096482b54e448b608fd442955b5ff87d --- /dev/null +++ b/json/gt_json/data266_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data266_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data267_gt.json b/json/gt_json/data267_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..978f24a8df2a171b39c1837c3fed8ae2af8ef8dc --- /dev/null +++ b/json/gt_json/data267_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data267_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data268_gt.json b/json/gt_json/data268_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..767815348648abf9f7b8d57592c0e35077303a7e --- /dev/null +++ b/json/gt_json/data268_gt.json @@ -0,0 +1,177 @@ +{ + "source_scene": "pre_dec_json\\data268_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 34, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data269_gt.json b/json/gt_json/data269_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..44ebb0b1d7bfdd8c51fb93b1e165ddbd7f3e68d0 --- /dev/null +++ b/json/gt_json/data269_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data269_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data26_gt.json b/json/gt_json/data26_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d5fb5ee88b15dfab6f87125544b84f960c6c03e6 --- /dev/null +++ b/json/gt_json/data26_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data26_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data270_gt.json b/json/gt_json/data270_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..213f33aed4358da6ad242d657f6e2fb2444ae2c1 --- /dev/null +++ b/json/gt_json/data270_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data270_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data271_gt.json b/json/gt_json/data271_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..7c48165ae0511d668f8b5769956d2763d577b237 --- /dev/null +++ b/json/gt_json/data271_gt.json @@ -0,0 +1,132 @@ +{ + "source_scene": "pre_dec_json\\data271_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 25, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data272_gt.json b/json/gt_json/data272_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ff3d2ff3a684a97fb382a7625f6c783c57b28780 --- /dev/null +++ b/json/gt_json/data272_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data272_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data273_gt.json b/json/gt_json/data273_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..106359d00abb682aa2d207cf0e0934ccde73ea78 --- /dev/null +++ b/json/gt_json/data273_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data273_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data274_gt.json b/json/gt_json/data274_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6090bbd4096406b84fbb6d1a500eba356a9d2995 --- /dev/null +++ b/json/gt_json/data274_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data274_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data275_gt.json b/json/gt_json/data275_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..bf1b3d22a28a1d6f6583ba6387bedd50abeaad49 --- /dev/null +++ b/json/gt_json/data275_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data275_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data276_gt.json b/json/gt_json/data276_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fe41452e183061487c452e0dc34a490d05ed13d2 --- /dev/null +++ b/json/gt_json/data276_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data276_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data277_gt.json b/json/gt_json/data277_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f6f8e43be96c322619a8e265672ee4c05569ee93 --- /dev/null +++ b/json/gt_json/data277_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data277_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data278_gt.json b/json/gt_json/data278_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a62248969ab701118bb1900a572941601c4cb9a4 --- /dev/null +++ b/json/gt_json/data278_gt.json @@ -0,0 +1,152 @@ +{ + "source_scene": "pre_dec_json\\data278_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 29, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data279_gt.json b/json/gt_json/data279_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0face800798a00463d7954caf53113394321502b --- /dev/null +++ b/json/gt_json/data279_gt.json @@ -0,0 +1,152 @@ +{ + "source_scene": "pre_dec_json\\data279_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 29, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data27_gt.json b/json/gt_json/data27_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9b79f27aa537d8e84b3560658e8098882b82ed13 --- /dev/null +++ b/json/gt_json/data27_gt.json @@ -0,0 +1,177 @@ +{ + "source_scene": "pre_dec_json\\data27_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 34, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data280_gt.json b/json/gt_json/data280_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..288c8ecaeb055cf80e58d0c0eb2d231ea317360a --- /dev/null +++ b/json/gt_json/data280_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data280_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data281_gt.json b/json/gt_json/data281_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..4ed8fadd87452d84e620765c387f1ccda6e87f66 --- /dev/null +++ b/json/gt_json/data281_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data281_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data282_gt.json b/json/gt_json/data282_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5b424e91c018b915acb7a1d516d0dd10d962b9c6 --- /dev/null +++ b/json/gt_json/data282_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data282_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data283_gt.json b/json/gt_json/data283_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..393d23c5fbd58dd41791a398309ed123bd5359e6 --- /dev/null +++ b/json/gt_json/data283_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data283_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data284_gt.json b/json/gt_json/data284_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..53e47ecf8cfe7975ad8667ea0275a0fb375aeeac --- /dev/null +++ b/json/gt_json/data284_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data284_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data285_gt.json b/json/gt_json/data285_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9244eda3e5a8de4d8ef5eae4e6230c4da15a5060 --- /dev/null +++ b/json/gt_json/data285_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data285_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data286_gt.json b/json/gt_json/data286_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e332bef81e6ca84f02d2266d711514b3a88d4394 --- /dev/null +++ b/json/gt_json/data286_gt.json @@ -0,0 +1,197 @@ +{ + "source_scene": "pre_dec_json\\data286_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 38, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data287_gt.json b/json/gt_json/data287_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..cef7417a089c60fd5c4d0f42e95a6522ab5a288d --- /dev/null +++ b/json/gt_json/data287_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data287_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data288_gt.json b/json/gt_json/data288_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..998dc0de8bade80af8c5d0da59488eee617bc957 --- /dev/null +++ b/json/gt_json/data288_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data288_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data289_gt.json b/json/gt_json/data289_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..1f0e92710b95e4411f797c2c02f88e3d29957fc9 --- /dev/null +++ b/json/gt_json/data289_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data289_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "1" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data28_gt.json b/json/gt_json/data28_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..31fbe0925d068186ee9c92e34e5bbd1d7ccfa2d2 --- /dev/null +++ b/json/gt_json/data28_gt.json @@ -0,0 +1,187 @@ +{ + "source_scene": "pre_dec_json\\data28_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 36, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data290_gt.json b/json/gt_json/data290_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..98873befcf3da66a467edf734841aa6a39dcdaa4 --- /dev/null +++ b/json/gt_json/data290_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data290_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data291_gt.json b/json/gt_json/data291_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c50037f2c229e4dca84b7a174961445914bcbb77 --- /dev/null +++ b/json/gt_json/data291_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data291_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data292_gt.json b/json/gt_json/data292_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..feb55358f00e57ef6ed0e7b522e0954a103759cc --- /dev/null +++ b/json/gt_json/data292_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data292_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data293_gt.json b/json/gt_json/data293_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..823aadac253c901920785e979bf2b25d03fac82e --- /dev/null +++ b/json/gt_json/data293_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data293_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data294_gt.json b/json/gt_json/data294_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c9b79aa93d7862d780800f695a8bc884a3aa4dec --- /dev/null +++ b/json/gt_json/data294_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data294_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data295_gt.json b/json/gt_json/data295_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c40220f0b936774f7af1c8c2fcb329998651b82f --- /dev/null +++ b/json/gt_json/data295_gt.json @@ -0,0 +1,152 @@ +{ + "source_scene": "pre_dec_json\\data295_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 29, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data296_gt.json b/json/gt_json/data296_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fc37da1adcf6e3ad2d477521a64805eec99a49ba --- /dev/null +++ b/json/gt_json/data296_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data296_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data297_gt.json b/json/gt_json/data297_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..71b4ce626d926e9d7da9b39576bb1d21d6b4d7bd --- /dev/null +++ b/json/gt_json/data297_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data297_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data298_gt.json b/json/gt_json/data298_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..af8cd12676bf5bddcddcc4d019bb0096a652454f --- /dev/null +++ b/json/gt_json/data298_gt.json @@ -0,0 +1,162 @@ +{ + "source_scene": "pre_dec_json\\data298_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 31, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data299_gt.json b/json/gt_json/data299_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b3d4db89821d73d0fff51abbd32f36695605daff --- /dev/null +++ b/json/gt_json/data299_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data299_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data29_gt.json b/json/gt_json/data29_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..380b4148e9175dbe22c8b3f13d337c0ff595bb7e --- /dev/null +++ b/json/gt_json/data29_gt.json @@ -0,0 +1,237 @@ +{ + "source_scene": "pre_dec_json\\data29_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 46, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "1" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data2_gt.json b/json/gt_json/data2_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b7907891bb2d16cfc19e585aa3257fb346e2c7b8 --- /dev/null +++ b/json/gt_json/data2_gt.json @@ -0,0 +1,172 @@ +{ + "source_scene": "pre_dec_json\\data2_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 33, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": 0, + "label": "2" + }, + { + "vx": 100, + "ay": 30, + "label": "2" + }, + { + "vx": 100, + "ay": 75, + "label": "2" + }, + { + "vx": 100, + "ay": 150, + "label": "2" + }, + { + "vx": 100, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data300_gt.json b/json/gt_json/data300_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e98d9b760060e92664f05d5f35cef5f17119f275 --- /dev/null +++ b/json/gt_json/data300_gt.json @@ -0,0 +1,17 @@ +{ + "source_scene": "pre_dec_json\\data300_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 2, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data301_gt.json b/json/gt_json/data301_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d92b876d5e89aa43f211980df0474ee5537e4a4c --- /dev/null +++ b/json/gt_json/data301_gt.json @@ -0,0 +1,172 @@ +{ + "source_scene": "pre_dec_json\\data301_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 33, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data302_gt.json b/json/gt_json/data302_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..43a8c5b74375b8e0313db971cb07c64ec908c5e6 --- /dev/null +++ b/json/gt_json/data302_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data302_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data303_gt.json b/json/gt_json/data303_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..7d811baaa25d4092488984c33e8e869ca629a9a5 --- /dev/null +++ b/json/gt_json/data303_gt.json @@ -0,0 +1,157 @@ +{ + "source_scene": "pre_dec_json\\data303_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 30, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data304_gt.json b/json/gt_json/data304_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e8672b1311bfac3153f5ac637c98cb42a5e3c497 --- /dev/null +++ b/json/gt_json/data304_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data304_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data305_gt.json b/json/gt_json/data305_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..74503dfcaad2ef295dfdf1441e33ead6836af5d2 --- /dev/null +++ b/json/gt_json/data305_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data305_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data306_gt.json b/json/gt_json/data306_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..deb670450b3d7bf596c8a6d110a4d942af0445bc --- /dev/null +++ b/json/gt_json/data306_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data306_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data307_gt.json b/json/gt_json/data307_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ceecbeb3aacf4e4a0fc8a04d1f86894bbf4237c7 --- /dev/null +++ b/json/gt_json/data307_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data307_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data308_gt.json b/json/gt_json/data308_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..51fa5a008fca46fc9e8f4b530d383c93450b1e5f --- /dev/null +++ b/json/gt_json/data308_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data308_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data309_gt.json b/json/gt_json/data309_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..24c2bd55730480fd169f7f4922e509b3e1300538 --- /dev/null +++ b/json/gt_json/data309_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data309_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data30_gt.json b/json/gt_json/data30_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6ac677bfc595facfcf6b36e1561c7a274e245d8d --- /dev/null +++ b/json/gt_json/data30_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data30_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data310_gt.json b/json/gt_json/data310_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a3f540e913b4b88c175aef5d3839aea9414f9538 --- /dev/null +++ b/json/gt_json/data310_gt.json @@ -0,0 +1,232 @@ +{ + "source_scene": "pre_dec_json\\data310_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 45, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data311_gt.json b/json/gt_json/data311_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e2c616e54e17cb65d27ba2eb81a9608be1139848 --- /dev/null +++ b/json/gt_json/data311_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data311_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data312_gt.json b/json/gt_json/data312_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..4bd680225fcf74116583545c276c67ccca2f518a --- /dev/null +++ b/json/gt_json/data312_gt.json @@ -0,0 +1,282 @@ +{ + "source_scene": "pre_dec_json\\data312_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 55, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data313_gt.json b/json/gt_json/data313_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..91ff8003b6f639c2d3d768c7672e1b14ce64775e --- /dev/null +++ b/json/gt_json/data313_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data313_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data314_gt.json b/json/gt_json/data314_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6e0c0c38817815620a2fc3cb52cb44ce2edd1324 --- /dev/null +++ b/json/gt_json/data314_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data314_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data315_gt.json b/json/gt_json/data315_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..745c17b5aa5fd72b97a971166a86d37ce1223539 --- /dev/null +++ b/json/gt_json/data315_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data315_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data316_gt.json b/json/gt_json/data316_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..71fa93133cdac7949538e9e9d2ab81e90a3f8931 --- /dev/null +++ b/json/gt_json/data316_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data316_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data317_gt.json b/json/gt_json/data317_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0b24e72504f62def5dc40279fdf5105d910f1b41 --- /dev/null +++ b/json/gt_json/data317_gt.json @@ -0,0 +1,112 @@ +{ + "source_scene": "pre_dec_json\\data317_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 21, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data318_gt.json b/json/gt_json/data318_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..65d6337f4b85dfbda59c9dee1213328d5e160832 --- /dev/null +++ b/json/gt_json/data318_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data318_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data319_gt.json b/json/gt_json/data319_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d60e08c5f6006e56d25749fcb548ea0b809ac254 --- /dev/null +++ b/json/gt_json/data319_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data319_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data31_gt.json b/json/gt_json/data31_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5d072fef9cd3052c261d59c99959cedfd79a25f2 --- /dev/null +++ b/json/gt_json/data31_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data31_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data320_gt.json b/json/gt_json/data320_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..411ea655ca5175611e183fdd75d7fdc27aa2761a --- /dev/null +++ b/json/gt_json/data320_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data320_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data321_gt.json b/json/gt_json/data321_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..1ff1588a2b673d8b02c19e51481a400705ee25b7 --- /dev/null +++ b/json/gt_json/data321_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data321_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data322_gt.json b/json/gt_json/data322_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ac5910c5de338067f76e0769d87168725b84b39e --- /dev/null +++ b/json/gt_json/data322_gt.json @@ -0,0 +1,242 @@ +{ + "source_scene": "pre_dec_json\\data322_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 47, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data323_gt.json b/json/gt_json/data323_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..4397e8e680fd40506ff0d6b46827c3409c3b6903 --- /dev/null +++ b/json/gt_json/data323_gt.json @@ -0,0 +1,282 @@ +{ + "source_scene": "pre_dec_json\\data323_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 55, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data324_gt.json b/json/gt_json/data324_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..472456f4e84ea7c2a8c101b33848b36cd3490bb1 --- /dev/null +++ b/json/gt_json/data324_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data324_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data325_gt.json b/json/gt_json/data325_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..81fe0a0c9b984c7cd7fc428a3a5bd917e23263dd --- /dev/null +++ b/json/gt_json/data325_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data325_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data326_gt.json b/json/gt_json/data326_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..146a57398dac545f3a66533df444775b6bac722c --- /dev/null +++ b/json/gt_json/data326_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data326_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data327_gt.json b/json/gt_json/data327_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..dc879befae7ca804f191b54745ae45c14fdba6fa --- /dev/null +++ b/json/gt_json/data327_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data327_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data328_gt.json b/json/gt_json/data328_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a50b5d477ae46f51bf2ca1429bb860c82037afe3 --- /dev/null +++ b/json/gt_json/data328_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data328_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data329_gt.json b/json/gt_json/data329_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ae3dca036d60d6851f6e22efbc230a1617cab56a --- /dev/null +++ b/json/gt_json/data329_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data329_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data32_gt.json b/json/gt_json/data32_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b79bd9de92075b84bc6eb3018b1db022dcf82671 --- /dev/null +++ b/json/gt_json/data32_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data32_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data330_gt.json b/json/gt_json/data330_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d0209b6e73deb0b20d3a77be04b052b23ed1a071 --- /dev/null +++ b/json/gt_json/data330_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data330_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data331_gt.json b/json/gt_json/data331_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3a4bebed9881076cb58d9a072b8042b3bba0ff46 --- /dev/null +++ b/json/gt_json/data331_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data331_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data332_gt.json b/json/gt_json/data332_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..1d8cb6f918460667cb21e43ad6204e9d2b4762ab --- /dev/null +++ b/json/gt_json/data332_gt.json @@ -0,0 +1,182 @@ +{ + "source_scene": "pre_dec_json\\data332_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 35, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data333_gt.json b/json/gt_json/data333_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e9bc210dbe3b43b2e24878557421eb8d0f35b29f --- /dev/null +++ b/json/gt_json/data333_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data333_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data334_gt.json b/json/gt_json/data334_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c9b6a70ec9d65180f7ef156859d0e6522ee471b1 --- /dev/null +++ b/json/gt_json/data334_gt.json @@ -0,0 +1,282 @@ +{ + "source_scene": "pre_dec_json\\data334_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 55, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data335_gt.json b/json/gt_json/data335_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..4dd20c81183b518e170559aad85d8e1264bb5672 --- /dev/null +++ b/json/gt_json/data335_gt.json @@ -0,0 +1,282 @@ +{ + "source_scene": "pre_dec_json\\data335_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 55, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data336_gt.json b/json/gt_json/data336_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..944cc68ed3cc3ac17ee68ef5012ae031debd12fe --- /dev/null +++ b/json/gt_json/data336_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data336_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data337_gt.json b/json/gt_json/data337_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..05dfaef7f0d8eda3d54b02cab106a35364894182 --- /dev/null +++ b/json/gt_json/data337_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data337_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data338_gt.json b/json/gt_json/data338_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..799b776f79de72306f623003b2b8be6472d91cb1 --- /dev/null +++ b/json/gt_json/data338_gt.json @@ -0,0 +1,22 @@ +{ + "source_scene": "pre_dec_json\\data338_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 3, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data339_gt.json b/json/gt_json/data339_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8ae77f808bf81efef4f4734061b6e9d31546bdae --- /dev/null +++ b/json/gt_json/data339_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data339_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data33_gt.json b/json/gt_json/data33_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..1e6189a983a11451a30c09d1a4697b6baf550a2c --- /dev/null +++ b/json/gt_json/data33_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data33_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data340_gt.json b/json/gt_json/data340_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..68e598202eb6e44bb2bf2bc6e62d457abc970a1c --- /dev/null +++ b/json/gt_json/data340_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data340_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data341_gt.json b/json/gt_json/data341_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c301dd4a6faf60ca1f90d75f1997c60b842d5fe2 --- /dev/null +++ b/json/gt_json/data341_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data341_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data342_gt.json b/json/gt_json/data342_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fb444865426c3db3fc20fb175b3bf057be69cffa --- /dev/null +++ b/json/gt_json/data342_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data342_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data343_gt.json b/json/gt_json/data343_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..14e5f6e0268414a2826805914ef04fd4dae322de --- /dev/null +++ b/json/gt_json/data343_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data343_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data344_gt.json b/json/gt_json/data344_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c433ff382d787a45ca312633892bded8b848e71d --- /dev/null +++ b/json/gt_json/data344_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data344_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data345_gt.json b/json/gt_json/data345_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..1752bc163a48827b38c6b08a1780adc33164bd30 --- /dev/null +++ b/json/gt_json/data345_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data345_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data346_gt.json b/json/gt_json/data346_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..60f96d38f7eeef0165e6e600d24b4c2fdb477d5d --- /dev/null +++ b/json/gt_json/data346_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data346_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data347_gt.json b/json/gt_json/data347_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c13f7217cc4b2f473bfcb4fbb4fa35686db7e0b2 --- /dev/null +++ b/json/gt_json/data347_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data347_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data348_gt.json b/json/gt_json/data348_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..eb8d5f4dc9977532c8fbe3b650ac386d5253b5ae --- /dev/null +++ b/json/gt_json/data348_gt.json @@ -0,0 +1,182 @@ +{ + "source_scene": "pre_dec_json\\data348_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 35, + "valid_controls": [ + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data349_gt.json b/json/gt_json/data349_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3967d12c37afab56f45f65cf88be63befa52e973 --- /dev/null +++ b/json/gt_json/data349_gt.json @@ -0,0 +1,267 @@ +{ + "source_scene": "pre_dec_json\\data349_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 52, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data34_gt.json b/json/gt_json/data34_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ba9ecb94f66395156b2623e5575c415dea08a3a2 --- /dev/null +++ b/json/gt_json/data34_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data34_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data350_gt.json b/json/gt_json/data350_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..485ede6355652c524d81ebb674686bbd2e5934f9 --- /dev/null +++ b/json/gt_json/data350_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data350_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data351_gt.json b/json/gt_json/data351_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b63b9382418a1f7e685b16041ef73b54f16a1bb0 --- /dev/null +++ b/json/gt_json/data351_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data351_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data352_gt.json b/json/gt_json/data352_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..eb52f5e5451a170371b32095b3f0777f9c44fd84 --- /dev/null +++ b/json/gt_json/data352_gt.json @@ -0,0 +1,182 @@ +{ + "source_scene": "pre_dec_json\\data352_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 35, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data353_gt.json b/json/gt_json/data353_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d739d755765213c2ddc741ae1416991cef174ad0 --- /dev/null +++ b/json/gt_json/data353_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data353_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data354_gt.json b/json/gt_json/data354_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..079a6f71e25b4b31037291bc6d9a19c754ed7011 --- /dev/null +++ b/json/gt_json/data354_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data354_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data355_gt.json b/json/gt_json/data355_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f93c95f33c7143247c0ab9efac73f8a313e0b609 --- /dev/null +++ b/json/gt_json/data355_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data355_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data356_gt.json b/json/gt_json/data356_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a8a4883b70a1b06a1c6b09b5dc4422af946cb20f --- /dev/null +++ b/json/gt_json/data356_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data356_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data357_gt.json b/json/gt_json/data357_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c5dab85d8549a4be5cc13820bc16a72262686d10 --- /dev/null +++ b/json/gt_json/data357_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data357_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data358_gt.json b/json/gt_json/data358_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6fef1ebb5c2a20dfb5a019cc1dd3eb1da406cbab --- /dev/null +++ b/json/gt_json/data358_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data358_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data359_gt.json b/json/gt_json/data359_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..eb8b5ebcd2eab6d3ffcb6e0445a6ef8e12fd9750 --- /dev/null +++ b/json/gt_json/data359_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data359_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data35_gt.json b/json/gt_json/data35_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..03b0272a677dc7686d0d3a4f2f0d1e62f1c3ab19 --- /dev/null +++ b/json/gt_json/data35_gt.json @@ -0,0 +1,242 @@ +{ + "source_scene": "pre_dec_json\\data35_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 47, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": 225, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": 225, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data360_gt.json b/json/gt_json/data360_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b5e99927182faa03125d4fa0ae083492be3cd897 --- /dev/null +++ b/json/gt_json/data360_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data360_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data361_gt.json b/json/gt_json/data361_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..435b51d2c259682692b2a7e51e65dde5ea24da2b --- /dev/null +++ b/json/gt_json/data361_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data361_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data362_gt.json b/json/gt_json/data362_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fee469967d63cb414d13ddbd794f8d005f61d17d --- /dev/null +++ b/json/gt_json/data362_gt.json @@ -0,0 +1,202 @@ +{ + "source_scene": "pre_dec_json\\data362_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 39, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data363_gt.json b/json/gt_json/data363_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e853aa864b647fd4c2b765fe39d987223c341b01 --- /dev/null +++ b/json/gt_json/data363_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data363_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data364_gt.json b/json/gt_json/data364_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2b53897aae257fbf70d22c60e487e24f93a31b95 --- /dev/null +++ b/json/gt_json/data364_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data364_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 0, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data365_gt.json b/json/gt_json/data365_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b215f029d4d5000dfa7c747379afe11a4d30273f --- /dev/null +++ b/json/gt_json/data365_gt.json @@ -0,0 +1,237 @@ +{ + "source_scene": "pre_dec_json\\data365_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 46, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data366_gt.json b/json/gt_json/data366_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..483ffd5ae3be826225fd185290844bde60fc3b75 --- /dev/null +++ b/json/gt_json/data366_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data366_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data367_gt.json b/json/gt_json/data367_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..09bbd6bb425db95d11762f418a1fc5387270cfb7 --- /dev/null +++ b/json/gt_json/data367_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data367_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data368_gt.json b/json/gt_json/data368_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f99d0c42c8f403e56122d58ec02e37eb45c6b95b --- /dev/null +++ b/json/gt_json/data368_gt.json @@ -0,0 +1,277 @@ +{ + "source_scene": "pre_dec_json\\data368_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 54, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data369_gt.json b/json/gt_json/data369_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d2e41ce415b909632bd1fef6ffd7455b7f88e934 --- /dev/null +++ b/json/gt_json/data369_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data369_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data36_gt.json b/json/gt_json/data36_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..43c1587c971c79d53f4e82ded47abb8f998ef32b --- /dev/null +++ b/json/gt_json/data36_gt.json @@ -0,0 +1,247 @@ +{ + "source_scene": "pre_dec_json\\data36_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 48, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data370_gt.json b/json/gt_json/data370_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..df7fa3a0b33b86741c97556b0e9fb44668b45466 --- /dev/null +++ b/json/gt_json/data370_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data370_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data371_gt.json b/json/gt_json/data371_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..822663b9e53704671c4befaac7107c31864fbf46 --- /dev/null +++ b/json/gt_json/data371_gt.json @@ -0,0 +1,192 @@ +{ + "source_scene": "pre_dec_json\\data371_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 37, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data372_gt.json b/json/gt_json/data372_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0d40f1ea9b0309f4c66c264970388718cbb2fa4a --- /dev/null +++ b/json/gt_json/data372_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data372_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data373_gt.json b/json/gt_json/data373_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f8153efa72ebd5811e9d8713f3d362ea9cca6c18 --- /dev/null +++ b/json/gt_json/data373_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data373_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data374_gt.json b/json/gt_json/data374_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..bbf071c01827f9300088e79108a8362ee4d427b7 --- /dev/null +++ b/json/gt_json/data374_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data374_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data375_gt.json b/json/gt_json/data375_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..273b679022df25fdfc137cd710e5ce043a9d27c5 --- /dev/null +++ b/json/gt_json/data375_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data375_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data376_gt.json b/json/gt_json/data376_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..bd02267fa208a5f26909e02639c576eec8afaed3 --- /dev/null +++ b/json/gt_json/data376_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data376_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data377_gt.json b/json/gt_json/data377_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..90ff9d878bd2a785d3be46c851b7b91ac171852a --- /dev/null +++ b/json/gt_json/data377_gt.json @@ -0,0 +1,152 @@ +{ + "source_scene": "pre_dec_json\\data377_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 29, + "valid_controls": [ + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data378_gt.json b/json/gt_json/data378_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b42285782ff735827d34b9359c2e821e859b3f0d --- /dev/null +++ b/json/gt_json/data378_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data378_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data379_gt.json b/json/gt_json/data379_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fb820d2d7239788254f7388856e1b43db740b606 --- /dev/null +++ b/json/gt_json/data379_gt.json @@ -0,0 +1,177 @@ +{ + "source_scene": "pre_dec_json\\data379_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 34, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data37_gt.json b/json/gt_json/data37_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6cc033ab1926a676f5b9b248a2f06e2ebd7e7057 --- /dev/null +++ b/json/gt_json/data37_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data37_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data380_gt.json b/json/gt_json/data380_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..df08657517b658f0866d0e09faf483e57a2f4699 --- /dev/null +++ b/json/gt_json/data380_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data380_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data381_gt.json b/json/gt_json/data381_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c3c633a1f1de444d614abf6b67be0067fef47727 --- /dev/null +++ b/json/gt_json/data381_gt.json @@ -0,0 +1,22 @@ +{ + "source_scene": "pre_dec_json\\data381_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 3, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data382_gt.json b/json/gt_json/data382_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..254fb97ba6b55dbb738ffba910f6b521a29d16a3 --- /dev/null +++ b/json/gt_json/data382_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data382_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data383_gt.json b/json/gt_json/data383_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..59b2a111f15d27bd62a6dadf1c2a91339d2aaf48 --- /dev/null +++ b/json/gt_json/data383_gt.json @@ -0,0 +1,152 @@ +{ + "source_scene": "pre_dec_json\\data383_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 29, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data384_gt.json b/json/gt_json/data384_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ee6a1618e8d44e9b5c9a0dd9d00bedee1ced3395 --- /dev/null +++ b/json/gt_json/data384_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data384_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data385_gt.json b/json/gt_json/data385_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0b61f76e5b6f79804ad37792a847dcfa9d745351 --- /dev/null +++ b/json/gt_json/data385_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data385_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data386_gt.json b/json/gt_json/data386_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f507dbcb036801b9efe4fcbc0fb7cf057a2a809c --- /dev/null +++ b/json/gt_json/data386_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data386_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data387_gt.json b/json/gt_json/data387_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fe311a7df2ce8284c209697dfde9f9131939f558 --- /dev/null +++ b/json/gt_json/data387_gt.json @@ -0,0 +1,137 @@ +{ + "source_scene": "pre_dec_json\\data387_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 26, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data388_gt.json b/json/gt_json/data388_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9b5e7caa2ee4862923e575b2edf1543568318c40 --- /dev/null +++ b/json/gt_json/data388_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data388_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data389_gt.json b/json/gt_json/data389_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fe15ca55bcea474c2d0aa0b9ca2bcbae3b576b1d --- /dev/null +++ b/json/gt_json/data389_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data389_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": 65, + "ay": 0, + "label": "1" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data38_gt.json b/json/gt_json/data38_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..04ece06cbcd5fc2946c215ce3bd554aa97d1c8be --- /dev/null +++ b/json/gt_json/data38_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data38_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data390_gt.json b/json/gt_json/data390_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..29d84bfe9241e6f26186cdc5d38daa569c51a376 --- /dev/null +++ b/json/gt_json/data390_gt.json @@ -0,0 +1,162 @@ +{ + "source_scene": "pre_dec_json\\data390_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 31, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data391_gt.json b/json/gt_json/data391_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..46516354b1e83f0379cbfcec2dec23ecb0a5ee72 --- /dev/null +++ b/json/gt_json/data391_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data391_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data392_gt.json b/json/gt_json/data392_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d97258783d897257aa8f6a29f3dca690880704dd --- /dev/null +++ b/json/gt_json/data392_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data392_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data393_gt.json b/json/gt_json/data393_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..56d8a20981388e9cab90c67b0f0af49b2969240c --- /dev/null +++ b/json/gt_json/data393_gt.json @@ -0,0 +1,107 @@ +{ + "source_scene": "pre_dec_json\\data393_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 20, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data394_gt.json b/json/gt_json/data394_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e85eaf7ac3943f3e5cec6eee6b4073e7d376fcc2 --- /dev/null +++ b/json/gt_json/data394_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data394_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data395_gt.json b/json/gt_json/data395_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5fc23df6f60698ed03c499b08b45a61862eeb2f6 --- /dev/null +++ b/json/gt_json/data395_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data395_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data396_gt.json b/json/gt_json/data396_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..158151bc71102c838115d1aa70fe2518e08fe48e --- /dev/null +++ b/json/gt_json/data396_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data396_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data397_gt.json b/json/gt_json/data397_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..63c30dc0f12356813ae1acf30bd6dce46dfd0dcf --- /dev/null +++ b/json/gt_json/data397_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data397_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data398_gt.json b/json/gt_json/data398_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8226912e9b0ec5513c60f23acd8284b0eddbf518 --- /dev/null +++ b/json/gt_json/data398_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data398_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data399_gt.json b/json/gt_json/data399_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..7955ec3993f8250471b6b00a095aa205ab75feab --- /dev/null +++ b/json/gt_json/data399_gt.json @@ -0,0 +1,172 @@ +{ + "source_scene": "pre_dec_json\\data399_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 33, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data39_gt.json b/json/gt_json/data39_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fd81b955fe9325b2f218136c2ad7affe566c69eb --- /dev/null +++ b/json/gt_json/data39_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data39_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data3_gt.json b/json/gt_json/data3_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e22308855a9dd5db94315ece086ab671f09148e6 --- /dev/null +++ b/json/gt_json/data3_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data3_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data400_gt.json b/json/gt_json/data400_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d539bd1970996933addd6d6f39c4898ba4a9e5c3 --- /dev/null +++ b/json/gt_json/data400_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data400_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data401_gt.json b/json/gt_json/data401_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f4965593dd94aeaf27fe5d791fde0411f8821105 --- /dev/null +++ b/json/gt_json/data401_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data401_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data402_gt.json b/json/gt_json/data402_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..aaf64937d605494ffc3ba1d7ea2af564bc8a5ccf --- /dev/null +++ b/json/gt_json/data402_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data402_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data403_gt.json b/json/gt_json/data403_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5d85e6270d5f36336dab9de0d07e440ccf559804 --- /dev/null +++ b/json/gt_json/data403_gt.json @@ -0,0 +1,122 @@ +{ + "source_scene": "pre_dec_json\\data403_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 23, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data404_gt.json b/json/gt_json/data404_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..615b9410ba953cbe7d2a2b248a8f17eb065764af --- /dev/null +++ b/json/gt_json/data404_gt.json @@ -0,0 +1,152 @@ +{ + "source_scene": "pre_dec_json\\data404_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 29, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data405_gt.json b/json/gt_json/data405_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..af89bf9ba406aa4cdc06b74b3c883d113a647f99 --- /dev/null +++ b/json/gt_json/data405_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data405_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data406_gt.json b/json/gt_json/data406_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9de4c8a5b74dcd23b529e7570982e3371044f0da --- /dev/null +++ b/json/gt_json/data406_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data406_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data407_gt.json b/json/gt_json/data407_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f594ce2d4805cd407ed1e6748b6a25730304cb8d --- /dev/null +++ b/json/gt_json/data407_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data407_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data408_gt.json b/json/gt_json/data408_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c6090d3b4ceb26cd4da966851a8fe1c8153512cb --- /dev/null +++ b/json/gt_json/data408_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data408_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data409_gt.json b/json/gt_json/data409_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ad5d28b1477dfb50c117063ce0bfbe376b13f799 --- /dev/null +++ b/json/gt_json/data409_gt.json @@ -0,0 +1,122 @@ +{ + "source_scene": "pre_dec_json\\data409_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 23, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data40_gt.json b/json/gt_json/data40_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8d5195bc5b69439738458c14a504d018ad9e1944 --- /dev/null +++ b/json/gt_json/data40_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data40_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data410_gt.json b/json/gt_json/data410_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..959a71a549ab311d12f1ce63030f3a3112293875 --- /dev/null +++ b/json/gt_json/data410_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data410_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data411_gt.json b/json/gt_json/data411_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ebdeae5982c6ef336200ebd5a31f78dde1430a3a --- /dev/null +++ b/json/gt_json/data411_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data411_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data412_gt.json b/json/gt_json/data412_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9e650c737282a6ec90924275c0328441710645f8 --- /dev/null +++ b/json/gt_json/data412_gt.json @@ -0,0 +1,202 @@ +{ + "source_scene": "pre_dec_json\\data412_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 39, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data413_gt.json b/json/gt_json/data413_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f97430f2351335ac0faccc7747db229f3ffcd600 --- /dev/null +++ b/json/gt_json/data413_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data413_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data414_gt.json b/json/gt_json/data414_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ff55e73de39e9a0c04d220a8b45c8960031a1665 --- /dev/null +++ b/json/gt_json/data414_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data414_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data415_gt.json b/json/gt_json/data415_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..dcebfe93d19da2521c396fc28f1aa51b9a041fb3 --- /dev/null +++ b/json/gt_json/data415_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data415_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data416_gt.json b/json/gt_json/data416_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b08eae4f2eb200f745433a5a80b30bf1e5d5f05f --- /dev/null +++ b/json/gt_json/data416_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data416_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data417_gt.json b/json/gt_json/data417_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..04434c0edc1cffd5caf511a88c47424b6e4599fa --- /dev/null +++ b/json/gt_json/data417_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data417_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data418_gt.json b/json/gt_json/data418_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9b7ea282458b2b8c36ab5cd1670edbe257b8a1ae --- /dev/null +++ b/json/gt_json/data418_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data418_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data419_gt.json b/json/gt_json/data419_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..76c0c3123ecbcd09eee7b13ff237e9169fa3ce3e --- /dev/null +++ b/json/gt_json/data419_gt.json @@ -0,0 +1,282 @@ +{ + "source_scene": "pre_dec_json\\data419_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 55, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data41_gt.json b/json/gt_json/data41_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5d7cc018136801078e4caf85b9353646dda8f221 --- /dev/null +++ b/json/gt_json/data41_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data41_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data420_gt.json b/json/gt_json/data420_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3430650092b37f8121ba19f26a26041d99527c7c --- /dev/null +++ b/json/gt_json/data420_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data420_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data421_gt.json b/json/gt_json/data421_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2ee6682cf73b0c3c829b659638f691e4199e83c0 --- /dev/null +++ b/json/gt_json/data421_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data421_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data422_gt.json b/json/gt_json/data422_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f05fce19b3226fdc9b106a0e1ff234d07269e4ef --- /dev/null +++ b/json/gt_json/data422_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data422_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data423_gt.json b/json/gt_json/data423_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6d310e928bf31b02d26f445b845a1fce9bf45470 --- /dev/null +++ b/json/gt_json/data423_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data423_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data424_gt.json b/json/gt_json/data424_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c2368b8eae4d853964549f2482da4b52b5cac7a7 --- /dev/null +++ b/json/gt_json/data424_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data424_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data425_gt.json b/json/gt_json/data425_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..614bd39758f7041500720758524db87b767a0e51 --- /dev/null +++ b/json/gt_json/data425_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data425_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data426_gt.json b/json/gt_json/data426_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e8a4eee0dde06ce5d3737674c8162f27c4f4e18a --- /dev/null +++ b/json/gt_json/data426_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data426_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data427_gt.json b/json/gt_json/data427_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6abf85cc6459c30f6097257f24a129baff7a7ee4 --- /dev/null +++ b/json/gt_json/data427_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data427_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data428_gt.json b/json/gt_json/data428_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f7f85f3823aaaa82f54f510ed3b8243677d2c80e --- /dev/null +++ b/json/gt_json/data428_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data428_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data429_gt.json b/json/gt_json/data429_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e5ebf46139b1a6a0452ca654ab174ce263f661c0 --- /dev/null +++ b/json/gt_json/data429_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data429_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data42_gt.json b/json/gt_json/data42_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0fe0c114b4823a6bc3d3a12a1b4b190a86c638bd --- /dev/null +++ b/json/gt_json/data42_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data42_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data430_gt.json b/json/gt_json/data430_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5429f73fd02acdf4e9de934d4b40265bff590480 --- /dev/null +++ b/json/gt_json/data430_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data430_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data431_gt.json b/json/gt_json/data431_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..58cd233f91c31664a416508234187c1522e672dd --- /dev/null +++ b/json/gt_json/data431_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data431_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data432_gt.json b/json/gt_json/data432_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..633b0b643b3b7bf56dc87f7403b6fd1632068f05 --- /dev/null +++ b/json/gt_json/data432_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data432_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data433_gt.json b/json/gt_json/data433_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a2e03be23705369051ec2ce3afbba2d3beb10297 --- /dev/null +++ b/json/gt_json/data433_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data433_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data434_gt.json b/json/gt_json/data434_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..840b9f0270fdc457d2c198362883ef926c869a59 --- /dev/null +++ b/json/gt_json/data434_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data434_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data435_gt.json b/json/gt_json/data435_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..dbd4f316fca8fadf5eaeff63246f355938d331d4 --- /dev/null +++ b/json/gt_json/data435_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data435_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data436_gt.json b/json/gt_json/data436_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8a39de45bb1aab062dfa3700cd2a31c9e29053cb --- /dev/null +++ b/json/gt_json/data436_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data436_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data437_gt.json b/json/gt_json/data437_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..99ee87675b11d24b1d38fac99c056ba0ed723478 --- /dev/null +++ b/json/gt_json/data437_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data437_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data438_gt.json b/json/gt_json/data438_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a13c8902d89f175abcfa125b8f86f8d671d2d7b8 --- /dev/null +++ b/json/gt_json/data438_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data438_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data439_gt.json b/json/gt_json/data439_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a6a7254928549824d9a8ac6c718662c7a47d3ddc --- /dev/null +++ b/json/gt_json/data439_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data439_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data43_gt.json b/json/gt_json/data43_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..26896f08ee670ed551c865a119e047e54fe5d627 --- /dev/null +++ b/json/gt_json/data43_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data43_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data440_gt.json b/json/gt_json/data440_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8f2f8f5681447df16d363c68b30276f8132c5f5e --- /dev/null +++ b/json/gt_json/data440_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data440_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data441_gt.json b/json/gt_json/data441_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f92a4709627ea7282d0e7421165a0fd597e03fc1 --- /dev/null +++ b/json/gt_json/data441_gt.json @@ -0,0 +1,162 @@ +{ + "source_scene": "pre_dec_json\\data441_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 31, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "1" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data442_gt.json b/json/gt_json/data442_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..372789b3b7b0f9093c232b46efb421b5aca62a97 --- /dev/null +++ b/json/gt_json/data442_gt.json @@ -0,0 +1,122 @@ +{ + "source_scene": "pre_dec_json\\data442_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 23, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data443_gt.json b/json/gt_json/data443_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b62c3845527f58a306de171fc7a0d9e5fcb92486 --- /dev/null +++ b/json/gt_json/data443_gt.json @@ -0,0 +1,107 @@ +{ + "source_scene": "pre_dec_json\\data443_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 20, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data444_gt.json b/json/gt_json/data444_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b3fe7dfadf2aa56622284dc6a06b709db4c8f1f3 --- /dev/null +++ b/json/gt_json/data444_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data444_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data445_gt.json b/json/gt_json/data445_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..01ccaee538c1bc685ac6e36dc3106aa18de3a1c2 --- /dev/null +++ b/json/gt_json/data445_gt.json @@ -0,0 +1,232 @@ +{ + "source_scene": "pre_dec_json\\data445_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 45, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data446_gt.json b/json/gt_json/data446_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8fcc1a9e7690c5a4c4f69006c77813f8b3c6f1d3 --- /dev/null +++ b/json/gt_json/data446_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data446_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data447_gt.json b/json/gt_json/data447_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fa0d08b3874fcb3c813e0dce487141028be68e16 --- /dev/null +++ b/json/gt_json/data447_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data447_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data448_gt.json b/json/gt_json/data448_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..cd2c8b8cec7dc469443ba43207a82e49756599f5 --- /dev/null +++ b/json/gt_json/data448_gt.json @@ -0,0 +1,22 @@ +{ + "source_scene": "pre_dec_json\\data448_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 3, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data449_gt.json b/json/gt_json/data449_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..99fc4f8da26d285c68ba6083c1bf8283cbb519a2 --- /dev/null +++ b/json/gt_json/data449_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data449_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data44_gt.json b/json/gt_json/data44_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3cd68c371f01c9bdb12dabebf0258574ef5c0a79 --- /dev/null +++ b/json/gt_json/data44_gt.json @@ -0,0 +1,217 @@ +{ + "source_scene": "pre_dec_json\\data44_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 42, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data450_gt.json b/json/gt_json/data450_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8d4563ffa9711bb7a9bd2ac4cbf7021bfdf587d6 --- /dev/null +++ b/json/gt_json/data450_gt.json @@ -0,0 +1,152 @@ +{ + "source_scene": "pre_dec_json\\data450_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 29, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data451_gt.json b/json/gt_json/data451_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d80e4348dabc64799cab59217873178e5cff4ee8 --- /dev/null +++ b/json/gt_json/data451_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data451_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data452_gt.json b/json/gt_json/data452_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..00141779d85015650dfd4607d3715dde00b8286b --- /dev/null +++ b/json/gt_json/data452_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data452_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data453_gt.json b/json/gt_json/data453_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..746e78b838cd283c80d26df94f47a55f5a1b40b1 --- /dev/null +++ b/json/gt_json/data453_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data453_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data454_gt.json b/json/gt_json/data454_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a87ec681db1616aeaee67c530de21b47acf25166 --- /dev/null +++ b/json/gt_json/data454_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data454_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data455_gt.json b/json/gt_json/data455_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..7e1bed25a69d4cffcfe09eda274edc3fbbe90365 --- /dev/null +++ b/json/gt_json/data455_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data455_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data456_gt.json b/json/gt_json/data456_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..984959a9e72ef78b5c5e298d86b75216a6172bdb --- /dev/null +++ b/json/gt_json/data456_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data456_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data457_gt.json b/json/gt_json/data457_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..bffbee56270abf9be8cec527323dfa143460dc3a --- /dev/null +++ b/json/gt_json/data457_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data457_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data458_gt.json b/json/gt_json/data458_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a8bfcce1b23ffd33270cbc2ecc2383eaf434bbb8 --- /dev/null +++ b/json/gt_json/data458_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data458_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data459_gt.json b/json/gt_json/data459_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..12804bad19a4a04c7aac7cb1447f5a6ac0713c63 --- /dev/null +++ b/json/gt_json/data459_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data459_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data45_gt.json b/json/gt_json/data45_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a02dac70225923135b1d948854f05f3693a56643 --- /dev/null +++ b/json/gt_json/data45_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data45_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data460_gt.json b/json/gt_json/data460_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..162d70b600e46d5500a5e94b2b7ab0bf1e902705 --- /dev/null +++ b/json/gt_json/data460_gt.json @@ -0,0 +1,272 @@ +{ + "source_scene": "pre_dec_json\\data460_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 53, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data461_gt.json b/json/gt_json/data461_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9fff56bd95318466b9cc3bc18c64b320b54f3847 --- /dev/null +++ b/json/gt_json/data461_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data461_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data462_gt.json b/json/gt_json/data462_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c43baefbe3ac7d6b6f2de9abe53878e2f9243e82 --- /dev/null +++ b/json/gt_json/data462_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data462_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data463_gt.json b/json/gt_json/data463_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6386996afb383e361d44ce6a75cc8ee043d19714 --- /dev/null +++ b/json/gt_json/data463_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data463_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data464_gt.json b/json/gt_json/data464_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..055f7dcdd7a15d4a6f811e1d3a063cc0b2e05104 --- /dev/null +++ b/json/gt_json/data464_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data464_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data465_gt.json b/json/gt_json/data465_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5bd299ff1ceabb7394d69e838c044af4eacf0864 --- /dev/null +++ b/json/gt_json/data465_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data465_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data466_gt.json b/json/gt_json/data466_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..7a5757e535ca33aa1775e1dc4c5e17f3d222921a --- /dev/null +++ b/json/gt_json/data466_gt.json @@ -0,0 +1,242 @@ +{ + "source_scene": "pre_dec_json\\data466_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 47, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data467_gt.json b/json/gt_json/data467_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..7d142fe77908b150c5e3c003ef9ae9a63d8e0305 --- /dev/null +++ b/json/gt_json/data467_gt.json @@ -0,0 +1,192 @@ +{ + "source_scene": "pre_dec_json\\data467_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 37, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data468_gt.json b/json/gt_json/data468_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ab7d81b8f6dda24919e037ff6c369ed9902c95e6 --- /dev/null +++ b/json/gt_json/data468_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data468_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data469_gt.json b/json/gt_json/data469_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..dfc0737e52bcc2f11cd04fda98cbc306edcc022f --- /dev/null +++ b/json/gt_json/data469_gt.json @@ -0,0 +1,162 @@ +{ + "source_scene": "pre_dec_json\\data469_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 31, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data46_gt.json b/json/gt_json/data46_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..727f5d002c1bd87ca5ac30161fbb3c64f1212ecb --- /dev/null +++ b/json/gt_json/data46_gt.json @@ -0,0 +1,247 @@ +{ + "source_scene": "pre_dec_json\\data46_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 48, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": 225, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data470_gt.json b/json/gt_json/data470_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2fe16967cccbd4701506e582b609761818e6fe49 --- /dev/null +++ b/json/gt_json/data470_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data470_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data471_gt.json b/json/gt_json/data471_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b8eba2e7d08556ff723d8cbf553dd6e4220e3b8c --- /dev/null +++ b/json/gt_json/data471_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data471_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data472_gt.json b/json/gt_json/data472_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ad820ad8093e84fd3b0c8aea5ac878087aa99702 --- /dev/null +++ b/json/gt_json/data472_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data472_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data473_gt.json b/json/gt_json/data473_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..55b1410c0a5e1b98eafff20e6f6a2a68c8190853 --- /dev/null +++ b/json/gt_json/data473_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data473_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data474_gt.json b/json/gt_json/data474_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..eb38d6ab483958545c31b129b7ca43921c368a99 --- /dev/null +++ b/json/gt_json/data474_gt.json @@ -0,0 +1,282 @@ +{ + "source_scene": "pre_dec_json\\data474_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 55, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data475_gt.json b/json/gt_json/data475_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..95c6a307161f5cd5520d4b7e19a45369d32920e8 --- /dev/null +++ b/json/gt_json/data475_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data475_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data476_gt.json b/json/gt_json/data476_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..44cb9febbc1af77388582e0482db94ac97dd202e --- /dev/null +++ b/json/gt_json/data476_gt.json @@ -0,0 +1,132 @@ +{ + "source_scene": "pre_dec_json\\data476_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 25, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data477_gt.json b/json/gt_json/data477_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..effe97f9a4fb9bde419e21247b5c042a8876ade2 --- /dev/null +++ b/json/gt_json/data477_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data477_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data478_gt.json b/json/gt_json/data478_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c93f9150882a593cac03892810db1ba05208569d --- /dev/null +++ b/json/gt_json/data478_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data478_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data479_gt.json b/json/gt_json/data479_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a0ae8788f28a4a1411e088503ced1a1ac8c3f809 --- /dev/null +++ b/json/gt_json/data479_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data479_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data47_gt.json b/json/gt_json/data47_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ea43a168fd1ed1e5c4484115c0059fd0a51ecbc5 --- /dev/null +++ b/json/gt_json/data47_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data47_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data480_gt.json b/json/gt_json/data480_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f6a46a36bf6c1060ac79db79f7c8a9fc8e73ad09 --- /dev/null +++ b/json/gt_json/data480_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data480_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data481_gt.json b/json/gt_json/data481_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2e53eb2603aa636e7b2cd080ed3f7005f3b3cf6a --- /dev/null +++ b/json/gt_json/data481_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data481_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data482_gt.json b/json/gt_json/data482_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0339d94ab1065a0684ec61863e331799b8321162 --- /dev/null +++ b/json/gt_json/data482_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data482_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data483_gt.json b/json/gt_json/data483_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..caedcf097b7fe58c91475991bad8c7e50554f7a6 --- /dev/null +++ b/json/gt_json/data483_gt.json @@ -0,0 +1,177 @@ +{ + "source_scene": "pre_dec_json\\data483_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 34, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data484_gt.json b/json/gt_json/data484_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0532343aff8e9b5f03f3f6e56602d9d99ed97e28 --- /dev/null +++ b/json/gt_json/data484_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data484_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data485_gt.json b/json/gt_json/data485_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..be94a0e749fd71a94ab1f65cf84f5af1d89ce559 --- /dev/null +++ b/json/gt_json/data485_gt.json @@ -0,0 +1,267 @@ +{ + "source_scene": "pre_dec_json\\data485_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 52, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data486_gt.json b/json/gt_json/data486_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..29f02846e6a64cd3585f7669bb5a1ad84c2ff14e --- /dev/null +++ b/json/gt_json/data486_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data486_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data487_gt.json b/json/gt_json/data487_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..95695e4b50c305449ea568f5d941d08aca413647 --- /dev/null +++ b/json/gt_json/data487_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data487_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data488_gt.json b/json/gt_json/data488_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..692a014fbaf891ef4168e05d3258b99b214277c4 --- /dev/null +++ b/json/gt_json/data488_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data488_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data489_gt.json b/json/gt_json/data489_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..55306010f08283335b44b5b72c75c3b32d71e450 --- /dev/null +++ b/json/gt_json/data489_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data489_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data48_gt.json b/json/gt_json/data48_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..851f4fe58c22c1cf141cce11aeb126b47302b367 --- /dev/null +++ b/json/gt_json/data48_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data48_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data490_gt.json b/json/gt_json/data490_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6fcb0a43be84589b66063d99ecc2b2e79d930ab8 --- /dev/null +++ b/json/gt_json/data490_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data490_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data491_gt.json b/json/gt_json/data491_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5b33cce4ef21541e34d71d615d8c6e08f42904d4 --- /dev/null +++ b/json/gt_json/data491_gt.json @@ -0,0 +1,137 @@ +{ + "source_scene": "pre_dec_json\\data491_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 26, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data492_gt.json b/json/gt_json/data492_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ae4845464cb67674b37aac7ed419a90e1f019f35 --- /dev/null +++ b/json/gt_json/data492_gt.json @@ -0,0 +1,97 @@ +{ + "source_scene": "pre_dec_json\\data492_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 18, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data493_gt.json b/json/gt_json/data493_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..60c10fda5ddd223cf1d28142b6cab49985356300 --- /dev/null +++ b/json/gt_json/data493_gt.json @@ -0,0 +1,122 @@ +{ + "source_scene": "pre_dec_json\\data493_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 23, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data494_gt.json b/json/gt_json/data494_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..7c9c76e666276e9d595f8640dea4e57fa58951c6 --- /dev/null +++ b/json/gt_json/data494_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data494_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data495_gt.json b/json/gt_json/data495_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0a22795d59e9ee1b7f46a3715febc6ca6031c047 --- /dev/null +++ b/json/gt_json/data495_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data495_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data496_gt.json b/json/gt_json/data496_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..59f0f18b951072d6f686ce182a9a97b9c10f220c --- /dev/null +++ b/json/gt_json/data496_gt.json @@ -0,0 +1,207 @@ +{ + "source_scene": "pre_dec_json\\data496_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 40, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data497_gt.json b/json/gt_json/data497_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d6c0ae7be185217f6392c33c6f543f91219be8db --- /dev/null +++ b/json/gt_json/data497_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data497_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data498_gt.json b/json/gt_json/data498_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b21c093162d6a9d59fbd26a477f02ada3b641800 --- /dev/null +++ b/json/gt_json/data498_gt.json @@ -0,0 +1,107 @@ +{ + "source_scene": "pre_dec_json\\data498_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 20, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data499_gt.json b/json/gt_json/data499_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..1d7fd0cb536eb48a573b52fcb706a91e854a82a1 --- /dev/null +++ b/json/gt_json/data499_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data499_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data49_gt.json b/json/gt_json/data49_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..468abb11de92e0b2bd7df53069785b21b3df7573 --- /dev/null +++ b/json/gt_json/data49_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data49_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data4_gt.json b/json/gt_json/data4_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..63808c9ab8e3414e2575ca9d6cf2c6f866dc0829 --- /dev/null +++ b/json/gt_json/data4_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data4_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data500_gt.json b/json/gt_json/data500_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..96466b6f0a339c4e3f1bac35c5fe0a2db6b6fd1c --- /dev/null +++ b/json/gt_json/data500_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data500_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data501_gt.json b/json/gt_json/data501_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..346a1ca08142e494117fd29203f51e66e8aa7ae9 --- /dev/null +++ b/json/gt_json/data501_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data501_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data502_gt.json b/json/gt_json/data502_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..923b1553ad0badb7b7ef7ed32d3e3bd6e80d24e5 --- /dev/null +++ b/json/gt_json/data502_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data502_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data503_gt.json b/json/gt_json/data503_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b9e38913596b2e3db7d52ca1a9632825355a785b --- /dev/null +++ b/json/gt_json/data503_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data503_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data504_gt.json b/json/gt_json/data504_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..73edb48330aa64dda238cc622c095ecf81e2b999 --- /dev/null +++ b/json/gt_json/data504_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data504_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data505_gt.json b/json/gt_json/data505_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..00955859b48571a6e8172eeb0d48323a8b7b4a93 --- /dev/null +++ b/json/gt_json/data505_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data505_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data506_gt.json b/json/gt_json/data506_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e1333246a908b5a8be3ce57778d2577990ad4cf3 --- /dev/null +++ b/json/gt_json/data506_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data506_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data507_gt.json b/json/gt_json/data507_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2f2370389fa4e2b093a90dc45a3bc77dc90253ce --- /dev/null +++ b/json/gt_json/data507_gt.json @@ -0,0 +1,257 @@ +{ + "source_scene": "pre_dec_json\\data507_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 50, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": 0, + "label": "2" + }, + { + "vx": 100, + "ay": 30, + "label": "2" + }, + { + "vx": 100, + "ay": 75, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data508_gt.json b/json/gt_json/data508_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3cbecde2e66a709212d4b5f1812808ca521da2b7 --- /dev/null +++ b/json/gt_json/data508_gt.json @@ -0,0 +1,17 @@ +{ + "source_scene": "pre_dec_json\\data508_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 2, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data509_gt.json b/json/gt_json/data509_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6ecbc6debc5a4356162082a2750867eb2897fac6 --- /dev/null +++ b/json/gt_json/data509_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data509_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "3" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data50_gt.json b/json/gt_json/data50_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b759ae1ab2f88e25f90419b60129bcbf58055333 --- /dev/null +++ b/json/gt_json/data50_gt.json @@ -0,0 +1,262 @@ +{ + "source_scene": "pre_dec_json\\data50_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 51, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data510_gt.json b/json/gt_json/data510_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e1ddb27628ac5672adbd583504cf905ff06e3360 --- /dev/null +++ b/json/gt_json/data510_gt.json @@ -0,0 +1,122 @@ +{ + "source_scene": "pre_dec_json\\data510_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 23, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data511_gt.json b/json/gt_json/data511_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..59001634822b544be7f6f1e58d8062c0cfa34d80 --- /dev/null +++ b/json/gt_json/data511_gt.json @@ -0,0 +1,262 @@ +{ + "source_scene": "pre_dec_json\\data511_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 51, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data512_gt.json b/json/gt_json/data512_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6012dbf500d55eb91840d16e0bcc5557e876bfcb --- /dev/null +++ b/json/gt_json/data512_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data512_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data513_gt.json b/json/gt_json/data513_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..048a20ca0a6bb8fbd261762ca21acdc572397849 --- /dev/null +++ b/json/gt_json/data513_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data513_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data514_gt.json b/json/gt_json/data514_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ce10f03f8b1a184a0914f77cc5edba5b0e211da2 --- /dev/null +++ b/json/gt_json/data514_gt.json @@ -0,0 +1,37 @@ +{ + "source_scene": "pre_dec_json\\data514_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 6, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data515_gt.json b/json/gt_json/data515_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..937619d120cf8b4a5eb1a6617bee2a6a6be76f77 --- /dev/null +++ b/json/gt_json/data515_gt.json @@ -0,0 +1,237 @@ +{ + "source_scene": "pre_dec_json\\data515_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 46, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data516_gt.json b/json/gt_json/data516_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..84bc95a12628ec412f0446acda8d6a7f65967c43 --- /dev/null +++ b/json/gt_json/data516_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data516_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data517_gt.json b/json/gt_json/data517_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c325514b58e1e7bb26b6c1c05d230736809cd05c --- /dev/null +++ b/json/gt_json/data517_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data517_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data518_gt.json b/json/gt_json/data518_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f22a01e62cf6b4efa21d4dac7f0db47633caa342 --- /dev/null +++ b/json/gt_json/data518_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data518_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data519_gt.json b/json/gt_json/data519_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..56c164d9c2b1d8480decfcffbf12b2de8f87627a --- /dev/null +++ b/json/gt_json/data519_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data519_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data51_gt.json b/json/gt_json/data51_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..bf3725d043bd85d8753705f0ed9e02f5b96611b7 --- /dev/null +++ b/json/gt_json/data51_gt.json @@ -0,0 +1,267 @@ +{ + "source_scene": "pre_dec_json\\data51_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 52, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "" + }, + { + "vx": 65, + "ay": 0, + "label": "" + }, + { + "vx": 65, + "ay": 30, + "label": "" + }, + { + "vx": 65, + "ay": 75, + "label": "" + }, + { + "vx": 65, + "ay": 150, + "label": "" + }, + { + "vx": 65, + "ay": 225, + "label": "" + }, + { + "vx": 100, + "ay": -300, + "label": "" + }, + { + "vx": 100, + "ay": -150, + "label": "" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data520_gt.json b/json/gt_json/data520_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..506e93a290285efde8753ff494c024536bcc7141 --- /dev/null +++ b/json/gt_json/data520_gt.json @@ -0,0 +1,157 @@ +{ + "source_scene": "pre_dec_json\\data520_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 30, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data521_gt.json b/json/gt_json/data521_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9904e3e8b2682f4931859aee24f08881e3de5b53 --- /dev/null +++ b/json/gt_json/data521_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data521_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data522_gt.json b/json/gt_json/data522_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d2b6309c4d87a3de68a4178507b2fed183845a92 --- /dev/null +++ b/json/gt_json/data522_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data522_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data523_gt.json b/json/gt_json/data523_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..30151fe2c85df19ad9ff752eeb92d43e8b0eb550 --- /dev/null +++ b/json/gt_json/data523_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data523_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": 225, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data524_gt.json b/json/gt_json/data524_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..eff839ebc48a0a91c7eb60d5d8c423e298d0d21a --- /dev/null +++ b/json/gt_json/data524_gt.json @@ -0,0 +1,202 @@ +{ + "source_scene": "pre_dec_json\\data524_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 39, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": 225, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": 225, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data525_gt.json b/json/gt_json/data525_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..48c0c270acc2e11dad9b07c89b1f57789a9efaef --- /dev/null +++ b/json/gt_json/data525_gt.json @@ -0,0 +1,137 @@ +{ + "source_scene": "pre_dec_json\\data525_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 26, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": 225, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data526_gt.json b/json/gt_json/data526_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8a292d78d602244336e32b22e29cad0865cd6415 --- /dev/null +++ b/json/gt_json/data526_gt.json @@ -0,0 +1,107 @@ +{ + "source_scene": "pre_dec_json\\data526_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 20, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data527_gt.json b/json/gt_json/data527_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5c6fb613c84150eb1d20cedf6e1b47f9cbbaa624 --- /dev/null +++ b/json/gt_json/data527_gt.json @@ -0,0 +1,167 @@ +{ + "source_scene": "pre_dec_json\\data527_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 32, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": 0, + "label": "2" + }, + { + "vx": 100, + "ay": 30, + "label": "2" + }, + { + "vx": 100, + "ay": 75, + "label": "2" + }, + { + "vx": 100, + "ay": 150, + "label": "2" + }, + { + "vx": 100, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data528_gt.json b/json/gt_json/data528_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..0eece300b7919daf498e1f6abda78a3758a61496 --- /dev/null +++ b/json/gt_json/data528_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data528_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data529_gt.json b/json/gt_json/data529_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e4e2eedaa7fe328070a18e0ca9eb760566e9e081 --- /dev/null +++ b/json/gt_json/data529_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data529_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data52_gt.json b/json/gt_json/data52_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e4b23de82e919b825ed9e3ac0bfa04ad284a2e35 --- /dev/null +++ b/json/gt_json/data52_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data52_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data530_gt.json b/json/gt_json/data530_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6684febfd89fa68f3dd16d8ff9f1f5df58dd99d4 --- /dev/null +++ b/json/gt_json/data530_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data530_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data531_gt.json b/json/gt_json/data531_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..9929945fbde4e343219b97a297e1ffa5acaacf8c --- /dev/null +++ b/json/gt_json/data531_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data531_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data532_gt.json b/json/gt_json/data532_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..207bb19772e12e3f4eede66a9933e2e9468011f3 --- /dev/null +++ b/json/gt_json/data532_gt.json @@ -0,0 +1,122 @@ +{ + "source_scene": "pre_dec_json\\data532_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 23, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data533_gt.json b/json/gt_json/data533_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2f74bfbd21f50785a471c16e704d61d87e791995 --- /dev/null +++ b/json/gt_json/data533_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data533_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data534_gt.json b/json/gt_json/data534_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3656777190533fac73084ff711c2650d0f79d3ce --- /dev/null +++ b/json/gt_json/data534_gt.json @@ -0,0 +1,137 @@ +{ + "source_scene": "pre_dec_json\\data534_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 26, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": 30, + "label": "2" + }, + { + "vx": -100, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data535_gt.json b/json/gt_json/data535_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..1f82ea41d8cb5e25fdebeca9ecabee162729a883 --- /dev/null +++ b/json/gt_json/data535_gt.json @@ -0,0 +1,242 @@ +{ + "source_scene": "pre_dec_json\\data535_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 47, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data536_gt.json b/json/gt_json/data536_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..dbf592fd2e8dafbdc13afc8fd69e141ef79f27dd --- /dev/null +++ b/json/gt_json/data536_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data536_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data537_gt.json b/json/gt_json/data537_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..102e0e87ea84c981bdd98cc2a6f68342527ee0af --- /dev/null +++ b/json/gt_json/data537_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data537_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data538_gt.json b/json/gt_json/data538_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..8fa8ab4389564aee3de1d71e0feb639088e8bdb2 --- /dev/null +++ b/json/gt_json/data538_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data538_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data539_gt.json b/json/gt_json/data539_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..48d46b7cc8486a0940d7f4b71279fca55fc8c184 --- /dev/null +++ b/json/gt_json/data539_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data539_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data53_gt.json b/json/gt_json/data53_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..33fe4360a6bd794d29d6eb725f78ebddc0d0a9c0 --- /dev/null +++ b/json/gt_json/data53_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data53_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data540_gt.json b/json/gt_json/data540_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..def4c6d46f498ee40822363e26d8240b800ee4e7 --- /dev/null +++ b/json/gt_json/data540_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data540_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data541_gt.json b/json/gt_json/data541_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3ec3f3a82f14bccb7a1766ebcb33c74685145515 --- /dev/null +++ b/json/gt_json/data541_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data541_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data542_gt.json b/json/gt_json/data542_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..85e4c8045969388a1bfb7f49d1981f661beee0cd --- /dev/null +++ b/json/gt_json/data542_gt.json @@ -0,0 +1,162 @@ +{ + "source_scene": "pre_dec_json\\data542_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 31, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data543_gt.json b/json/gt_json/data543_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2f08c368de336120006016657d881804a1db6399 --- /dev/null +++ b/json/gt_json/data543_gt.json @@ -0,0 +1,82 @@ +{ + "source_scene": "pre_dec_json\\data543_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 15, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data544_gt.json b/json/gt_json/data544_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..4820dab40de57d00a2abe46d7971cd9f587489cf --- /dev/null +++ b/json/gt_json/data544_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data544_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data545_gt.json b/json/gt_json/data545_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c0e108efa445c9513729e37e58e00765198df224 --- /dev/null +++ b/json/gt_json/data545_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data545_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data546_gt.json b/json/gt_json/data546_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ab2894deb94ffb3dc219174c78585bcae65c87c9 --- /dev/null +++ b/json/gt_json/data546_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data546_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data547_gt.json b/json/gt_json/data547_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e3fa39253d361616f7fd6c861b89b1c2812032bc --- /dev/null +++ b/json/gt_json/data547_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data547_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data548_gt.json b/json/gt_json/data548_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..76c8a7ba22ef6f5d362a749af08e53b5a761974a --- /dev/null +++ b/json/gt_json/data548_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data548_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "1" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data549_gt.json b/json/gt_json/data549_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e44aea5b393f387dbb57cb34787f82f1cbba2a6d --- /dev/null +++ b/json/gt_json/data549_gt.json @@ -0,0 +1,172 @@ +{ + "source_scene": "pre_dec_json\\data549_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 33, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data54_gt.json b/json/gt_json/data54_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b1a4c6246bb0299f42f9f8ef1afcebf481401e8a --- /dev/null +++ b/json/gt_json/data54_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data54_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data550_gt.json b/json/gt_json/data550_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..befe956c620d63175045c32a2020dcba7577a835 --- /dev/null +++ b/json/gt_json/data550_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data550_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data55_gt.json b/json/gt_json/data55_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d1752c1ed3fbe1ab3963f98f52edf5fa1656407c --- /dev/null +++ b/json/gt_json/data55_gt.json @@ -0,0 +1,112 @@ +{ + "source_scene": "pre_dec_json\\data55_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 21, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data56_gt.json b/json/gt_json/data56_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ef0c12e2956d9b9ab8579bd2a64d35d56df09fdf --- /dev/null +++ b/json/gt_json/data56_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data56_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data57_gt.json b/json/gt_json/data57_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..cc7335a6ba8f00b75048de538dab74bdc9e772a9 --- /dev/null +++ b/json/gt_json/data57_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data57_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data58_gt.json b/json/gt_json/data58_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3174f944ae2c9f5f251acd129749d5df59b161e7 --- /dev/null +++ b/json/gt_json/data58_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data58_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data59_gt.json b/json/gt_json/data59_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..39f95e39912a88ae507964484d01dd24d0d68eea --- /dev/null +++ b/json/gt_json/data59_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data59_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data5_gt.json b/json/gt_json/data5_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..5a7df294dc80c828fc8d1d313cab05872558bc7f --- /dev/null +++ b/json/gt_json/data5_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data5_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data60_gt.json b/json/gt_json/data60_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b58a497938d01156f61014d893ee2f5543ae12e5 --- /dev/null +++ b/json/gt_json/data60_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data60_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data61_gt.json b/json/gt_json/data61_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..de5e28a31be798223190321db565c77bd261d5c6 --- /dev/null +++ b/json/gt_json/data61_gt.json @@ -0,0 +1,147 @@ +{ + "source_scene": "pre_dec_json\\data61_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 28, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data62_gt.json b/json/gt_json/data62_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..3b9fd01068d5c0f5cfc352c61e30ebe0e1df08f3 --- /dev/null +++ b/json/gt_json/data62_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data62_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data63_gt.json b/json/gt_json/data63_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..539d0e194bb80dc9403976d03ea2cbea6d83ea04 --- /dev/null +++ b/json/gt_json/data63_gt.json @@ -0,0 +1,227 @@ +{ + "source_scene": "pre_dec_json\\data63_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 44, + "valid_controls": [ + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": 100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": 30, + "label": "4" + }, + { + "vx": 100, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": 225, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data64_gt.json b/json/gt_json/data64_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e1b157702f5eed519efb9b8e25947f0dc79aa9c6 --- /dev/null +++ b/json/gt_json/data64_gt.json @@ -0,0 +1,62 @@ +{ + "source_scene": "pre_dec_json\\data64_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 11, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data65_gt.json b/json/gt_json/data65_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..299041f7e0f054ec07dfe2025589a000a26c13f6 --- /dev/null +++ b/json/gt_json/data65_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data65_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data66_gt.json b/json/gt_json/data66_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..975983a5d53907b9e6a8d9c5d48c4ecd6effc82e --- /dev/null +++ b/json/gt_json/data66_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data66_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data67_gt.json b/json/gt_json/data67_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ea22a9e98346400ad3d89ef21991e7de807617b3 --- /dev/null +++ b/json/gt_json/data67_gt.json @@ -0,0 +1,47 @@ +{ + "source_scene": "pre_dec_json\\data67_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 8, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data68_gt.json b/json/gt_json/data68_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..38c5a4adabbbc1cd7057e266c276ac3999c62bb0 --- /dev/null +++ b/json/gt_json/data68_gt.json @@ -0,0 +1,197 @@ +{ + "source_scene": "pre_dec_json\\data68_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 38, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data69_gt.json b/json/gt_json/data69_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d19f44316d115b73e24420a3a52fc905ca7cf5e9 --- /dev/null +++ b/json/gt_json/data69_gt.json @@ -0,0 +1,112 @@ +{ + "source_scene": "pre_dec_json\\data69_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 21, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data6_gt.json b/json/gt_json/data6_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..7db279f0e636f51c2c5280c9bab7c4dc01a8b9ff --- /dev/null +++ b/json/gt_json/data6_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data6_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data70_gt.json b/json/gt_json/data70_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2680e0dabdb3280e4b1fae9382f350a30ae69055 --- /dev/null +++ b/json/gt_json/data70_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data70_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data71_gt.json b/json/gt_json/data71_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..98bcefad9a2f528737b00b77b901389db249e191 --- /dev/null +++ b/json/gt_json/data71_gt.json @@ -0,0 +1,92 @@ +{ + "source_scene": "pre_dec_json\\data71_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 17, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data72_gt.json b/json/gt_json/data72_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..cd411ca51ec639bf35da705b9cddb3188d6bcecd --- /dev/null +++ b/json/gt_json/data72_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data72_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data73_gt.json b/json/gt_json/data73_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c6198ceee4002591aefed9221c274b4a2881ab41 --- /dev/null +++ b/json/gt_json/data73_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data73_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data74_gt.json b/json/gt_json/data74_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..58a14073176cea41b47d70207359184c495529a4 --- /dev/null +++ b/json/gt_json/data74_gt.json @@ -0,0 +1,127 @@ +{ + "source_scene": "pre_dec_json\\data74_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 24, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data75_gt.json b/json/gt_json/data75_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ec9fd9bac804fdf2333c2437609d74526b72cef0 --- /dev/null +++ b/json/gt_json/data75_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data75_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 0, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data76_gt.json b/json/gt_json/data76_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b78e1bcf4e74c4a3d9bc87220c7715974073e276 --- /dev/null +++ b/json/gt_json/data76_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data76_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data77_gt.json b/json/gt_json/data77_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..964b28691c8f55f917c6eda0e57453bd690193a5 --- /dev/null +++ b/json/gt_json/data77_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data77_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data78_gt.json b/json/gt_json/data78_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c8477c30bfcea9f1028881ece9300f9daceb7a26 --- /dev/null +++ b/json/gt_json/data78_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data78_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data79_gt.json b/json/gt_json/data79_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..723d9724992aa0b910f52e757b3f4c49c8982a6d --- /dev/null +++ b/json/gt_json/data79_gt.json @@ -0,0 +1,312 @@ +{ + "source_scene": "pre_dec_json\\data79_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 61, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "2" + }, + { + "vx": -100, + "ay": 0, + "label": "2" + }, + { + "vx": -100, + "ay": 30, + "label": "2" + }, + { + "vx": -100, + "ay": 75, + "label": "2" + }, + { + "vx": -100, + "ay": 150, + "label": "2" + }, + { + "vx": -100, + "ay": 225, + "label": "2" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "2" + }, + { + "vx": -65, + "ay": 225, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": 225, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": 225, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": 0, + "label": "2" + }, + { + "vx": 100, + "ay": 30, + "label": "2" + }, + { + "vx": 100, + "ay": 75, + "label": "2" + }, + { + "vx": 100, + "ay": 150, + "label": "2" + }, + { + "vx": 100, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data7_gt.json b/json/gt_json/data7_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2e9684bec6c9b23f1b9694ba471069bcca133ce1 --- /dev/null +++ b/json/gt_json/data7_gt.json @@ -0,0 +1,107 @@ +{ + "source_scene": "pre_dec_json\\data7_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 20, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data80_gt.json b/json/gt_json/data80_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..a818993dc713d743aacaaea4ef8e89c449e10017 --- /dev/null +++ b/json/gt_json/data80_gt.json @@ -0,0 +1,67 @@ +{ + "source_scene": "pre_dec_json\\data80_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 12, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data81_gt.json b/json/gt_json/data81_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b2672a1c9a2c2e6d54111fdf9d9982136e6dcea6 --- /dev/null +++ b/json/gt_json/data81_gt.json @@ -0,0 +1,52 @@ +{ + "source_scene": "pre_dec_json\\data81_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 9, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data82_gt.json b/json/gt_json/data82_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f8b79342f138c91fe2bb859ce489034e054eb15d --- /dev/null +++ b/json/gt_json/data82_gt.json @@ -0,0 +1,32 @@ +{ + "source_scene": "pre_dec_json\\data82_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 5, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data83_gt.json b/json/gt_json/data83_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..368f22393a06b4759f6e558cc29a6636372b255b --- /dev/null +++ b/json/gt_json/data83_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data83_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data84_gt.json b/json/gt_json/data84_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..ed62cb5731e4b2a612d1a71a36a41cf0f58da5ff --- /dev/null +++ b/json/gt_json/data84_gt.json @@ -0,0 +1,227 @@ +{ + "source_scene": "pre_dec_json\\data84_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 44, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": 150, + "label": "4" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 0, + "ay": 225, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data85_gt.json b/json/gt_json/data85_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d1f73dd564ce9d87d45d25e9cca4fdf44d808057 --- /dev/null +++ b/json/gt_json/data85_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data85_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": 150, + "label": "2" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data86_gt.json b/json/gt_json/data86_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..6f34fdcdaf2ee6e2dab4516cc0671ad7938fdf74 --- /dev/null +++ b/json/gt_json/data86_gt.json @@ -0,0 +1,122 @@ +{ + "source_scene": "pre_dec_json\\data86_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 23, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data87_gt.json b/json/gt_json/data87_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..eab82c8d4a32bccc52c3476a81b1a4539103cfda --- /dev/null +++ b/json/gt_json/data87_gt.json @@ -0,0 +1,117 @@ +{ + "source_scene": "pre_dec_json\\data87_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 22, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data88_gt.json b/json/gt_json/data88_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..29a9a91eb446047f51103724931879975a443d5f --- /dev/null +++ b/json/gt_json/data88_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data88_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data89_gt.json b/json/gt_json/data89_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..87ec9368c528616685ca9587f5b8a10c6d141b30 --- /dev/null +++ b/json/gt_json/data89_gt.json @@ -0,0 +1,57 @@ +{ + "source_scene": "pre_dec_json\\data89_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 10, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data8_gt.json b/json/gt_json/data8_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..4e0b54e6f96e59ba342af40feca24a008169f07e --- /dev/null +++ b/json/gt_json/data8_gt.json @@ -0,0 +1,102 @@ +{ + "source_scene": "pre_dec_json\\data8_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 19, + "valid_controls": [ + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data90_gt.json b/json/gt_json/data90_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..78f2506efde398f70046c52615f02c94044b5ef1 --- /dev/null +++ b/json/gt_json/data90_gt.json @@ -0,0 +1,167 @@ +{ + "source_scene": "pre_dec_json\\data90_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 32, + "valid_controls": [ + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "2" + }, + { + "vx": 35, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": 30, + "label": "2" + }, + { + "vx": 35, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "2" + }, + { + "vx": 65, + "ay": -30, + "label": "2" + }, + { + "vx": 65, + "ay": 0, + "label": "2" + }, + { + "vx": 65, + "ay": 30, + "label": "2" + }, + { + "vx": 65, + "ay": 75, + "label": "2" + }, + { + "vx": 65, + "ay": 150, + "label": "2" + }, + { + "vx": 65, + "ay": 225, + "label": "2" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + }, + { + "vx": 100, + "ay": -30, + "label": "2" + }, + { + "vx": 100, + "ay": 0, + "label": "2" + }, + { + "vx": 100, + "ay": 30, + "label": "2" + }, + { + "vx": 100, + "ay": 75, + "label": "2" + }, + { + "vx": 100, + "ay": 150, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data91_gt.json b/json/gt_json/data91_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c066c8455e1e6cfd0c8a2be028b82cb8ea9a1ff8 --- /dev/null +++ b/json/gt_json/data91_gt.json @@ -0,0 +1,132 @@ +{ + "source_scene": "pre_dec_json\\data91_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 25, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 35, + "ay": -75, + "label": "2" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 35, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": 225, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 65, + "ay": 225, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data92_gt.json b/json/gt_json/data92_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..17e9da1e116a3ff40448f380961c6ca48c49c369 --- /dev/null +++ b/json/gt_json/data92_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data92_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data93_gt.json b/json/gt_json/data93_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..c97e6dea0013ac25e4289c3f8e39c42adb57de10 --- /dev/null +++ b/json/gt_json/data93_gt.json @@ -0,0 +1,27 @@ +{ + "source_scene": "pre_dec_json\\data93_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 4, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data94_gt.json b/json/gt_json/data94_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..e56fe1292ecc594ff7190f7affbf7b51c60c0044 --- /dev/null +++ b/json/gt_json/data94_gt.json @@ -0,0 +1,167 @@ +{ + "source_scene": "pre_dec_json\\data94_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 32, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -30, + "label": "4" + }, + { + "vx": -65, + "ay": 0, + "label": "4" + }, + { + "vx": -65, + "ay": 30, + "label": "4" + }, + { + "vx": -65, + "ay": 75, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -75, + "label": "4" + }, + { + "vx": -35, + "ay": -30, + "label": "4" + }, + { + "vx": -35, + "ay": 0, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": 150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data95_gt.json b/json/gt_json/data95_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..f01f6ddd3c9686c77c94af043eeb748babcec152 --- /dev/null +++ b/json/gt_json/data95_gt.json @@ -0,0 +1,142 @@ +{ + "source_scene": "pre_dec_json\\data95_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 27, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "1" + }, + { + "vx": 0, + "ay": 0, + "label": "2" + }, + { + "vx": 0, + "ay": 30, + "label": "4" + }, + { + "vx": 0, + "ay": 75, + "label": "4" + }, + { + "vx": 0, + "ay": 150, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 35, + "ay": -75, + "label": "4" + }, + { + "vx": 35, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": 0, + "label": "4" + }, + { + "vx": 35, + "ay": 30, + "label": "4" + }, + { + "vx": 35, + "ay": 75, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -75, + "label": "4" + }, + { + "vx": 65, + "ay": -30, + "label": "4" + }, + { + "vx": 65, + "ay": 0, + "label": "4" + }, + { + "vx": 65, + "ay": 30, + "label": "4" + }, + { + "vx": 65, + "ay": 75, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data96_gt.json b/json/gt_json/data96_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..aa2202989e2cf8ad8ac7307e4db68c17d929ff52 --- /dev/null +++ b/json/gt_json/data96_gt.json @@ -0,0 +1,72 @@ +{ + "source_scene": "pre_dec_json\\data96_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 13, + "valid_controls": [ + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "1" + }, + { + "vx": 0, + "ay": -30, + "label": "4" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data97_gt.json b/json/gt_json/data97_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..2d421f853533eb3a03875e43af6aeaa3d73ccec2 --- /dev/null +++ b/json/gt_json/data97_gt.json @@ -0,0 +1,177 @@ +{ + "source_scene": "pre_dec_json\\data97_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 34, + "valid_controls": [ + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -100, + "ay": -30, + "label": "4" + }, + { + "vx": -100, + "ay": 0, + "label": "4" + }, + { + "vx": -100, + "ay": 30, + "label": "4" + }, + { + "vx": -100, + "ay": 75, + "label": "4" + }, + { + "vx": -100, + "ay": 150, + "label": "4" + }, + { + "vx": -100, + "ay": 225, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -75, + "label": "2" + }, + { + "vx": -65, + "ay": -30, + "label": "2" + }, + { + "vx": -65, + "ay": 0, + "label": "2" + }, + { + "vx": -65, + "ay": 30, + "label": "2" + }, + { + "vx": -65, + "ay": 75, + "label": "2" + }, + { + "vx": -65, + "ay": 150, + "label": "4" + }, + { + "vx": -65, + "ay": 225, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": -35, + "ay": -75, + "label": "2" + }, + { + "vx": -35, + "ay": -30, + "label": "2" + }, + { + "vx": -35, + "ay": 0, + "label": "2" + }, + { + "vx": -35, + "ay": 30, + "label": "2" + }, + { + "vx": -35, + "ay": 75, + "label": "2" + }, + { + "vx": -35, + "ay": 150, + "label": "2" + }, + { + "vx": -35, + "ay": 225, + "label": "4" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -75, + "label": "2" + }, + { + "vx": 0, + "ay": -30, + "label": "2" + }, + { + "vx": 0, + "ay": 0, + "label": "1" + }, + { + "vx": 0, + "ay": 30, + "label": "2" + }, + { + "vx": 0, + "ay": 75, + "label": "2" + }, + { + "vx": 0, + "ay": 150, + "label": "2" + }, + { + "vx": 0, + "ay": 225, + "label": "2" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data98_gt.json b/json/gt_json/data98_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..d6b63f3e09e71cd7668b7799eedaf2b1f7aae32e --- /dev/null +++ b/json/gt_json/data98_gt.json @@ -0,0 +1,87 @@ +{ + "source_scene": "pre_dec_json\\data98_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 16, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -100, + "ay": -75, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -75, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data99_gt.json b/json/gt_json/data99_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..fa9d0c99292ad0c841cab341e3554c635d32cfbb --- /dev/null +++ b/json/gt_json/data99_gt.json @@ -0,0 +1,77 @@ +{ + "source_scene": "pre_dec_json\\data99_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 14, + "valid_controls": [ + { + "vx": -100, + "ay": -300, + "label": "4" + }, + { + "vx": -100, + "ay": -150, + "label": "4" + }, + { + "vx": -65, + "ay": -300, + "label": "4" + }, + { + "vx": -65, + "ay": -150, + "label": "4" + }, + { + "vx": -35, + "ay": -300, + "label": "4" + }, + { + "vx": -35, + "ay": -150, + "label": "2" + }, + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "2" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + }, + { + "vx": 100, + "ay": -150, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/gt_json/data9_gt.json b/json/gt_json/data9_gt.json new file mode 100644 index 0000000000000000000000000000000000000000..b4470d97300f91e7972a35ae26829e49531ef952 --- /dev/null +++ b/json/gt_json/data9_gt.json @@ -0,0 +1,42 @@ +{ + "source_scene": "pre_dec_json\\data9_aligned.json", + "num_total_controls": 63, + "num_valid_controls": 7, + "valid_controls": [ + { + "vx": 0, + "ay": -300, + "label": "2" + }, + { + "vx": 0, + "ay": -150, + "label": "1" + }, + { + "vx": 35, + "ay": -300, + "label": "4" + }, + { + "vx": 35, + "ay": -150, + "label": "4" + }, + { + "vx": 65, + "ay": -300, + "label": "4" + }, + { + "vx": 65, + "ay": -150, + "label": "4" + }, + { + "vx": 100, + "ay": -300, + "label": "4" + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data100_aligned.json b/json/pre_dec_json/data100_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..258c1699c5d342f123fcf91e913f0d79509b7842 --- /dev/null +++ b/json/pre_dec_json/data100_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 495, + "y": 940, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 895, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 202, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 550, + "y": 756, + "width": 126, + "length": 42 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data101_aligned.json b/json/pre_dec_json/data101_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..aed79cff762b54b335d02359616c3f1e3bf589ab --- /dev/null +++ b/json/pre_dec_json/data101_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 503, + "y": 744, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data102_aligned.json b/json/pre_dec_json/data102_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5f0de975363245720ebd5551f215308d33f01d33 --- /dev/null +++ b/json/pre_dec_json/data102_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data103_aligned.json b/json/pre_dec_json/data103_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..865d367a72d0b0809b88b88b2fa304b8e5e48a8f --- /dev/null +++ b/json/pre_dec_json/data103_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 163, + "y": 1445, + "size": "Small", + "vx": 0, + "vy": -416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 867, + "y": 1420, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 645, + "width": 400, + "length": 1300 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data104_aligned.json b/json/pre_dec_json/data104_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..94a7b03f00166daf915ac69d62f59d8a986d61dc --- /dev/null +++ b/json/pre_dec_json/data104_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 824, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 105, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 415, + "y": 1071, + "width": 397, + "length": 136 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data105_aligned.json b/json/pre_dec_json/data105_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4580a9819f7d1a1c89e8291080ac0d876b656f91 --- /dev/null +++ b/json/pre_dec_json/data105_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 586, + "y": 1287, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 343, + "y": 1158, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 440, + "y": 596, + "width": 403, + "length": 394 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data106_aligned.json b/json/pre_dec_json/data106_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ee4ed59676a686549874098449c532a2b1921e37 --- /dev/null +++ b/json/pre_dec_json/data106_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 586, + "y": 1287, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 343, + "y": 1158, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 879, + "y": 1158, + "size": "Big", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 894, + "y": 458, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data107_aligned.json b/json/pre_dec_json/data107_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f3c7b1b78229facd1f56a7550316e22fac0339fe --- /dev/null +++ b/json/pre_dec_json/data107_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 903, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 507, + "y": 796, + "width": 568, + "length": 89 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data108_aligned.json b/json/pre_dec_json/data108_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b57ca9b6cffc74d6f6ece3bd0140f36ce447b6e8 --- /dev/null +++ b/json/pre_dec_json/data108_aligned.json @@ -0,0 +1,111 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 276, + "y": 514, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 288, + "y": 877, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 527, + "y": 1282, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 793, + "y": 580, + "size": "Nm", + "vx": 0, + "vy": -50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 455, + "y": 756, + "size": "Nm", + "vx": 0, + "vy": -50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "0", + "x": 539, + "y": 763, + "size": "Nm", + "vx": 0, + "vy": -50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_7", + "type": "vehicle", + "toward": "0", + "x": 622, + "y": 753, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 1597, + "width": 200, + "length": 800 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data109_aligned.json b/json/pre_dec_json/data109_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2700f8d0774e0a71972af7f8948435fc6b4ad807 --- /dev/null +++ b/json/pre_dec_json/data109_aligned.json @@ -0,0 +1,99 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 513, + "y": 919, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 723, + "y": 740, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 711, + "y": 1296, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 945, + "y": 734, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 507, + "y": 627, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 563, + "y": 625, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 624, + "y": 622, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 198, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data10_aligned.json b/json/pre_dec_json/data10_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..02e9c740a16a0a1f37bc256e5899dcf8d02aa659 --- /dev/null +++ b/json/pre_dec_json/data10_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 701, + "y": 964, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 705, + "y": 1307, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 985, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 105, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 500, + "y": 689, + "vx": 0, + "vy": 0 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data110_aligned.json b/json/pre_dec_json/data110_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6c631d8294f098b6231cd86a8677bd2b92109989 --- /dev/null +++ b/json/pre_dec_json/data110_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 193, + "y": 1226, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 492, + "y": 1216, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 371, + "y": 957, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 411, + "y": 1139, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 820, + "y": 992, + "width": 370, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 439, + "y": 759, + "width": 30, + "length": 30 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data111_aligned.json b/json/pre_dec_json/data111_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7384ddc48757da70142856ef8de8858ea28f8806 --- /dev/null +++ b/json/pre_dec_json/data111_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 400, + "y": 1068, + "width": 374, + "length": 96 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data112_aligned.json b/json/pre_dec_json/data112_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..17139db64f4b60298b842bc8980518866e8bc8b8 --- /dev/null +++ b/json/pre_dec_json/data112_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 649, + "y": 1367, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 844, + "y": 1597, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 184, + "y": 979, + "width": 370, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data113_aligned.json b/json/pre_dec_json/data113_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ccdcec374b7e95afb2908f4a10592a775541754a --- /dev/null +++ b/json/pre_dec_json/data113_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 503, + "y": 1362, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data114_aligned.json b/json/pre_dec_json/data114_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f4739e4ebad4b1d2beacb0a17db34739ae435139 --- /dev/null +++ b/json/pre_dec_json/data114_aligned.json @@ -0,0 +1,91 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 503, + "y": 1338, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 708, + "y": 1375, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 275, + "y": 1093, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 374, + "y": 1092, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 699, + "y": 1090, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 511, + "y": 1173, + "width": 521, + "length": 69 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data115_aligned.json b/json/pre_dec_json/data115_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8b55555304f0339e3eda922380f874f7ed40817c --- /dev/null +++ b/json/pre_dec_json/data115_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 327, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 848, + "y": 993, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 452, + "y": 851, + "width": 460, + "length": 133 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data116_aligned.json b/json/pre_dec_json/data116_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..42a5ae5ead3d0d5e0289fd7329aa0f4fddcfaffd --- /dev/null +++ b/json/pre_dec_json/data116_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 405, + "y": 1031, + "width": 358, + "length": 160 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data117_aligned.json b/json/pre_dec_json/data117_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fafb1a0540eadabceaaf865329aa0e1893952f78 --- /dev/null +++ b/json/pre_dec_json/data117_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 496, + "y": 1130, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 549, + "y": 682, + "vx": -50, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 989, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 288, + "y": 380, + "width": 90, + "length": 230 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data118_aligned.json b/json/pre_dec_json/data118_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..bc6197aa70b0c9969605c769c5677336409ebc46 --- /dev/null +++ b/json/pre_dec_json/data118_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 669, + "y": 402, + "size": "Small", + "vx": -85, + "vy": 280, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 509, + "y": 1255, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 995, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data119_aligned.json b/json/pre_dec_json/data119_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8f57a8237f63e4d4489b46c29f231f9ae8a287a0 --- /dev/null +++ b/json/pre_dec_json/data119_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 580, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 199, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 897, + "y": 995, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data11_aligned.json b/json/pre_dec_json/data11_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2ebc4b7b02abddeb35674e9eade2da977e02994b --- /dev/null +++ b/json/pre_dec_json/data11_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 750, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 990, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data120_aligned.json b/json/pre_dec_json/data120_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3b02d60be8251eaa499de2417dda8f3774946c83 --- /dev/null +++ b/json/pre_dec_json/data120_aligned.json @@ -0,0 +1,91 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 506, + "y": 903, + "size": "Small", + "vx": 0, + "vy": 50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 426, + "y": 1195, + "size": "Small", + "vx": 20, + "vy": 50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 325, + "y": 857, + "size": "Small", + "vx": 20, + "vy": 50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 882, + "y": 626, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 243, + "width": 400, + "length": 500 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 799, + "y": 1500, + "width": 400, + "length": 1000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data121_aligned.json b/json/pre_dec_json/data121_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..865d035f266c7003e99d80e42a06fbda78588297 --- /dev/null +++ b/json/pre_dec_json/data121_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 330, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 541, + "size": "Small", + "vx": 0, + "vy": 50, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 699, + "y": 762, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 198, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data122_aligned.json b/json/pre_dec_json/data122_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1affb5baf2bc173d51f377b88e6b2887efd5ff01 --- /dev/null +++ b/json/pre_dec_json/data122_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 290, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 944, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 98, + "y": 392, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 365, + "y": 529, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 426, + "y": 555, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 506, + "y": 522, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 968, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data123_aligned.json b/json/pre_dec_json/data123_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..337ffb0227f7a8db1ffbf859017c0394b1db5ed0 --- /dev/null +++ b/json/pre_dec_json/data123_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 156, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 276, + "y": 1081, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 811, + "y": 993, + "width": 380, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 566, + "y": 600, + "width": 105, + "length": 464 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data124_aligned.json b/json/pre_dec_json/data124_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3d883ba24ba8175215f8db32f30bce46610879aa --- /dev/null +++ b/json/pre_dec_json/data124_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 483, + "y": 925, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data125_aligned.json b/json/pre_dec_json/data125_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8f125a6e89430b04e2107030aab203f48c1059f5 --- /dev/null +++ b/json/pre_dec_json/data125_aligned.json @@ -0,0 +1,95 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 506, + "y": 582, + "size": "Small", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 279, + "y": 877, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 294, + "y": 1332, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 717, + "y": 596, + "size": "Nm", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 725, + "y": 936, + "size": "Nm", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 96, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data126_aligned.json b/json/pre_dec_json/data126_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2e3a7edcb8cc3850cf24113509a44181d2575b96 --- /dev/null +++ b/json/pre_dec_json/data126_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 492, + "y": 1090, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 680, + "y": 836, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 939, + "y": 759, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 554, + "y": 556, + "width": 262, + "length": 214 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data127_aligned.json b/json/pre_dec_json/data127_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f854f15b8710c1658942ecf7c76195be622fc7f4 --- /dev/null +++ b/json/pre_dec_json/data127_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 512, + "y": 762, + "size": "Small", + "vx": 30, + "vy": 109, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 728, + "y": 1352, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 509, + "y": 1307, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 927, + "y": 1081, + "size": "Nm", + "vx": 0, + "vy": 208, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 199, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data128_aligned.json b/json/pre_dec_json/data128_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0c989cc18ef72ce2664b8b85fabb76310327f8a8 --- /dev/null +++ b/json/pre_dec_json/data128_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 1007, + "size": "Small", + "vx": 0, + "vy": 108, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 199, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 585, + "y": 729, + "width": 306, + "length": 121 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data129_aligned.json b/json/pre_dec_json/data129_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1c4ca32c9a26f8ec5857be2623303febbcb79dd2 --- /dev/null +++ b/json/pre_dec_json/data129_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 1650, + "width": 200, + "length": 700 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 898, + "y": 1647, + "width": 200, + "length": 700 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 506, + "y": 1650, + "width": 200, + "length": 700 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 510, + "y": 780, + "width": 356, + "length": 105 + }, + { + "id": "obs_5", + "type": "obstacle", + "x": 515, + "y": 587, + "width": 432, + "length": 95 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data12_aligned.json b/json/pre_dec_json/data12_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a5e9b366f5ec7b65777e2390c8f83cebf2f6feb9 --- /dev/null +++ b/json/pre_dec_json/data12_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 218, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 293, + "y": 1079, + "size": "Small", + "vx": 0, + "vy": -565, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 487, + "y": 877, + "size": "Small", + "vx": 0, + "vy": -555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 794, + "y": 1176, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 107, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data130_aligned.json b/json/pre_dec_json/data130_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..42ac6cb38bf71aeaa01accbc447ad170ba31f3a1 --- /dev/null +++ b/json/pre_dec_json/data130_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 519, + "y": 1421, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 321, + "y": 898, + "size": "Big", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 502, + "y": 671, + "width": 39, + "length": 45 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data131_aligned.json b/json/pre_dec_json/data131_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..098a529e97458520f49fe9f92112faef4b41f9ac --- /dev/null +++ b/json/pre_dec_json/data131_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 574, + "y": 1143, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 408, + "y": 1405, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 413, + "y": 825, + "width": 729, + "length": 63 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data132_aligned.json b/json/pre_dec_json/data132_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a82f9b540118b340e2d584fde84f28c581182828 --- /dev/null +++ b/json/pre_dec_json/data132_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 400, + "y": 1040, + "width": 359, + "length": 108 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data133_aligned.json b/json/pre_dec_json/data133_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6d573fd4eed4933947f743859542434f560bd7bd --- /dev/null +++ b/json/pre_dec_json/data133_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 293, + "y": 1248, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 464, + "y": 1459, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 575, + "y": 603, + "width": 123, + "length": 399 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data134_aligned.json b/json/pre_dec_json/data134_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..58c5abcd96225b97274b397093329a52766426f8 --- /dev/null +++ b/json/pre_dec_json/data134_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 650, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 307, + "y": 435, + "size": "Small", + "vx": 0, + "vy": 600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 719, + "y": 1150, + "size": "Small", + "vx": 0, + "vy": 600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data135_aligned.json b/json/pre_dec_json/data135_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..85e115fb8d37c7bf977f9d9151aecbbda77f7e72 --- /dev/null +++ b/json/pre_dec_json/data135_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 488, + "y": 969, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 168, + "y": 974, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data136_aligned.json b/json/pre_dec_json/data136_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..53fd02a298d7fadba53967e0740671a43d0b1ae1 --- /dev/null +++ b/json/pre_dec_json/data136_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 376, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 601, + "y": 1086, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1530, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 151, + "y": 993, + "width": 300, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 547, + "y": 750, + "width": 472, + "length": 69 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data137_aligned.json b/json/pre_dec_json/data137_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6009716d5a0754ea1dee0fc522aa29adcc82c7b9 --- /dev/null +++ b/json/pre_dec_json/data137_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 646, + "y": 1190, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1530, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 151, + "y": 993, + "width": 300, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 481, + "y": 590, + "width": 243, + "length": 276 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data138_aligned.json b/json/pre_dec_json/data138_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..45aab6732e3dbb48cd734f7f9990ef9f0579aed4 --- /dev/null +++ b/json/pre_dec_json/data138_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 509, + "y": 923, + "size": "Big", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 302, + "y": 475, + "size": "Small", + "vx": 0, + "vy": 210, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 859, + "y": 993, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 615, + "y": 571, + "width": 126, + "length": 216 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data139_aligned.json b/json/pre_dec_json/data139_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a2708929edda54111f0e61746f584954309da0da --- /dev/null +++ b/json/pre_dec_json/data139_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 284, + "y": 192, + "size": "Small", + "vx": 0, + "vy": 210, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 767, + "y": 585, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 376, + "y": 1062, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 499, + "y": 583, + "width": 131, + "length": 121 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data13_aligned.json b/json/pre_dec_json/data13_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..aefadb10bff2248241d67cd7629670ad1eabc407 --- /dev/null +++ b/json/pre_dec_json/data13_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 201, + "y": 994, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 797, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data140_aligned.json b/json/pre_dec_json/data140_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1bd231ffddba56c40a8da721cf60804cd384d46c --- /dev/null +++ b/json/pre_dec_json/data140_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 551, + "y": 998, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 859, + "y": 993, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data141_aligned.json b/json/pre_dec_json/data141_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..eda512a841db39816777fd8c9417d8bc0615e55e --- /dev/null +++ b/json/pre_dec_json/data141_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 501, + "y": 753, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 502, + "y": 1020, + "width": 104, + "length": 285 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data142_aligned.json b/json/pre_dec_json/data142_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9257eaf796bb9b4094b6d28b73e838a374c62831 --- /dev/null +++ b/json/pre_dec_json/data142_aligned.json @@ -0,0 +1,119 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 330, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 287, + "y": 175, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 562, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 950, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 311, + "y": 1349, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 470, + "y": 838, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "0", + "x": 619, + "y": 1024, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_7", + "type": "vehicle", + "toward": "0", + "x": 521, + "y": 1361, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 867, + "y": 800, + "width": 260, + "length": 800 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data143_aligned.json b/json/pre_dec_json/data143_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1db8a6b805fd4d93d6e3540660f22f37e9c5b675 --- /dev/null +++ b/json/pre_dec_json/data143_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 849, + "y": 987, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 148, + "y": 987, + "width": 300, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 500, + "y": 793, + "width": 381, + "length": 103 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data144_aligned.json b/json/pre_dec_json/data144_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ddf1f219713b85e33e1229201deddf31a74c5edc --- /dev/null +++ b/json/pre_dec_json/data144_aligned.json @@ -0,0 +1,103 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 380, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 492, + "y": 1209, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 168, + "y": 1182, + "size": "Small", + "vx": 0, + "vy": -480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 334, + "y": 1557, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 606, + "y": 969, + "vx": 0, + "vy": -20 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 526, + "y": 959, + "vx": 0, + "vy": -20 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 465, + "y": 894, + "vx": 0, + "vy": -20 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 378, + "y": 968, + "vx": 0, + "vy": -20 + }, + { + "id": "ped_5", + "type": "pedestrian", + "x": 308, + "y": 934, + "vx": 0, + "vy": -20 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data145_aligned.json b/json/pre_dec_json/data145_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e40ce897e41bc2b86b5d865d1ce6e8a0af92392c --- /dev/null +++ b/json/pre_dec_json/data145_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 424, + "y": 940, + "size": "Small", + "vx": 20, + "vy": 80, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 920, + "y": 680, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 770, + "y": 1341, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 526, + "y": 1524, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data146_aligned.json b/json/pre_dec_json/data146_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4201a08abcdc0d456905fbeee22a86c93a435422 --- /dev/null +++ b/json/pre_dec_json/data146_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 517, + "y": 1159, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 982, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 982, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data147_aligned.json b/json/pre_dec_json/data147_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..856926a293f6f5beda5bedfe47a80733f3058458 --- /dev/null +++ b/json/pre_dec_json/data147_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 446, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1098, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 302, + "y": 1587, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 981, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 291, + "y": 412, + "width": 199, + "length": 273 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data148_aligned.json b/json/pre_dec_json/data148_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ecce24838bf00138a0bca7c4748dd641f6416e13 --- /dev/null +++ b/json/pre_dec_json/data148_aligned.json @@ -0,0 +1,87 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 280, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 509, + "y": 543, + "size": "Small", + "vx": 0, + "vy": 20, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 308, + "y": 863, + "size": "Small", + "vx": 0, + "vy": -208, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 134, + "y": 865, + "size": "Small", + "vx": 0, + "vy": -208, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 317, + "y": 1205, + "size": "Small", + "vx": 0, + "vy": -208, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 128, + "y": 1213, + "size": "Small", + "vx": 0, + "vy": -208, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 827, + "y": 198, + "width": 340, + "length": 1200 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data149_aligned.json b/json/pre_dec_json/data149_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b168c01f92415129ca36c7f6102bbb7d19f2c90f --- /dev/null +++ b/json/pre_dec_json/data149_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_7", + "type": "obstacle", + "x": 900, + "y": 1000, + "width": 200, + "length": 2000 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 409, + "y": 1015, + "width": 761, + "length": 130 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 746, + "y": 853, + "width": 30, + "length": 30 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 645, + "y": 792, + "width": 30, + "length": 30 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 521, + "y": 735, + "width": 30, + "length": 30 + }, + { + "id": "obs_5", + "type": "obstacle", + "x": 87, + "y": 810, + "width": 30, + "length": 30 + }, + { + "id": "obs_6", + "type": "obstacle", + "x": 193, + "y": 763, + "width": 30, + "length": 30 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data14_aligned.json b/json/pre_dec_json/data14_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e3b416b9f8e8f422e1cf7705040555cd7d3e1678 --- /dev/null +++ b/json/pre_dec_json/data14_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 390, + "y": 1076, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 102, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 797, + "y": 991, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 531, + "y": 622, + "width": 118, + "length": 164 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data150_aligned.json b/json/pre_dec_json/data150_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5d6c53b12a19841468accc139617fa1b20aa7bce --- /dev/null +++ b/json/pre_dec_json/data150_aligned.json @@ -0,0 +1,99 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 433, + "y": 623, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 276, + "y": 650, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 118, + "y": 736, + "size": "Small", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 439, + "y": 1040, + "size": "Big", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 523, + "y": 704, + "vx": -50, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 566, + "y": 683, + "vx": -50, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 610, + "y": 664, + "vx": -50, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 826, + "y": 993, + "width": 360, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data151_aligned.json b/json/pre_dec_json/data151_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..72e3f622f193672cf4a316e8d406a4ce9aba49f7 --- /dev/null +++ b/json/pre_dec_json/data151_aligned.json @@ -0,0 +1,99 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 483, + "y": 1098, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 423, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 290, + "y": 1246, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 480, + "y": 1422, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 539, + "y": 800, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 571, + "y": 730, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data152_aligned.json b/json/pre_dec_json/data152_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..719881bb8173be6f5f43f8df27f0d86878e16c29 --- /dev/null +++ b/json/pre_dec_json/data152_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 562, + "y": 1367, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 444, + "y": 1555, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 821, + "y": 993, + "width": 350, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data153_aligned.json b/json/pre_dec_json/data153_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fddd41777360acd205ea8f9839933c6bb1f574cf --- /dev/null +++ b/json/pre_dec_json/data153_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 625, + "y": 945, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 848, + "y": 992, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 149, + "y": 993, + "width": 300, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 501, + "y": 665, + "width": 359, + "length": 66 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data154_aligned.json b/json/pre_dec_json/data154_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0eab701e1a6f646fa86651be83b47520d3dfa9c7 --- /dev/null +++ b/json/pre_dec_json/data154_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 814, + "y": 993, + "width": 370, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 114, + "y": 989, + "width": 230, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 458, + "y": 844, + "width": 409, + "length": 173 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 542, + "y": 750, + "width": 30, + "length": 30 + }, + { + "id": "obs_5", + "type": "obstacle", + "x": 584, + "y": 617, + "width": 30, + "length": 30 + }, + { + "id": "obs_6", + "type": "obstacle", + "x": 494, + "y": 574, + "width": 30, + "length": 30 + }, + { + "id": "obs_7", + "type": "obstacle", + "x": 594, + "y": 471, + "width": 30, + "length": 30 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data155_aligned.json b/json/pre_dec_json/data155_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..57c40b528e5898a5837871bd0c0f85565752b054 --- /dev/null +++ b/json/pre_dec_json/data155_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 370, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 398, + "y": 919, + "width": 379, + "length": 130 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data156_aligned.json b/json/pre_dec_json/data156_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..44a62a46ad86e4a9f4f7483357dee00271beb031 --- /dev/null +++ b/json/pre_dec_json/data156_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 849, + "y": 987, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 148, + "y": 987, + "width": 300, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 500, + "y": 793, + "width": 381, + "length": 103 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data157_aligned.json b/json/pre_dec_json/data157_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..01131be22fed486e40b9a9f0321dfd9a7bb16bf2 --- /dev/null +++ b/json/pre_dec_json/data157_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 1002, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 199, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data158_aligned.json b/json/pre_dec_json/data158_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..11ccb4770a3eb492bd667474f234591e8bb3df2b --- /dev/null +++ b/json/pre_dec_json/data158_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 571, + "y": 1593, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 853, + "y": 995, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 995, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data159_aligned.json b/json/pre_dec_json/data159_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..beeb08896fd7cf03ed8be662d22bb84fa6c86cd0 --- /dev/null +++ b/json/pre_dec_json/data159_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 474, + "y": 733, + "size": "Small", + "vx": 0, + "vy": 208, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 298, + "y": 846, + "size": "Small", + "vx": 0, + "vy": 560, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 987, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 96, + "y": 983, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data15_aligned.json b/json/pre_dec_json/data15_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f60c0cd093ec9c25688fba6d4432550e63be02c9 --- /dev/null +++ b/json/pre_dec_json/data15_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 289, + "y": 1096, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 548, + "y": 884, + "size": "Small", + "vx": -15, + "vy": 30, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 105, + "y": 991, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 892, + "y": 983, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data160_aligned.json b/json/pre_dec_json/data160_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ffc340279e9341ac00c61da96135c94989451ed5 --- /dev/null +++ b/json/pre_dec_json/data160_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 127, + "y": 1008, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 373, + "y": 1052, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 907, + "y": 992, + "width": 180, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 423, + "y": 1164, + "width": 761, + "length": 186 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data161_aligned.json b/json/pre_dec_json/data161_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2a1be068f53043a05040cb0c4317720934c9df0b --- /dev/null +++ b/json/pre_dec_json/data161_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 909, + "y": 992, + "width": 180, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 422, + "y": 989, + "width": 771, + "length": 163 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data162_aligned.json b/json/pre_dec_json/data162_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..18ee624009bbc6badb6f9d117ef3636232ca8c72 --- /dev/null +++ b/json/pre_dec_json/data162_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 483, + "y": 1013, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 225, + "y": 1004, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 589, + "y": 596, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 806, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 325, + "y": 860, + "width": 525, + "length": 54 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data163_aligned.json b/json/pre_dec_json/data163_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4e84334147250bc7368cabe17b0ee07b0318791d --- /dev/null +++ b/json/pre_dec_json/data163_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 489, + "y": 1367, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 686, + "y": 1090, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 636, + "y": 953, + "vx": 0, + "vy": -69 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 716, + "y": 950, + "vx": 0, + "vy": -69 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 802, + "y": 950, + "vx": 0, + "vy": -69 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 167, + "y": 993, + "width": 340, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 928, + "y": 993, + "width": 140, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data164_aligned.json b/json/pre_dec_json/data164_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5d82673b31b80517313f57fb926fbd5a01c8dab3 --- /dev/null +++ b/json/pre_dec_json/data164_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 506, + "y": 829, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 842, + "y": 992, + "width": 315, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 160, + "y": 1236, + "width": 315, + "length": 1600 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 619, + "y": 553, + "width": 30, + "length": 30 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 375, + "y": 407, + "width": 216, + "length": 207 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data165_aligned.json b/json/pre_dec_json/data165_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8e79bc5a89ce07ed60f98e1f52ee9ff26ca731a3 --- /dev/null +++ b/json/pre_dec_json/data165_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1420, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 113, + "y": 1267, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 720, + "y": 1066, + "size": "Nm", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 484, + "y": 689, + "width": 373, + "length": 251 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data166_aligned.json b/json/pre_dec_json/data166_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..d7ee069a60941b01b557355f0e58f700c7e30efd --- /dev/null +++ b/json/pre_dec_json/data166_aligned.json @@ -0,0 +1,87 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 109, + "y": 1222, + "size": "Big", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 729, + "y": 1087, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 722, + "y": 1512, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "1", + "x": 483, + "y": 1376, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 326, + "y": 1475, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data167_aligned.json b/json/pre_dec_json/data167_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1cfd0629d3332c7b304ccffa5278727c4da69d46 --- /dev/null +++ b/json/pre_dec_json/data167_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 485, + "y": 1641, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 693, + "y": 1425, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data168_aligned.json b/json/pre_dec_json/data168_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6973d157e1516df8776160a97084196bc81121ee --- /dev/null +++ b/json/pre_dec_json/data168_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 499, + "y": 1054, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data169_aligned.json b/json/pre_dec_json/data169_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..bec0f821c28428e50ea737bb4f2f97d690be49bd --- /dev/null +++ b/json/pre_dec_json/data169_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 320, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 503, + "y": 1307, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 926, + "y": 1302, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 197, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 469, + "y": 599, + "width": 104, + "length": 195 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data16_aligned.json b/json/pre_dec_json/data16_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3cfd299ef91b4fec9bf4dfe50d27d6805d3000ea --- /dev/null +++ b/json/pre_dec_json/data16_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 270, + "y": 855, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 983, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 408, + "y": 681, + "width": 358, + "length": 112 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data170_aligned.json b/json/pre_dec_json/data170_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f8512cf34358b2174bb1aaeee2643cfd868cfe68 --- /dev/null +++ b/json/pre_dec_json/data170_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 99, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 412, + "y": 733, + "width": 363, + "length": 202 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data171_aligned.json b/json/pre_dec_json/data171_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..87b44509e645a5f2909b68d936dea7d79f0641a0 --- /dev/null +++ b/json/pre_dec_json/data171_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 230, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 398, + "y": 627, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 402, + "y": 1485, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 150, + "y": 972, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 847, + "y": 972, + "width": 300, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 550, + "y": 431, + "width": 112, + "length": 108 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data172_aligned.json b/json/pre_dec_json/data172_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..219d009aa433a4e8dc4f3fe8412e074a0a3c25c2 --- /dev/null +++ b/json/pre_dec_json/data172_aligned.json @@ -0,0 +1,107 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 249, + "y": 1184, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 325, + "y": 1167, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 447, + "y": 1140, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 515, + "y": 1284, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_5", + "type": "pedestrian", + "x": 420, + "y": 1317, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_6", + "type": "pedestrian", + "x": 353, + "y": 1275, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_7", + "type": "pedestrian", + "x": 204, + "y": 1304, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_8", + "type": "pedestrian", + "x": 136, + "y": 1229, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_9", + "type": "pedestrian", + "x": 574, + "y": 1189, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 826, + "y": 992, + "width": 350, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 331, + "y": 852, + "width": 620, + "length": 104 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data173_aligned.json b/json/pre_dec_json/data173_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..509aced85777812b3ce1353d2bdfd5a507cd33c9 --- /dev/null +++ b/json/pre_dec_json/data173_aligned.json @@ -0,0 +1,171 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 280, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 739, + "y": 605, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 628, + "y": 918, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 702, + "y": 971, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 510, + "y": 972, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 556, + "y": 907, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "0", + "x": 370, + "y": 1009, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_7", + "type": "vehicle", + "toward": "0", + "x": 420, + "y": 922, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_8", + "type": "vehicle", + "toward": "0", + "x": 266, + "y": 954, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_9", + "type": "vehicle", + "toward": "0", + "x": 325, + "y": 894, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_10", + "type": "vehicle", + "toward": "0", + "x": 154, + "y": 1052, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_11", + "type": "vehicle", + "toward": "0", + "x": 216, + "y": 981, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_12", + "type": "vehicle", + "toward": "0", + "x": 86, + "y": 957, + "size": "Nm", + "vx": 0, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data174_aligned.json b/json/pre_dec_json/data174_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..00a6a9b8add7086d416709d9bbfc44dabddb83dc --- /dev/null +++ b/json/pre_dec_json/data174_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 823, + "y": 993, + "width": 350, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 434, + "y": 743, + "width": 339, + "length": 408 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data175_aligned.json b/json/pre_dec_json/data175_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..07d5918c57d5fc252d9ab265e1df321b38258fff --- /dev/null +++ b/json/pre_dec_json/data175_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 379, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 1151, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 698, + "y": 1176, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 601, + "y": 1494, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "1", + "x": 349, + "y": 1470, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data176_aligned.json b/json/pre_dec_json/data176_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4391cecbd1ab4f257b354ea70b2ccd0d30b5ae48 --- /dev/null +++ b/json/pre_dec_json/data176_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 760, + "y": 898, + "size": "Nm", + "vx": 0, + "vy": 189, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 456, + "y": 668, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 544, + "y": 635, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data177_aligned.json b/json/pre_dec_json/data177_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f84400390465c5c22d82990dd992695f454a7b63 --- /dev/null +++ b/json/pre_dec_json/data177_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 246, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 492, + "y": 819, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 296, + "y": 1142, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 691, + "y": 460, + "width": 282, + "length": 394 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data178_aligned.json b/json/pre_dec_json/data178_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..734a55bacd851e73272d65a80aab411e132abf3d --- /dev/null +++ b/json/pre_dec_json/data178_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 303, + "y": 613, + "width": 131, + "length": 52 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data179_aligned.json b/json/pre_dec_json/data179_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e5634c966bedf78523c9aa23bbe4801f71edae81 --- /dev/null +++ b/json/pre_dec_json/data179_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 330, + "y": 113, + "size": "Small", + "vx": 0, + "vy": -200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data17_aligned.json b/json/pre_dec_json/data17_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..284350e732bc1460928acfcf417d65c2ec064e97 --- /dev/null +++ b/json/pre_dec_json/data17_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 316, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 697, + "y": 496, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 785, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 1326, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 96, + "y": 983, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 970, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data180_aligned.json b/json/pre_dec_json/data180_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ad98e1528de54e82e7d099bc33fed8f67c7dfffb --- /dev/null +++ b/json/pre_dec_json/data180_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 803, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 516, + "y": 710, + "width": 135, + "length": 68 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data181_aligned.json b/json/pre_dec_json/data181_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..be344bfa290866c5084f7606a4d3f99278eb8436 --- /dev/null +++ b/json/pre_dec_json/data181_aligned.json @@ -0,0 +1,87 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 515, + "y": 1296, + "size": "Small", + "vx": 0, + "vy": 260, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 527, + "y": 972, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 303, + "y": 1205, + "size": "Small", + "vx": 35, + "vy": -360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 261, + "y": 931, + "size": "Small", + "vx": 35, + "vy": -360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 228, + "y": 620, + "size": "Small", + "vx": 35, + "vy": -360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 803, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data182_aligned.json b/json/pre_dec_json/data182_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e2c67aca876d598baba0d2541164b3bc9985257e --- /dev/null +++ b/json/pre_dec_json/data182_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 467, + "y": 1104, + "size": "Small", + "vx": -5, + "vy": 80, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 803, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data183_aligned.json b/json/pre_dec_json/data183_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6782eb74699755e0b4fd487172a6d73cd8cb09a3 --- /dev/null +++ b/json/pre_dec_json/data183_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 230, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 544, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 348, + "y": 989, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 502, + "y": 390, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 983, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data184_aligned.json b/json/pre_dec_json/data184_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e532db9a550676b9b500dcde8b37cb469f53a1ba --- /dev/null +++ b/json/pre_dec_json/data184_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 896, + "y": 990, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 651, + "y": 789, + "width": 219, + "length": 208 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data185_aligned.json b/json/pre_dec_json/data185_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..73d853d8c85e4e3ccd0382c505258ce686a9bb78 --- /dev/null +++ b/json/pre_dec_json/data185_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 987, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data186_aligned.json b/json/pre_dec_json/data186_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..584893f2c8af996be46c87f974ba56eae418135c --- /dev/null +++ b/json/pre_dec_json/data186_aligned.json @@ -0,0 +1,87 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 461, + "y": 1158, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 556, + "y": 1101, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 498, + "y": 1078, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 217, + "y": 1080, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 293, + "y": 1065, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_5", + "type": "pedestrian", + "x": 367, + "y": 1021, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_6", + "type": "pedestrian", + "x": 403, + "y": 1107, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 803, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data187_aligned.json b/json/pre_dec_json/data187_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8aa7205c93941acfabab6410e7ae1af8f48d5919 --- /dev/null +++ b/json/pre_dec_json/data187_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 346, + "y": 821, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 803, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data188_aligned.json b/json/pre_dec_json/data188_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fa018d55fca6e23a4ad33dba1b3abb90df42ea39 --- /dev/null +++ b/json/pre_dec_json/data188_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 757, + "y": 1299, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 878, + "y": 1119, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 903, + "y": 1145, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 967, + "y": 1170, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 362, + "y": 1207, + "width": 528, + "length": 128 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 773, + "y": 1058, + "width": 412, + "length": 49 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data189_aligned.json b/json/pre_dec_json/data189_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..dc8be13e87743a69254d768bd3ae84993d753cbc --- /dev/null +++ b/json/pre_dec_json/data189_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 320, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 438, + "y": 1110, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 503, + "y": 1167, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 548, + "y": 1089, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 306, + "y": 861, + "width": 566, + "length": 68 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 411, + "y": 1180, + "width": 353, + "length": 181 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data18_aligned.json b/json/pre_dec_json/data18_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1c44f72e8437f05f78d21c7a4fd0c0dfdeca43ae --- /dev/null +++ b/json/pre_dec_json/data18_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 385, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 795, + "y": 976, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 195, + "y": 985, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data190_aligned.json b/json/pre_dec_json/data190_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c5305ca26b811ed4317fc93c612b6bbdb93438b4 --- /dev/null +++ b/json/pre_dec_json/data190_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 511, + "y": 744, + "size": "Small", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 377, + "y": 1081, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 211, + "y": 1408, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data191_aligned.json b/json/pre_dec_json/data191_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8b85d9c94bd95ac0ce317b8ed883e766dfbd4188 --- /dev/null +++ b/json/pre_dec_json/data191_aligned.json @@ -0,0 +1,99 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 510, + "y": 921, + "size": "Small", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 131, + "y": 1025, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 151, + "y": 1382, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "1", + "x": 242, + "y": 1527, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "1", + "x": 455, + "y": 1416, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "1", + "x": 249, + "y": 1222, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 992, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data192_aligned.json b/json/pre_dec_json/data192_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..64ba81c482136d5eb956bca122e93a4952561654 --- /dev/null +++ b/json/pre_dec_json/data192_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 492, + "y": 1096, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 699, + "size": "Small", + "vx": 0, + "vy": 320, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 292, + "y": 1334, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 804, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 563, + "y": 543, + "width": 63, + "length": 228 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data193_aligned.json b/json/pre_dec_json/data193_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ab3eabcc9a8864152966a5cc73194fbff31528b1 --- /dev/null +++ b/json/pre_dec_json/data193_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 365, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 987, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 411, + "y": 1133, + "width": 754, + "length": 191 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data194_aligned.json b/json/pre_dec_json/data194_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..dd23fa0298703e10b7595e2a742984147ddcaa3d --- /dev/null +++ b/json/pre_dec_json/data194_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 987, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 411, + "y": 1133, + "width": 754, + "length": 191 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data195_aligned.json b/json/pre_dec_json/data195_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ed44ed7780b8308a6f6658a6e341c71d8134a483 --- /dev/null +++ b/json/pre_dec_json/data195_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 499, + "y": 1443, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data196_aligned.json b/json/pre_dec_json/data196_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f58773dbc9fb18f7f5077d776913cfc5cf7cdf34 --- /dev/null +++ b/json/pre_dec_json/data196_aligned.json @@ -0,0 +1,99 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 260, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 643, + "y": 718, + "size": "Nm", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 383, + "y": 872, + "size": "Big", + "vx": 0, + "vy": 207, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 428, + "y": 1598, + "size": "Small", + "vx": 0, + "vy": 417, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 128, + "y": 890, + "size": "Small", + "vx": 0, + "vy": -260, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 439, + "y": 446, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 372, + "y": 448, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 495, + "y": 446, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 849, + "y": 978, + "width": 300, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data197_aligned.json b/json/pre_dec_json/data197_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..bc7dc704d8da2535f7ff7125d302753ca05cd763 --- /dev/null +++ b/json/pre_dec_json/data197_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 321, + "y": 883, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 545, + "y": 878, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 984, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 313, + "y": 947, + "width": 546, + "length": 45 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data198_aligned.json b/json/pre_dec_json/data198_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f576d74ba68177e9970c996830df0f1527401e71 --- /dev/null +++ b/json/pre_dec_json/data198_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 639, + "y": 1287, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 714, + "y": 817, + "vx": -50, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 866, + "y": 825, + "vx": -50, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 767, + "y": 758, + "vx": 0, + "vy": 80 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 198, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 947, + "y": 987, + "width": 100, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data199_aligned.json b/json/pre_dec_json/data199_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..040edad680715dce75b3b470d91e4f9e2161f35e --- /dev/null +++ b/json/pre_dec_json/data199_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 330, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 1119, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 1483, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 520, + "y": 750, + "width": 230, + "length": 90 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 983, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 200, + "y": 983, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data19_aligned.json b/json/pre_dec_json/data19_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..dee01ea1b7524103833db66ffdb6e765c71bbeff --- /dev/null +++ b/json/pre_dec_json/data19_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 144, + "y": 738, + "size": "Small", + "vx": 0, + "vy": -350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 791, + "y": 983, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 344, + "y": 1024, + "width": 429, + "length": 222 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data1_aligned.json b/json/pre_dec_json/data1_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f76c30708a0499e8e3c053b321ea00b520dfdaa1 --- /dev/null +++ b/json/pre_dec_json/data1_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 510, + "y": 1482, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 896, + "y": 990, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 202, + "y": 990, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data200_aligned.json b/json/pre_dec_json/data200_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..cd6607b750fac6e336f7d47578b97196f28f807a --- /dev/null +++ b/json/pre_dec_json/data200_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 460, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 755, + "y": 968, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 496, + "y": 1539, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 139, + "y": 1235, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 504, + "y": 611, + "width": 141, + "length": 205 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data201_aligned.json b/json/pre_dec_json/data201_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5342e22cfbefd00085e9a7c5d290833b2cdd6adc --- /dev/null +++ b/json/pre_dec_json/data201_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 505, + "y": 1444, + "size": "Small", + "vx": 0, + "vy": 250, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 678, + "y": 978, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 199, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data202_aligned.json b/json/pre_dec_json/data202_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7aaf260e83c56b4e676824cd21dc1a4b804f53f8 --- /dev/null +++ b/json/pre_dec_json/data202_aligned.json @@ -0,0 +1,99 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 729, + "y": 919, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 723, + "y": 1255, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 522, + "y": 866, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 525, + "y": 1224, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 309, + "y": 1029, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "0", + "x": 295, + "y": 1360, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data203_aligned.json b/json/pre_dec_json/data203_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fdc4c15debeecc42bc5178d7d2b54e6e7c933099 --- /dev/null +++ b/json/pre_dec_json/data203_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 732, + "y": 974, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 236, + "y": 1026, + "size": "Small", + "vx": 0, + "vy": -380, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 234, + "y": 1360, + "size": "Small", + "vx": 0, + "vy": -380, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data204_aligned.json b/json/pre_dec_json/data204_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..87bfa6ed4f483b2eedde9c9d304503db78cd8101 --- /dev/null +++ b/json/pre_dec_json/data204_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 510, + "y": 1381, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 893, + "y": 1142, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 198, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 510, + "y": 779, + "width": 130, + "length": 181 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data205_aligned.json b/json/pre_dec_json/data205_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..63a8c8ed36b926aa4844842aaeabf4f5af7711f3 --- /dev/null +++ b/json/pre_dec_json/data205_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 406, + "y": 988, + "width": 742, + "length": 91 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data206_aligned.json b/json/pre_dec_json/data206_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e9b48e3acdbd225f5ad50cbe0572339e71c7204a --- /dev/null +++ b/json/pre_dec_json/data206_aligned.json @@ -0,0 +1,99 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 514, + "y": 889, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 563, + "y": 1038, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 613, + "y": 898, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 701, + "y": 892, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 756, + "y": 801, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "0", + "x": 683, + "y": 1154, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data207_aligned.json b/json/pre_dec_json/data207_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..72779aa9bc70070ef2f82dd700a4ecc34a655bcf --- /dev/null +++ b/json/pre_dec_json/data207_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 560, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 404, + "y": 1174, + "width": 707, + "length": 82 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data208_aligned.json b/json/pre_dec_json/data208_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a67d1fd5aa1a45a44d423a8a9f9acc90a7568981 --- /dev/null +++ b/json/pre_dec_json/data208_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 230, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 317, + "y": 570, + "size": "Big", + "vx": 0, + "vy": 340, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 485, + "y": 1168, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 968, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 961, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data209_aligned.json b/json/pre_dec_json/data209_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..051a51a4170146b38065a6d1d00273b6dd82573b --- /dev/null +++ b/json/pre_dec_json/data209_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 568, + "y": 805, + "size": "Small", + "vx": -20, + "vy": 180, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 886, + "y": 993, + "width": 230, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data20_aligned.json b/json/pre_dec_json/data20_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f790a038c671dca2cf5dc04d0e0414b66e46d171 --- /dev/null +++ b/json/pre_dec_json/data20_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 702, + "y": 811, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 445, + "y": 455, + "size": "Small", + "vx": 20, + "vy": 120, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 512, + "y": 1394, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 985, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 104, + "y": 996, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data210_aligned.json b/json/pre_dec_json/data210_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a8344c547f7f660e1d6734c2389fe81278fa659a --- /dev/null +++ b/json/pre_dec_json/data210_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 294, + "y": 926, + "size": "Small", + "vx": 0, + "vy": -280, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 452, + "y": 1274, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 600, + "y": 1034, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 104, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data211_aligned.json b/json/pre_dec_json/data211_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0e0d77858abf4775781d5253f16d6f5ec90a93ea --- /dev/null +++ b/json/pre_dec_json/data211_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 486, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 770, + "y": 924, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 405, + "y": 744, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 473, + "y": 741, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 542, + "y": 741, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 600, + "y": 758, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 104, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data212_aligned.json b/json/pre_dec_json/data212_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fafe76d4ec8afa5d6b3e8b4a3def9ad4817310a5 --- /dev/null +++ b/json/pre_dec_json/data212_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 289, + "y": 947, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 990, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 988, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data213_aligned.json b/json/pre_dec_json/data213_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3110365de5c77a53999edbe8a536fa3ea8423af2 --- /dev/null +++ b/json/pre_dec_json/data213_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 423, + "y": 827, + "size": "Small", + "vx": 0, + "vy": 80, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 896, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data214_aligned.json b/json/pre_dec_json/data214_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..60e9380f79ce2a549990228c942e02d71e6fa719 --- /dev/null +++ b/json/pre_dec_json/data214_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 306, + "y": 1316, + "size": "Small", + "vx": 0, + "vy": -350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 481, + "y": 1022, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 604, + "y": 723, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 834, + "y": 992, + "width": 330, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data215_aligned.json b/json/pre_dec_json/data215_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6b7aa4fb3b9082e8a7a3639ae6fc545b86b6989e --- /dev/null +++ b/json/pre_dec_json/data215_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 111, + "y": 1093, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 394, + "y": 1079, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 622, + "y": 1108, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 896, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 427, + "y": 1217, + "width": 698, + "length": 137 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data216_aligned.json b/json/pre_dec_json/data216_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9969eddfe99de456dcfbaad07366a14a57ef2050 --- /dev/null +++ b/json/pre_dec_json/data216_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 406, + "y": 494, + "width": 355, + "length": 365 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data217_aligned.json b/json/pre_dec_json/data217_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..396e36e7d0b2d9b921fdc00b924b6a8561b6a146 --- /dev/null +++ b/json/pre_dec_json/data217_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data218_aligned.json b/json/pre_dec_json/data218_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2e9ee7a950abebf9109e46d391a00adb0cd7eee2 --- /dev/null +++ b/json/pre_dec_json/data218_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 510, + "y": 1241, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data219_aligned.json b/json/pre_dec_json/data219_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7cfd605e1a62cb3aa10e9d2e36fe07d19e4ca12c --- /dev/null +++ b/json/pre_dec_json/data219_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 487, + "y": 517, + "width": 209, + "length": 187 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data21_aligned.json b/json/pre_dec_json/data21_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fa5e2d6e3af24a816bf4e0588a8bee243888c1d9 --- /dev/null +++ b/json/pre_dec_json/data21_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 490, + "y": 1474, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 721, + "y": 919, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 104, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 496, + "y": 543, + "width": 124, + "length": 225 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data220_aligned.json b/json/pre_dec_json/data220_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..14c7353f10fbf0e8937cd8e91fe8a7740f2642c0 --- /dev/null +++ b/json/pre_dec_json/data220_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 1037, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 315, + "y": 1283, + "size": "Small", + "vx": 0, + "vy": -555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 961, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 970, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 481, + "y": 527, + "width": 158, + "length": 152 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data221_aligned.json b/json/pre_dec_json/data221_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9b864a317208bb48584417e4699c8db18d0e1094 --- /dev/null +++ b/json/pre_dec_json/data221_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 453, + "y": 683, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 339, + "y": 315, + "width": 30, + "length": 30 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 350, + "y": 466, + "width": 30, + "length": 30 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 374, + "y": 622, + "width": 30, + "length": 30 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 438, + "y": 763, + "width": 30, + "length": 30 + }, + { + "id": "obs_5", + "type": "obstacle", + "x": 560, + "y": 874, + "width": 30, + "length": 30 + }, + { + "id": "obs_6", + "type": "obstacle", + "x": 659, + "y": 939, + "width": 30, + "length": 30 + }, + { + "id": "obs_7", + "type": "obstacle", + "x": 784, + "y": 1011, + "width": 30, + "length": 30 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data222_aligned.json b/json/pre_dec_json/data222_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..466ebce9b7a4f46b0d94123d8cf8ecf9ff2f2ec5 --- /dev/null +++ b/json/pre_dec_json/data222_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 886, + "y": 993, + "width": 230, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 393, + "y": 839, + "width": 701, + "length": 176 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data223_aligned.json b/json/pre_dec_json/data223_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c6dca219dbcd16a08f11a7ea8935beeb8aae44b7 --- /dev/null +++ b/json/pre_dec_json/data223_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 725, + "y": 1035, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 140, + "y": 1345, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 980, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data224_aligned.json b/json/pre_dec_json/data224_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ced73e610dcaae7bc25940ff6a37045f2ba3d11f --- /dev/null +++ b/json/pre_dec_json/data224_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 304, + "y": 1139, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 990, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 988, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data225_aligned.json b/json/pre_dec_json/data225_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2f11e390ec34ddbb459a9e431be1d707f09cc9b5 --- /dev/null +++ b/json/pre_dec_json/data225_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 330, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 510, + "y": 1250, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 673, + "y": 1335, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 317, + "y": 1355, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data226_aligned.json b/json/pre_dec_json/data226_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c9b787a411d68d3cc6db7803723199fd3ac90e15 --- /dev/null +++ b/json/pre_dec_json/data226_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 983, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 299, + "y": 976, + "width": 558, + "length": 91 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data227_aligned.json b/json/pre_dec_json/data227_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..aba4ad7b74220eee0776c98d9b5115b772522d0b --- /dev/null +++ b/json/pre_dec_json/data227_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 279, + "y": 694, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1404, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 95, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 548, + "y": 622, + "width": 73, + "length": 92 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data228_aligned.json b/json/pre_dec_json/data228_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..893a62c231a2e430c91e87da49529c62fb0016e6 --- /dev/null +++ b/json/pre_dec_json/data228_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 549, + "y": 1264, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 865, + "y": 995, + "width": 270, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 671, + "y": 706, + "width": 103, + "length": 301 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data229_aligned.json b/json/pre_dec_json/data229_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b95a485cb06109f05b4de41f97ad5febe80e1a69 --- /dev/null +++ b/json/pre_dec_json/data229_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 96, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 801, + "y": 1252, + "width": 400, + "length": 1300 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 457, + "y": 675, + "width": 279, + "length": 303 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data22_aligned.json b/json/pre_dec_json/data22_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4a8aed2e73bc4d65984ad00ee03c8e7ed3a742f8 --- /dev/null +++ b/json/pre_dec_json/data22_aligned.json @@ -0,0 +1,91 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 310, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 946, + "size": "Small", + "vx": 0, + "vy": 208, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 673, + "y": 1126, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 894, + "y": 978, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 105, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 239, + "y": 977, + "width": 30, + "length": 30 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 390, + "y": 974, + "width": 30, + "length": 30 + }, + { + "id": "obs_5", + "type": "obstacle", + "x": 634, + "y": 970, + "width": 30, + "length": 30 + }, + { + "id": "obs_6", + "type": "obstacle", + "x": 729, + "y": 968, + "width": 30, + "length": 30 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data230_aligned.json b/json/pre_dec_json/data230_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..98b05dba307b94af326865922d5783edad973779 --- /dev/null +++ b/json/pre_dec_json/data230_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 314, + "y": 962, + "size": "Small", + "vx": 0, + "vy": -600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 329, + "y": 1372, + "size": "Small", + "vx": 0, + "vy": -500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 875, + "y": 992, + "width": 250, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 93, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data231_aligned.json b/json/pre_dec_json/data231_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c9b2a91fb11bdc596cf360f04548dccf0a72fa9b --- /dev/null +++ b/json/pre_dec_json/data231_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 508, + "y": 1686, + "width": 121, + "length": 674 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data232_aligned.json b/json/pre_dec_json/data232_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5d161ec31824925c01843bf5ce9b188751826a1b --- /dev/null +++ b/json/pre_dec_json/data232_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 683, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 651, + "y": 1005, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 198, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 900, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data233_aligned.json b/json/pre_dec_json/data233_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0f5db038ca38161585c034665cce831e60fffd0c --- /dev/null +++ b/json/pre_dec_json/data233_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 467, + "y": 842, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 736, + "y": 583, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 946, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 399, + "y": 1301, + "width": 792, + "length": 427 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data234_aligned.json b/json/pre_dec_json/data234_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fac4c76c0a1d25dcb8fbe680b2bd992f72aa5d86 --- /dev/null +++ b/json/pre_dec_json/data234_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 513, + "y": 1174, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 393, + "y": 842, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 455, + "y": 846, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 522, + "y": 856, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data235_aligned.json b/json/pre_dec_json/data235_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fd53e73e64391782352141ab054f4e4806f627b6 --- /dev/null +++ b/json/pre_dec_json/data235_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 990, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 988, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data236_aligned.json b/json/pre_dec_json/data236_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e255b3f147824a568c95837fc6af368a6b9b8d48 --- /dev/null +++ b/json/pre_dec_json/data236_aligned.json @@ -0,0 +1,87 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 490, + "y": 995, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 393, + "y": 842, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 455, + "y": 846, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 522, + "y": 856, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 314, + "y": 840, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_5", + "type": "pedestrian", + "x": 248, + "y": 856, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data237_aligned.json b/json/pre_dec_json/data237_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..622e835eab43f00a27ed6dd1cc71c1bdd0d4f133 --- /dev/null +++ b/json/pre_dec_json/data237_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 886, + "y": 993, + "width": 230, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 198, + "y": 995, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 584, + "y": 782, + "width": 334, + "length": 89 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data238_aligned.json b/json/pre_dec_json/data238_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6eb7ea384c565e69513866ed8f186c5466fd4cba --- /dev/null +++ b/json/pre_dec_json/data238_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 589, + "y": 753, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data239_aligned.json b/json/pre_dec_json/data239_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b0d12b6deb6475653bdaa47d4e110d781db9cd90 --- /dev/null +++ b/json/pre_dec_json/data239_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 500, + "y": 793, + "width": 90, + "length": 90 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data23_aligned.json b/json/pre_dec_json/data23_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3f4205f8d311e009915211f237910272964d46bf --- /dev/null +++ b/json/pre_dec_json/data23_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 240, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 168, + "y": 396, + "size": "Small", + "vx": 0, + "vy": -350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 198, + "y": 905, + "size": "Small", + "vx": 0, + "vy": -350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 455, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 974, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 50, + "y": 957, + "width": 100, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data240_aligned.json b/json/pre_dec_json/data240_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fbff55d24d694bda87e1f9f0e32a247263260239 --- /dev/null +++ b/json/pre_dec_json/data240_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 431, + "y": 939, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data241_aligned.json b/json/pre_dec_json/data241_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0ae3c8b709efdf0a47e5a24e091639f7de5d0a43 --- /dev/null +++ b/json/pre_dec_json/data241_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 330, + "y": 1297, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 95, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data242_aligned.json b/json/pre_dec_json/data242_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3a7814b455d8374ebd77475b8f4405752ca4daef --- /dev/null +++ b/json/pre_dec_json/data242_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 389, + "y": 1003, + "width": 357, + "length": 129 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data243_aligned.json b/json/pre_dec_json/data243_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..67df97143899840c8b6eac0b96815a9e87f94b1e --- /dev/null +++ b/json/pre_dec_json/data243_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 508, + "y": 942, + "size": "Small", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data244_aligned.json b/json/pre_dec_json/data244_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0a7d509666b74b2dafa169fd2a90212ab78d1853 --- /dev/null +++ b/json/pre_dec_json/data244_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 511, + "y": 1404, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 368, + "y": 1110, + "size": "Small", + "vx": 0, + "vy": -50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data245_aligned.json b/json/pre_dec_json/data245_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..316c48f4e1cc73ff1201fc585ed91332f52eada2 --- /dev/null +++ b/json/pre_dec_json/data245_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 490, + "y": 819, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 505, + "y": 1344, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 711, + "y": 1296, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 939, + "y": 1309, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 198, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data246_aligned.json b/json/pre_dec_json/data246_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4f340815ecb0a172273edb3ba2207bc6d4038ac8 --- /dev/null +++ b/json/pre_dec_json/data246_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 514, + "y": 1133, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 986, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 198, + "y": 986, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data247_aligned.json b/json/pre_dec_json/data247_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f1fb3c82116f992301daccb4cc8f868c7cf41e65 --- /dev/null +++ b/json/pre_dec_json/data247_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 889, + "size": "Small", + "vx": 0, + "vy": 30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data248_aligned.json b/json/pre_dec_json/data248_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..deebe96ec6c98601fc8969744dd8d8fcb1a4da2f --- /dev/null +++ b/json/pre_dec_json/data248_aligned.json @@ -0,0 +1,107 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 266, + "y": 980, + "size": "Small", + "vx": 0, + "vy": 460, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 478, + "y": 1191, + "size": "Small", + "vx": 0, + "vy": 460, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 429, + "y": 966, + "size": "Nm", + "vx": 0, + "vy": 80, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 432, + "y": 835, + "size": "Nm", + "vx": 0, + "vy": 80, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 516, + "y": 979, + "size": "Nm", + "vx": 0, + "vy": 80, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "0", + "x": 527, + "y": 836, + "size": "Nm", + "vx": 0, + "vy": 80, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data249_aligned.json b/json/pre_dec_json/data249_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4370bfb94467f10ff8d64af89f2e13d1d691594b --- /dev/null +++ b/json/pre_dec_json/data249_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 460, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 303, + "y": 1323, + "size": "Small", + "vx": 0, + "vy": -100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 478, + "y": 1191, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 355, + "y": 867, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data24_aligned.json b/json/pre_dec_json/data24_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..50908b8ea5702c4d6e68770a6d0234e27c84b641 --- /dev/null +++ b/json/pre_dec_json/data24_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 982, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data250_aligned.json b/json/pre_dec_json/data250_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5e182aa6fd6d081ac2ba1347771894ecb27072ee --- /dev/null +++ b/json/pre_dec_json/data250_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 428, + "y": 937, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 406, + "y": 1079, + "width": 377, + "length": 80 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data251_aligned.json b/json/pre_dec_json/data251_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8200431450e75529e9b4741bcd2d3f65c6c05479 --- /dev/null +++ b/json/pre_dec_json/data251_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 303, + "y": 1323, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 478, + "y": 1191, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data252_aligned.json b/json/pre_dec_json/data252_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b7ad6035cfd2fc2fb7f1d5c3d699568681893d7e --- /dev/null +++ b/json/pre_dec_json/data252_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 543, + "y": 705, + "width": 209, + "length": 283 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data253_aligned.json b/json/pre_dec_json/data253_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..670a6647962106a37f301d187e47071819ca9fa1 --- /dev/null +++ b/json/pre_dec_json/data253_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 333, + "y": 179, + "size": "Small", + "vx": 0, + "vy": -277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 909, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 733, + "y": 565, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 733, + "y": 1035, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 502, + "y": 638, + "width": 118, + "length": 124 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data254_aligned.json b/json/pre_dec_json/data254_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ec86925ab237c40fd53a23f704ee8ae24668f8e1 --- /dev/null +++ b/json/pre_dec_json/data254_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 499, + "y": 636, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 145, + "y": 999, + "size": "Small", + "vx": 0, + "vy": -410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 155, + "y": 1413, + "size": "Small", + "vx": 0, + "vy": -410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 867, + "y": 993, + "width": 260, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 303, + "y": 987, + "width": 100, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data255_aligned.json b/json/pre_dec_json/data255_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9585eca8555128e45a259ecbb968f3fb7d7c7974 --- /dev/null +++ b/json/pre_dec_json/data255_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 370, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 1133, + "size": "Small", + "vx": 0, + "vy": -600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 653, + "y": 1137, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 198, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 855, + "y": 993, + "width": 290, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data256_aligned.json b/json/pre_dec_json/data256_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a5499f7a4dd303e589f88c792cf85fa1d22e2ad6 --- /dev/null +++ b/json/pre_dec_json/data256_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 460, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 517, + "y": 1255, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 987, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 198, + "y": 992, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data257_aligned.json b/json/pre_dec_json/data257_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5c6ce3f71df2d5f532a9c8e41941833ee9ec1697 --- /dev/null +++ b/json/pre_dec_json/data257_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 315, + "y": 768, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 481, + "y": 1169, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data258_aligned.json b/json/pre_dec_json/data258_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..67fd0a4da3400dbf7d7f402c25aff2670f2bb34e --- /dev/null +++ b/json/pre_dec_json/data258_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 968, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 398, + "y": 954, + "width": 790, + "length": 527 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data259_aligned.json b/json/pre_dec_json/data259_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9d3c80a93b6d48136767fdae9b72d40a92b4dca0 --- /dev/null +++ b/json/pre_dec_json/data259_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 511, + "y": 907, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 987, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 198, + "y": 992, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data25_aligned.json b/json/pre_dec_json/data25_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0ccd55ba78689e85a3db21a7cfae2501f03b42e1 --- /dev/null +++ b/json/pre_dec_json/data25_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 209, + "y": 927, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 632, + "y": 1139, + "size": "Small", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 890, + "y": 983, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 42, + "y": 974, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data260_aligned.json b/json/pre_dec_json/data260_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6f7b30c3e61a512ae9109bf6f8197cb7b3aafc62 --- /dev/null +++ b/json/pre_dec_json/data260_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 310, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 987, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 198, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 602, + "y": 748, + "width": 360, + "length": 144 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data261_aligned.json b/json/pre_dec_json/data261_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..678a1ab05ed4233ebc85ce7511a91b6d7ded7ebc --- /dev/null +++ b/json/pre_dec_json/data261_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 270, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 987, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 198, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 596, + "y": 793, + "width": 342, + "length": 539 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data262_aligned.json b/json/pre_dec_json/data262_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f250a95a0dea07228a0ea1385de3a863636e66e9 --- /dev/null +++ b/json/pre_dec_json/data262_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 514, + "y": 924, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 651, + "y": 1014, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 987, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 198, + "y": 992, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data263_aligned.json b/json/pre_dec_json/data263_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2c294f6f1a460f08f3b5887c9a38204f78e67cf1 --- /dev/null +++ b/json/pre_dec_json/data263_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 504, + "y": 563, + "size": "Small", + "vx": 20, + "vy": 138, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 704, + "y": 827, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 987, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 201, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data264_aligned.json b/json/pre_dec_json/data264_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..58f35a017672d95d8d129a94f7478eb058ff7512 --- /dev/null +++ b/json/pre_dec_json/data264_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 460, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 487, + "y": 1316, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 308, + "y": 1035, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 601, + "y": 709, + "size": "Big", + "vx": 0, + "vy": 120, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 846, + "y": 992, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 52, + "y": 993, + "width": 100, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data265_aligned.json b/json/pre_dec_json/data265_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6ca06d69082f5fa6a14a4665c956629eaf3aad0d --- /dev/null +++ b/json/pre_dec_json/data265_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 701, + "y": 714, + "vx": -90, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 612, + "y": 766, + "vx": -60, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 868, + "y": 993, + "width": 260, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 329, + "y": 1500, + "width": 106, + "length": 965 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data266_aligned.json b/json/pre_dec_json/data266_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ff66a52af011ca499ac161533ff4df19da9e868e --- /dev/null +++ b/json/pre_dec_json/data266_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 543, + "y": 1073, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 195, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 851, + "y": 992, + "width": 300, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 552, + "y": 521, + "width": 270, + "length": 269 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data267_aligned.json b/json/pre_dec_json/data267_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ebac63a1a689ab10fb40b21973143356db944186 --- /dev/null +++ b/json/pre_dec_json/data267_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 900, + "size": "Small", + "vx": 0, + "vy": 30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 294, + "y": 1137, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 989, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data268_aligned.json b/json/pre_dec_json/data268_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..164020266e4d3ff33abd4949656ea82455dbcdde --- /dev/null +++ b/json/pre_dec_json/data268_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 494, + "y": 1273, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 278, + "y": 1611, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 982, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data269_aligned.json b/json/pre_dec_json/data269_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..003cb2c823b3d9cc71bc727d3e65e625782e4cca --- /dev/null +++ b/json/pre_dec_json/data269_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 496, + "y": 1130, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 989, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 546, + "y": 761, + "width": 92, + "length": 106 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data26_aligned.json b/json/pre_dec_json/data26_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..424e9aa3c9f5d01a593837f87296ac917a7bff7a --- /dev/null +++ b/json/pre_dec_json/data26_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 755, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1287, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 973, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 801, + "y": 964, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data270_aligned.json b/json/pre_dec_json/data270_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6d38a4717902d59db8b38b056536b893296f8f3d --- /dev/null +++ b/json/pre_dec_json/data270_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 298, + "y": 742, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 961, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data271_aligned.json b/json/pre_dec_json/data271_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..427390125a485645647ca0cd20caffb47feca38f --- /dev/null +++ b/json/pre_dec_json/data271_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 560, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 496, + "y": 1130, + "size": "Small", + "vx": 0, + "vy": 560, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 303, + "y": 888, + "size": "Small", + "vx": 0, + "vy": -600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 989, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data272_aligned.json b/json/pre_dec_json/data272_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8d2cadd85c3e38340b1fb1dae59a8001362bb843 --- /dev/null +++ b/json/pre_dec_json/data272_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 496, + "y": 1130, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 989, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 302, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data273_aligned.json b/json/pre_dec_json/data273_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9b74e5c496bdfc19990e3e2e53775137c4a63d98 --- /dev/null +++ b/json/pre_dec_json/data273_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 939, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1393, + "size": "Small", + "vx": 0, + "vy": -277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 233, + "y": 1007, + "size": "Nm", + "vx": 0, + "vy": -120, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 973, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 801, + "y": 964, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 390, + "y": 569, + "width": 371, + "length": 110 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data274_aligned.json b/json/pre_dec_json/data274_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9f106b63f659a5368e352e52cc6e63053e0d37e6 --- /dev/null +++ b/json/pre_dec_json/data274_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 718, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 187, + "y": 1221, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 817, + "y": 1646, + "width": 400, + "length": 700 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 346, + "y": 807, + "width": 147, + "length": 70 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data275_aligned.json b/json/pre_dec_json/data275_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..405c06b41f2587353f3ccc8eba9eb89a3bb8ec35 --- /dev/null +++ b/json/pre_dec_json/data275_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 504, + "y": 485, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 313, + "y": 498, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 136, + "y": 495, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 990, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data276_aligned.json b/json/pre_dec_json/data276_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..984ff89bfa5b676ca47f6fa61c266e75727d6340 --- /dev/null +++ b/json/pre_dec_json/data276_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1042, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 106, + "y": 977, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 373, + "y": 234, + "width": 15, + "length": 455 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 491, + "y": 435, + "width": 118, + "length": 126 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data277_aligned.json b/json/pre_dec_json/data277_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..17f522a65ba896d076f857bd6ad7b9ec81f3090e --- /dev/null +++ b/json/pre_dec_json/data277_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 393, + "y": 767, + "vx": 70, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 400, + "y": 835, + "vx": 70, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 96, + "y": 977, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data278_aligned.json b/json/pre_dec_json/data278_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8460b411d00d3b6e854b8bdafc59d803e41be1b0 --- /dev/null +++ b/json/pre_dec_json/data278_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 96, + "y": 977, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data279_aligned.json b/json/pre_dec_json/data279_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f182da1f312c76889dbe5c49f57860fede81e6fd --- /dev/null +++ b/json/pre_dec_json/data279_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 313, + "y": 1232, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 495, + "y": 897, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 128, + "y": 1236, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data27_aligned.json b/json/pre_dec_json/data27_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..03ad605cdaa62b70f12ceea18af97915db5dc736 --- /dev/null +++ b/json/pre_dec_json/data27_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 390, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 894, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 987, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 704, + "y": 726, + "width": 135, + "length": 255 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data280_aligned.json b/json/pre_dec_json/data280_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2edcc7e088f1d76e9eb8d051eb5bc0d18a244a88 --- /dev/null +++ b/json/pre_dec_json/data280_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 310, + "y": 972, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 499, + "y": 906, + "width": 64, + "length": 83 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 96, + "y": 977, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data281_aligned.json b/json/pre_dec_json/data281_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5a8a1088584d2b3a61226fd610b6b1503fb65a87 --- /dev/null +++ b/json/pre_dec_json/data281_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 96, + "y": 977, + "width": 200, + "length": 2000 + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 495, + "y": 874, + "size": "Small", + "vx": 0, + "vy": 10, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data282_aligned.json b/json/pre_dec_json/data282_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..cbcde22ef67bf93801826df47435c02f2844d911 --- /dev/null +++ b/json/pre_dec_json/data282_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 937, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 198, + "y": 985, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 897, + "y": 976, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data283_aligned.json b/json/pre_dec_json/data283_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e5b4034cb9d943b3cb952a03bd48f33ec82ad12b --- /dev/null +++ b/json/pre_dec_json/data283_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 270, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 96, + "y": 977, + "width": 200, + "length": 2000 + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 506, + "y": 1160, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 404, + "y": 690, + "width": 96, + "length": 99 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data284_aligned.json b/json/pre_dec_json/data284_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..d90bf3a77f3bfc7ee6606ef20b31c3c191cba480 --- /dev/null +++ b/json/pre_dec_json/data284_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 96, + "y": 977, + "width": 200, + "length": 2000 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 403, + "y": 879, + "width": 366, + "length": 145 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data285_aligned.json b/json/pre_dec_json/data285_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..eb08a5e8f7534c0595dcb02899e094096cbbf10c --- /dev/null +++ b/json/pre_dec_json/data285_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 504, + "y": 1600, + "width": 200, + "length": 800 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data286_aligned.json b/json/pre_dec_json/data286_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..15c42c97c05d849e59f9a9b9d514b405237f80bd --- /dev/null +++ b/json/pre_dec_json/data286_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 460, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 542, + "y": 1339, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 897, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 724, + "y": 724, + "width": 85, + "length": 114 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data287_aligned.json b/json/pre_dec_json/data287_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c0fd1fd8b639abbc4ec2725cde4867bcde30a5ea --- /dev/null +++ b/json/pre_dec_json/data287_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 897, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 524, + "y": 944, + "width": 511, + "length": 193 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data288_aligned.json b/json/pre_dec_json/data288_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..64e37702e7a779934e0411a6daf5a0411b1c5898 --- /dev/null +++ b/json/pre_dec_json/data288_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 692, + "y": 223, + "size": "Small", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 452, + "y": 768, + "vx": -20, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 505, + "y": 751, + "vx": -20, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 561, + "y": 758, + "vx": -20, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 897, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data289_aligned.json b/json/pre_dec_json/data289_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..27c487dcbd2f0edc66d2ce1e94147ba791ab11c2 --- /dev/null +++ b/json/pre_dec_json/data289_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 551, + "y": 835, + "size": "Small", + "vx": 30, + "vy": -500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 145, + "y": 1091, + "size": "Big", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data28_aligned.json b/json/pre_dec_json/data28_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..dd2dbbbf36748fb17378d173eb60c9899cf2c5a5 --- /dev/null +++ b/json/pre_dec_json/data28_aligned.json @@ -0,0 +1,107 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 291, + "y": 1150, + "size": "Small", + "vx": 0, + "vy": -555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 289, + "y": 587, + "size": "Small", + "vx": 0, + "vy": -555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 505, + "y": 1240, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 690, + "y": 817, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 694, + "y": 1180, + "size": "Small", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "0", + "x": 697, + "y": 1519, + "size": "Small", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 894, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 987, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data290_aligned.json b/json/pre_dec_json/data290_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fa5b653e8f9dee8843acb6160fdad3b5750aa02f --- /dev/null +++ b/json/pre_dec_json/data290_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 321, + "y": 1653, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 982, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data291_aligned.json b/json/pre_dec_json/data291_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..877aca223910960dd2bd0a1fc97a21ece4d18361 --- /dev/null +++ b/json/pre_dec_json/data291_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 270, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 496, + "y": 1399, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 333, + "y": 1147, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 153, + "y": 803, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 165, + "y": 1163, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 508, + "y": 647, + "width": 125, + "length": 188 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data292_aligned.json b/json/pre_dec_json/data292_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ed56f4848b66cc4f5f78755b48d5d99a814f2729 --- /dev/null +++ b/json/pre_dec_json/data292_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 491, + "y": 1405, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 119, + "y": 595, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 278, + "y": 1283, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 436, + "y": 922, + "vx": 20, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 513, + "y": 919, + "vx": 20, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 995, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data293_aligned.json b/json/pre_dec_json/data293_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..61e3b8730b249b6514da1d61349d7eec13e3f566 --- /dev/null +++ b/json/pre_dec_json/data293_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 505, + "y": 947, + "width": 936, + "length": 57 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data294_aligned.json b/json/pre_dec_json/data294_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a0712ccd5f166a253b0bc14629c50b1e7c532279 --- /dev/null +++ b/json/pre_dec_json/data294_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 370, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 1074, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 558, + "y": 1602, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 767, + "y": 1648, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 968, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 200, + "y": 955, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 596, + "y": 624, + "width": 397, + "length": 86 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data295_aligned.json b/json/pre_dec_json/data295_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9ac99053ba2dbf198495599967e5f23a56ebade7 --- /dev/null +++ b/json/pre_dec_json/data295_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 499, + "y": 904, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 305, + "y": 1015, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data296_aligned.json b/json/pre_dec_json/data296_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a17688ce0386571cd09b329470d3b6a6141aa041 --- /dev/null +++ b/json/pre_dec_json/data296_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 290, + "y": 614, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 293, + "y": 1294, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data297_aligned.json b/json/pre_dec_json/data297_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..67813ae0a85bc891fff98dbdb6dc69d07d770bf1 --- /dev/null +++ b/json/pre_dec_json/data297_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 705, + "y": 8, + "size": "Big", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 477, + "y": 717, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 995, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data298_aligned.json b/json/pre_dec_json/data298_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..554152938ea8831db914e7ed3c42eb040b2b3154 --- /dev/null +++ b/json/pre_dec_json/data298_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 380, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 284, + "y": 1028, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data299_aligned.json b/json/pre_dec_json/data299_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3d03cd95608a965daaef32e0aaa8dc3e36e945a5 --- /dev/null +++ b/json/pre_dec_json/data299_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1457, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 200, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data29_aligned.json b/json/pre_dec_json/data29_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c09e6f5ad5004b2b81566ee5c7077f941a40cbc5 --- /dev/null +++ b/json/pre_dec_json/data29_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 287, + "y": 1080, + "size": "Small", + "vx": 0, + "vy": -555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 710, + "y": 1331, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 894, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 987, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data2_aligned.json b/json/pre_dec_json/data2_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4d446219283278d670152eb93a1cc88b740b0da6 --- /dev/null +++ b/json/pre_dec_json/data2_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 508, + "y": 1392, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 709, + "y": 1427, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 201, + "y": 994, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data300_aligned.json b/json/pre_dec_json/data300_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..d1228669bacef7f1222cb3d633bf80a562bc5773 --- /dev/null +++ b/json/pre_dec_json/data300_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 200, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 502, + "y": 1298, + "width": 166, + "length": 213 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data301_aligned.json b/json/pre_dec_json/data301_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..264d59ea31d5c3be631f8fdcf3e1f746238b2d0e --- /dev/null +++ b/json/pre_dec_json/data301_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 151, + "y": 426, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 183, + "y": 1093, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 536, + "y": 1424, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data302_aligned.json b/json/pre_dec_json/data302_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..195407792dc36ec9d40d14d87a523905dcf8f002 --- /dev/null +++ b/json/pre_dec_json/data302_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 490, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 498, + "y": 982, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 274, + "y": 976, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 81, + "y": 974, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 293, + "y": 1082, + "width": 553, + "length": 41 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data303_aligned.json b/json/pre_dec_json/data303_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9d327fc3c463ebe59468cfc060e1f01d33f81f3e --- /dev/null +++ b/json/pre_dec_json/data303_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 803, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data304_aligned.json b/json/pre_dec_json/data304_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..72411d02b7e3a6f2825790d71ff4a524f66bb2f7 --- /dev/null +++ b/json/pre_dec_json/data304_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 310, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 803, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 316, + "y": 972, + "width": 498, + "length": 396 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data305_aligned.json b/json/pre_dec_json/data305_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c328e78dc7a6198872a079077b5a2773460715d7 --- /dev/null +++ b/json/pre_dec_json/data305_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 895, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 497, + "y": 833, + "width": 533, + "length": 285 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data306_aligned.json b/json/pre_dec_json/data306_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..65640b17e636e0892dd6a54c70c24557bd86686d --- /dev/null +++ b/json/pre_dec_json/data306_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 235, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 231, + "y": 741, + "size": "Small", + "vx": 0, + "vy": -200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 444, + "y": 623, + "width": 250, + "length": 233 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data307_aligned.json b/json/pre_dec_json/data307_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a6e893c202b3bf387f45ecb72e297efc191a407e --- /dev/null +++ b/json/pre_dec_json/data307_aligned.json @@ -0,0 +1,95 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 970, + "size": "Small", + "vx": 0, + "vy": 600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 689, + "y": 703, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 495, + "y": 1626, + "size": "Small", + "vx": 0, + "vy": 600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 513, + "y": 581, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 420, + "y": 627, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 294, + "y": 574, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 976, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 976, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data308_aligned.json b/json/pre_dec_json/data308_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4b49480675686d333f4031c6acaad4b2761e1ba5 --- /dev/null +++ b/json/pre_dec_json/data308_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 515, + "y": 893, + "size": "Small", + "vx": 0, + "vy": 90, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 265, + "y": 722, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 895, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data309_aligned.json b/json/pre_dec_json/data309_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c22de29d574de69a199150c1086e640699b15c98 --- /dev/null +++ b/json/pre_dec_json/data309_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 505, + "y": 766, + "size": "Small", + "vx": 0, + "vy": 20, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 290, + "y": 1056, + "size": "Small", + "vx": 0, + "vy": 30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 797, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data30_aligned.json b/json/pre_dec_json/data30_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c9e942c3353d982a1b148c277b78c9850f53a75c --- /dev/null +++ b/json/pre_dec_json/data30_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 220, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 568, + "y": 524, + "size": "Small", + "vx": -25, + "vy": 69, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 296, + "y": 656, + "size": "Small", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 282, + "y": 103, + "size": "Small", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 893, + "y": 985, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data310_aligned.json b/json/pre_dec_json/data310_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3c17de66503d9fedbdb198e7473c7fb7c0eaccbc --- /dev/null +++ b/json/pre_dec_json/data310_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 279, + "y": 784, + "size": "Small", + "vx": 0, + "vy": 750, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 290, + "y": 1320, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data311_aligned.json b/json/pre_dec_json/data311_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b710ab3b8a7431148364952f349eb9ad2ffce65b --- /dev/null +++ b/json/pre_dec_json/data311_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 501, + "y": 820, + "width": 547, + "length": 118 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data312_aligned.json b/json/pre_dec_json/data312_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f0e1de0a552682d7ac421f5d20afd61457dc55c5 --- /dev/null +++ b/json/pre_dec_json/data312_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 980, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data313_aligned.json b/json/pre_dec_json/data313_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a971621936c42699bf5a68fe2b516616b0b523bd --- /dev/null +++ b/json/pre_dec_json/data313_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 320, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 504, + "y": 1044, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 200, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 549, + "y": 661, + "width": 52, + "length": 122 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data314_aligned.json b/json/pre_dec_json/data314_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..bf046fa084008898b220dc7c4eb9c1714879ca84 --- /dev/null +++ b/json/pre_dec_json/data314_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 319, + "y": 1402, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 404, + "y": 1139, + "vx": 50, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 472, + "y": 1123, + "vx": 50, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 526, + "y": 1094, + "vx": 50, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data315_aligned.json b/json/pre_dec_json/data315_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a4b192b6131c355129a19de37eec4d97e7bbc32e --- /dev/null +++ b/json/pre_dec_json/data315_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 752, + "y": 1354, + "width": 104, + "length": 1145 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 542, + "y": 720, + "width": 265, + "length": 244 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data316_aligned.json b/json/pre_dec_json/data316_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..328bc6ee3f832d138a5d64b14c0b5e6fce1a92b3 --- /dev/null +++ b/json/pre_dec_json/data316_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 504, + "y": 709, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 271, + "y": 1090, + "size": "Small", + "vx": 0, + "vy": -450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 195, + "y": 340, + "width": 375, + "length": 708 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 799, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data317_aligned.json b/json/pre_dec_json/data317_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fa459345a48ed1f4fde2ce15b708419ef4393a25 --- /dev/null +++ b/json/pre_dec_json/data317_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 504, + "y": 1394, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 325, + "y": 919, + "size": "Big", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 795, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data318_aligned.json b/json/pre_dec_json/data318_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..54164236cd69bf98365504803567c1f0696479fc --- /dev/null +++ b/json/pre_dec_json/data318_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 460, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 842, + "size": "Small", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 341, + "y": 1164, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 149, + "y": 1182, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 795, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data319_aligned.json b/json/pre_dec_json/data319_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c0db5ce90e262825c671dc88f80fbdf20dfe983f --- /dev/null +++ b/json/pre_dec_json/data319_aligned.json @@ -0,0 +1,107 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 530, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 655, + "size": "Small", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 665, + "y": 1189, + "size": "Small", + "vx": 0, + "vy": 600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 224, + "y": 572, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 224, + "y": 514, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 976, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 976, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 368, + "y": 470, + "width": 30, + "length": 30 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 360, + "y": 320, + "width": 30, + "length": 30 + }, + { + "id": "obs_5", + "type": "obstacle", + "x": 360, + "y": 620, + "width": 30, + "length": 30 + }, + { + "id": "obs_6", + "type": "obstacle", + "x": 368, + "y": 770, + "width": 30, + "length": 30 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data31_aligned.json b/json/pre_dec_json/data31_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e5c9ed387241b99b52169a3f41d6b42b45ed9f45 --- /dev/null +++ b/json/pre_dec_json/data31_aligned.json @@ -0,0 +1,95 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 566, + "y": 777, + "size": "Small", + "vx": 0, + "vy": 50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 406, + "y": 626, + "size": "Small", + "vx": 0, + "vy": 50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 367, + "y": 1038, + "size": "Small", + "vx": 0, + "vy": 50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 152, + "y": 1050, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 488, + "y": 1376, + "size": "Small", + "vx": 0, + "vy": 50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 838, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 202, + "y": 193, + "width": 400, + "length": 400 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data320_aligned.json b/json/pre_dec_json/data320_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0b9d6202cd91e50b80cdc01469955b101c767bdf --- /dev/null +++ b/json/pre_dec_json/data320_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 795, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 296, + "y": 895, + "width": 533, + "length": 221 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data321_aligned.json b/json/pre_dec_json/data321_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..34cb43a4f76cedf1e654dc1c7e819ef8fcf65464 --- /dev/null +++ b/json/pre_dec_json/data321_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 507, + "y": 784, + "width": 132, + "length": 98 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data322_aligned.json b/json/pre_dec_json/data322_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b8e217afd5e046388b1b8d53ded29bf96757eef9 --- /dev/null +++ b/json/pre_dec_json/data322_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 903, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data323_aligned.json b/json/pre_dec_json/data323_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f0e1de0a552682d7ac421f5d20afd61457dc55c5 --- /dev/null +++ b/json/pre_dec_json/data323_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 980, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data324_aligned.json b/json/pre_dec_json/data324_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2373b7db017d3519014088e910d6462c70053ce5 --- /dev/null +++ b/json/pre_dec_json/data324_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 396, + "y": 1047, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 799, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data325_aligned.json b/json/pre_dec_json/data325_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e35e8558f3f69992819e48ba41b89240f67317be --- /dev/null +++ b/json/pre_dec_json/data325_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 504, + "y": 1567, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 382, + "y": 780, + "width": 332, + "length": 312 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data326_aligned.json b/json/pre_dec_json/data326_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6dd014066e182c8d8613951d35104918fbe73746 --- /dev/null +++ b/json/pre_dec_json/data326_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 608, + "y": 952, + "size": "Small", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 491, + "y": 1440, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 196, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data327_aligned.json b/json/pre_dec_json/data327_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..95462bcb852a057a15b8b918524861932b60aa6b --- /dev/null +++ b/json/pre_dec_json/data327_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 718, + "y": 1167, + "size": "Small", + "vx": 0, + "vy": 310, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 839, + "size": "Small", + "vx": 0, + "vy": 10, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 196, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data328_aligned.json b/json/pre_dec_json/data328_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6ff3966a556f549c4d278240e348ba918f92948f --- /dev/null +++ b/json/pre_dec_json/data328_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 683, + "y": 183, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 586, + "size": "Small", + "vx": 0, + "vy": 10, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 196, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data329_aligned.json b/json/pre_dec_json/data329_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..22df4dd3b1cb92aae85ce91fc2e7aab1319fca27 --- /dev/null +++ b/json/pre_dec_json/data329_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 689, + "y": 193, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 496, + "y": 617, + "size": "Small", + "vx": 0, + "vy": 60, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 689, + "y": 1072, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 196, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data32_aligned.json b/json/pre_dec_json/data32_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..98333e43c9c7b12a366dc231fa696155624fc5c1 --- /dev/null +++ b/json/pre_dec_json/data32_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 494, + "y": 744, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 290, + "y": 550, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 689, + "y": 888, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 972, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 692, + "y": 419, + "width": 99, + "length": 136 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data330_aligned.json b/json/pre_dec_json/data330_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..57144abecd0cf15883e0ea2d21bb703ddf428fac --- /dev/null +++ b/json/pre_dec_json/data330_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 838, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 689, + "y": 1318, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 196, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data331_aligned.json b/json/pre_dec_json/data331_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..be33f51d2323ffa89d3d63ee3d988874be097ad9 --- /dev/null +++ b/json/pre_dec_json/data331_aligned.json @@ -0,0 +1,95 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 247, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 305, + "size": "Big", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 298, + "y": 955, + "size": "Big", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1485, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 435, + "y": 453, + "vx": 0, + "vy": 69 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 478, + "y": 479, + "vx": 0, + "vy": 69 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 519, + "y": 438, + "vx": 0, + "vy": 69 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 961, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 974, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data332_aligned.json b/json/pre_dec_json/data332_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..84159a4dba41259bd66e5389903cd777f42b9179 --- /dev/null +++ b/json/pre_dec_json/data332_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 303, + "y": 1247, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 699, + "y": 1237, + "size": "Small", + "vx": 0, + "vy": -600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data333_aligned.json b/json/pre_dec_json/data333_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3d70e6a473744eae12809fd406ed6809a36e0b0c --- /dev/null +++ b/json/pre_dec_json/data333_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 698, + "y": 985, + "width": 555, + "length": 133 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data334_aligned.json b/json/pre_dec_json/data334_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..25301a4e0ab0a555205359ae0c6949e1d77e3f50 --- /dev/null +++ b/json/pre_dec_json/data334_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 980, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data335_aligned.json b/json/pre_dec_json/data335_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..25301a4e0ab0a555205359ae0c6949e1d77e3f50 --- /dev/null +++ b/json/pre_dec_json/data335_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 980, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data336_aligned.json b/json/pre_dec_json/data336_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c51134c5e6206725e73bfd84cb9964f9366e5d69 --- /dev/null +++ b/json/pre_dec_json/data336_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 397, + "y": 884, + "width": 375, + "length": 103 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data337_aligned.json b/json/pre_dec_json/data337_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..44069b6ae2bd8beb284645cbfb695f9af8a620e8 --- /dev/null +++ b/json/pre_dec_json/data337_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 499, + "y": 1199, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 545, + "y": 904, + "vx": -60, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 615, + "y": 903, + "vx": -50, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 669, + "y": 934, + "vx": -60, + "vy": 0 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 664, + "y": 830, + "vx": -60, + "vy": 0 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data338_aligned.json b/json/pre_dec_json/data338_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b14f9dcbd971a13c98018081f055a74b51b32b30 --- /dev/null +++ b/json/pre_dec_json/data338_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 697, + "y": 22, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 493, + "y": 622, + "size": "Small", + "vx": 0, + "vy": 10, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 995, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data339_aligned.json b/json/pre_dec_json/data339_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..046aedde4b6a6d061c0e57f13685050815669af3 --- /dev/null +++ b/json/pre_dec_json/data339_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 585, + "y": 790, + "size": "Small", + "vx": -20, + "vy": 130, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 496, + "y": 1434, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data33_aligned.json b/json/pre_dec_json/data33_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..88b583e4d90b1815de3898770340c786d14c55be --- /dev/null +++ b/json/pre_dec_json/data33_aligned.json @@ -0,0 +1,115 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 1177, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 506, + "y": 1575, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 296, + "y": 1279, + "size": "Small", + "vx": 0, + "vy": -480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "1", + "x": 752, + "y": 977, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 580, + "y": 1007, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 506, + "y": 947, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 603, + "y": 916, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 678, + "y": 912, + "vx": 0, + "vy": -50 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 105, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 797, + "y": 1598, + "width": 400, + "length": 800 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data340_aligned.json b/json/pre_dec_json/data340_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..19d2cc7a32245b23a314b18350d3ea6059a2095d --- /dev/null +++ b/json/pre_dec_json/data340_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 664, + "y": 1343, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1339, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 306, + "y": 1329, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data341_aligned.json b/json/pre_dec_json/data341_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f397c6be188522adbf350478d4450457e99345d2 --- /dev/null +++ b/json/pre_dec_json/data341_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 518, + "y": 879, + "size": "Small", + "vx": 0, + "vy": 60, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 795, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 97, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data342_aligned.json b/json/pre_dec_json/data342_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9ebcdd4453abe85483cbb7f346b333fe012fb058 --- /dev/null +++ b/json/pre_dec_json/data342_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 286, + "y": 630, + "size": "Small", + "vx": 0, + "vy": 4, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 417, + "y": 1042, + "vx": -50, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 479, + "y": 1031, + "vx": 30, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 532, + "y": 1058, + "vx": 30, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 795, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 97, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data343_aligned.json b/json/pre_dec_json/data343_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..cbb2b99dc06b481c80a23edc49ba2ca6d898b798 --- /dev/null +++ b/json/pre_dec_json/data343_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 909, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 716, + "y": 316, + "width": 158, + "length": 394 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data344_aligned.json b/json/pre_dec_json/data344_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..218e71d0a5cb4ca4618d9fb4032fbccf05d713a5 --- /dev/null +++ b/json/pre_dec_json/data344_aligned.json @@ -0,0 +1,91 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 296, + "y": 660, + "size": "Big", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 298, + "y": 1198, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 704, + "y": 1437, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 1648, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 946, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 948, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 592, + "y": 672, + "width": 418, + "length": 432 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data345_aligned.json b/json/pre_dec_json/data345_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ac106a97245c4367173e2d0a792176850b01f88e --- /dev/null +++ b/json/pre_dec_json/data345_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 585, + "y": 632, + "width": 61, + "length": 66 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data346_aligned.json b/json/pre_dec_json/data346_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..936307206615bc793835237fd12eb56a5ee17853 --- /dev/null +++ b/json/pre_dec_json/data346_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 205, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 651, + "y": 726, + "width": 30, + "length": 30 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 652, + "y": 813, + "width": 30, + "length": 30 + }, + { + "id": "obs_5", + "type": "obstacle", + "x": 654, + "y": 904, + "width": 30, + "length": 30 + }, + { + "id": "obs_6", + "type": "obstacle", + "x": 657, + "y": 998, + "width": 30, + "length": 30 + }, + { + "id": "obs_7", + "type": "obstacle", + "x": 657, + "y": 1081, + "width": 30, + "length": 30 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data347_aligned.json b/json/pre_dec_json/data347_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2b8de16a8aef07424c1940d0f2fd53d3b52a430e --- /dev/null +++ b/json/pre_dec_json/data347_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 490, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 710, + "y": 437, + "size": "Big", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 289, + "y": 1313, + "size": "Small", + "vx": 0, + "vy": -460, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 472, + "y": 1448, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 895, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 508, + "y": 1068, + "width": 80, + "length": 99 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data348_aligned.json b/json/pre_dec_json/data348_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..245c78552f234e6664b02fa6974e722cd608fc13 --- /dev/null +++ b/json/pre_dec_json/data348_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 309, + "y": 1431, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 534, + "y": 1529, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data349_aligned.json b/json/pre_dec_json/data349_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..12004b9247e70110686c9c508c809a4d7a6eca22 --- /dev/null +++ b/json/pre_dec_json/data349_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 919, + "y": 1001, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 151, + "y": 1145, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 722, + "y": 1201, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 716, + "y": 1392, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data34_aligned.json b/json/pre_dec_json/data34_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..fe426f1028ba25654dc21ad8064d024cc485baa6 --- /dev/null +++ b/json/pre_dec_json/data34_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 825, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 603, + "y": 475, + "size": "Small", + "vx": -20, + "vy": 120, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 896, + "y": 984, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 203, + "y": 984, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data350_aligned.json b/json/pre_dec_json/data350_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1c50ba1049a5fa0110ad5e89d4b2a257fb51782d --- /dev/null +++ b/json/pre_dec_json/data350_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1134, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1353, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 483, + "y": 999, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 553, + "y": 995, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 404, + "y": 996, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 987, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 104, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data351_aligned.json b/json/pre_dec_json/data351_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..37356698c55df0796e61849a9470a7d1737e0caf --- /dev/null +++ b/json/pre_dec_json/data351_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 989, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 205, + "y": 989, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data352_aligned.json b/json/pre_dec_json/data352_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..44e8d1971628120df7ba8d8d592bae73f8c3e1d4 --- /dev/null +++ b/json/pre_dec_json/data352_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 730, + "y": 980, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 708, + "y": 1572, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 289, + "y": 1437, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data353_aligned.json b/json/pre_dec_json/data353_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..89cd50358ac1f1d97e63b964ccd2e6c8c0a3b1ea --- /dev/null +++ b/json/pre_dec_json/data353_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 310, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 311, + "y": 1201, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 509, + "y": 858, + "width": 74, + "length": 95 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data354_aligned.json b/json/pre_dec_json/data354_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4d955dd0d67f3c8200ee8893886ae00191c43b89 --- /dev/null +++ b/json/pre_dec_json/data354_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 771, + "size": "Big", + "vx": 0, + "vy": 50, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 724, + "y": 671, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data355_aligned.json b/json/pre_dec_json/data355_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b768821dcbfd569d1537ea89dfe975123e77c3e8 --- /dev/null +++ b/json/pre_dec_json/data355_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 770, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data356_aligned.json b/json/pre_dec_json/data356_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..db712a34f95e5c12fb2df8b298f124d54f280811 --- /dev/null +++ b/json/pre_dec_json/data356_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 370, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 1394, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 946, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 948, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 498, + "y": 804, + "width": 594, + "length": 406 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data357_aligned.json b/json/pre_dec_json/data357_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..87cc2a0cfb32fea96807126423d5e175b0114589 --- /dev/null +++ b/json/pre_dec_json/data357_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 260, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 505, + "y": 633, + "size": "Small", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 303, + "y": 1134, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 103, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 797, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 317, + "y": 735, + "width": 167, + "length": 45 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data358_aligned.json b/json/pre_dec_json/data358_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..bc64bfb46ade2d43ca1f758f4193b98df7a7806f --- /dev/null +++ b/json/pre_dec_json/data358_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 305, + "y": 61, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 298, + "y": 1278, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 507, + "y": 827, + "width": 113, + "length": 144 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data359_aligned.json b/json/pre_dec_json/data359_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..591322d332824f2302b4583ba121218ef49d5f45 --- /dev/null +++ b/json/pre_dec_json/data359_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 201, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 506, + "y": 642, + "width": 106, + "length": 128 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data35_aligned.json b/json/pre_dec_json/data35_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..d1ad61aab70b7feb52b923ce33b90d6175d87b70 --- /dev/null +++ b/json/pre_dec_json/data35_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data360_aligned.json b/json/pre_dec_json/data360_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f0d117e2dae696d85616eb2cd69d3b8c73ffaaa7 --- /dev/null +++ b/json/pre_dec_json/data360_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 491, + "y": 1201, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 499, + "y": 513, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 105, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data361_aligned.json b/json/pre_dec_json/data361_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2dbd1722faf6a1606a1a4a7262c34ea56ae0c824 --- /dev/null +++ b/json/pre_dec_json/data361_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 320, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 651, + "y": 852, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 992, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data362_aligned.json b/json/pre_dec_json/data362_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e1c6d7446c1f620f01ecfc334543d1abdebfd91c --- /dev/null +++ b/json/pre_dec_json/data362_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 380, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 479, + "y": 1518, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 602, + "y": 1320, + "width": 41, + "length": 1345 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data363_aligned.json b/json/pre_dec_json/data363_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..43e76059048f0e4b92961ee5c5d3e8047aeeeef5 --- /dev/null +++ b/json/pre_dec_json/data363_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 505, + "y": 1247, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 683, + "y": 947, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 199, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data364_aligned.json b/json/pre_dec_json/data364_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c31126efa14aba73cfab16740ffbdb6c6d924f7b --- /dev/null +++ b/json/pre_dec_json/data364_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 301, + "y": 1087, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 99, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 898, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 624, + "y": 991, + "width": 329, + "length": 307 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data365_aligned.json b/json/pre_dec_json/data365_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7e19c0f5f8fcf0400871418860e8948fd3a1b1f4 --- /dev/null +++ b/json/pre_dec_json/data365_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1389, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 99, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 898, + "y": 995, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data366_aligned.json b/json/pre_dec_json/data366_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..cba2c0667c9398dfec7aba56d9a9ce98c70a4136 --- /dev/null +++ b/json/pre_dec_json/data366_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 250, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 895, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 202, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 501, + "y": 391, + "width": 189, + "length": 253 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data367_aligned.json b/json/pre_dec_json/data367_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5b669dae809e8baed427d7d30f5f2f787b1fb6a9 --- /dev/null +++ b/json/pre_dec_json/data367_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 317, + "y": 69, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 515, + "y": 533, + "size": "Small", + "vx": 0, + "vy": 10, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data368_aligned.json b/json/pre_dec_json/data368_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ae7b1b79f0841e6cbf81e034f7b5ab0dfabdea32 --- /dev/null +++ b/json/pre_dec_json/data368_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 1585, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 196, + "y": 1428, + "size": "Small", + "vx": 0, + "vy": -555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 174, + "y": 952, + "size": "Small", + "vx": 0, + "vy": -555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 974, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data369_aligned.json b/json/pre_dec_json/data369_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2ffff7805ced9ba4eff081ea99a77c076d7c7d55 --- /dev/null +++ b/json/pre_dec_json/data369_aligned.json @@ -0,0 +1,95 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 710, + "y": 853, + "size": "Big", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 899, + "y": 895, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 960, + "y": 722, + "size": "Nm", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 1194, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 702, + "y": 1450, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 968, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 451, + "y": 532, + "width": 110, + "length": 80 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data36_aligned.json b/json/pre_dec_json/data36_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..cb8c1daee52a601a6d706a80eea615baa4a9bd25 --- /dev/null +++ b/json/pre_dec_json/data36_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 764, + "y": 821, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 990, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 994, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data370_aligned.json b/json/pre_dec_json/data370_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..01c2dd64e41487f2620e81f6e230706796804f33 --- /dev/null +++ b/json/pre_dec_json/data370_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 314, + "y": 1163, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 436, + "y": 881, + "vx": -30, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 496, + "y": 879, + "vx": -20, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 556, + "y": 882, + "vx": -10, + "vy": 0 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 608, + "y": 860, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data371_aligned.json b/json/pre_dec_json/data371_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..668430c4f43fc993c74131e95b2450eeafd0beb4 --- /dev/null +++ b/json/pre_dec_json/data371_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 512, + "y": 1226, + "size": "Small", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 718, + "y": 926, + "size": "Nm", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data372_aligned.json b/json/pre_dec_json/data372_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..db711d219d4b4a960ce29e46f4601587dd1e6f53 --- /dev/null +++ b/json/pre_dec_json/data372_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 520, + "y": 862, + "size": "Small", + "vx": 0, + "vy": 10, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 387, + "y": 1516, + "width": 90, + "length": 230 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data373_aligned.json b/json/pre_dec_json/data373_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..89495a1902d4109b9c268c1fbf7f3308a34b2040 --- /dev/null +++ b/json/pre_dec_json/data373_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 626, + "y": 878, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 204, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data374_aligned.json b/json/pre_dec_json/data374_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8305da5b1a696e4ac9e50f38b42b5721a3010735 --- /dev/null +++ b/json/pre_dec_json/data374_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 204, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 699, + "y": 1136, + "width": 522, + "length": 182 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data375_aligned.json b/json/pre_dec_json/data375_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..621c484686d43cbf3b74d3ad8cd3448e8e31ee88 --- /dev/null +++ b/json/pre_dec_json/data375_aligned.json @@ -0,0 +1,99 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 320, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 551, + "y": 622, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 475, + "y": 1012, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 392, + "y": 849, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 281, + "y": 1004, + "size": "Nm", + "vx": 0, + "vy": -100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 143, + "y": 757, + "size": "Nm", + "vx": 0, + "vy": -100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "0", + "x": 94, + "y": 527, + "size": "Nm", + "vx": 0, + "vy": -100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 995, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data376_aligned.json b/json/pre_dec_json/data376_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..07778fd1624e60a8d9683c701201937fe04e9a06 --- /dev/null +++ b/json/pre_dec_json/data376_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 370, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 567, + "y": 785, + "size": "Small", + "vx": 8, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 713, + "y": 67, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 199, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data377_aligned.json b/json/pre_dec_json/data377_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f3851978c6a107f79f757525e90ba11ca2adcc09 --- /dev/null +++ b/json/pre_dec_json/data377_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 296, + "y": 1535, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 867, + "y": 991, + "width": 260, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data378_aligned.json b/json/pre_dec_json/data378_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..284820012a61af674a81fee2bd708d508609fcfb --- /dev/null +++ b/json/pre_dec_json/data378_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 675, + "y": 803, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 867, + "y": 991, + "width": 260, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 391, + "y": 1156, + "width": 592, + "length": 263 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data379_aligned.json b/json/pre_dec_json/data379_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..24fefb05d56c83e97823366c88edc1cf6fe93d4d --- /dev/null +++ b/json/pre_dec_json/data379_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 490, + "y": 1515, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 272, + "y": 1332, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 537, + "y": 991, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 596, + "y": 985, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 653, + "y": 955, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 813, + "y": 1594, + "width": 370, + "length": 800 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data37_aligned.json b/json/pre_dec_json/data37_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..832e1ba99e984852a6962bdd73296f99ec15fa5f --- /dev/null +++ b/json/pre_dec_json/data37_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 650, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 510, + "y": 773, + "size": "Small", + "vx": 0, + "vy": 650, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1249, + "size": "Small", + "vx": 0, + "vy": 650, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 297, + "y": 1083, + "size": "Small", + "vx": 0, + "vy": -600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 995, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data380_aligned.json b/json/pre_dec_json/data380_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7a99a5bfaf44b733fce738bb7b3b116a4fdacd81 --- /dev/null +++ b/json/pre_dec_json/data380_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 390, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 867, + "y": 993, + "width": 260, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 386, + "y": 873, + "width": 650, + "length": 374 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data381_aligned.json b/json/pre_dec_json/data381_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8c057d0e38e26736e01b7eaea6e1ab0e2e6ad5e8 --- /dev/null +++ b/json/pre_dec_json/data381_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 484, + "y": 1061, + "size": "Small", + "vx": 0, + "vy": 505, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 686, + "y": 1244, + "size": "Small", + "vx": 0, + "vy": 505, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 700, + "y": 76, + "size": "Small", + "vx": 0, + "vy": 505, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 939, + "y": 1309, + "size": "Nm", + "vx": 0, + "vy": 190, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 198, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 465, + "y": 860, + "width": 83, + "length": 65 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data382_aligned.json b/json/pre_dec_json/data382_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ea279e24210c3cc026e745e31c08a8d5908e1fe9 --- /dev/null +++ b/json/pre_dec_json/data382_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 370, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 435, + "y": 643, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 120, + "y": 830, + "size": "Small", + "vx": 0, + "vy": -390, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 117, + "y": 1162, + "size": "Small", + "vx": 0, + "vy": -390, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 795, + "y": 990, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data383_aligned.json b/json/pre_dec_json/data383_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..071a49dc99da51f3566a9b8115ba23283aa5ac8a --- /dev/null +++ b/json/pre_dec_json/data383_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 491, + "y": 1193, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 283, + "y": 914, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data384_aligned.json b/json/pre_dec_json/data384_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ae04d901d00aec8533e54fdfa1814179f0f1b6e2 --- /dev/null +++ b/json/pre_dec_json/data384_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 515, + "y": 730, + "size": "Small", + "vx": 0, + "vy": 60, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data385_aligned.json b/json/pre_dec_json/data385_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ec58edf4e24ea8bef0e5917133f6d80f599912e1 --- /dev/null +++ b/json/pre_dec_json/data385_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 270, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 487, + "y": 1277, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 306, + "y": 977, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 555, + "y": 522, + "width": 63, + "length": 325 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data386_aligned.json b/json/pre_dec_json/data386_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..cba5154eda1d9317c9b177e85514390e197a0501 --- /dev/null +++ b/json/pre_dec_json/data386_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 380, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 297, + "y": 1302, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 292, + "y": 964, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 487, + "y": 912, + "vx": -20, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 480, + "y": 890, + "vx": -20, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 485, + "y": 961, + "vx": -20, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data387_aligned.json b/json/pre_dec_json/data387_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1c2f3adc4dc7981d595c0509a799c050bee6ed5d --- /dev/null +++ b/json/pre_dec_json/data387_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 270, + "y": 1106, + "size": "Small", + "vx": 0, + "vy": -350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 272, + "y": 656, + "size": "Small", + "vx": 0, + "vy": -350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data388_aligned.json b/json/pre_dec_json/data388_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9e09168617cb0a6a31be9bcecea07b1ba10e7971 --- /dev/null +++ b/json/pre_dec_json/data388_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 296, + "y": 1151, + "size": "Small", + "vx": 0, + "vy": -600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data389_aligned.json b/json/pre_dec_json/data389_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9e206955493e9bf431f2bc2e67ea5933bf85b027 --- /dev/null +++ b/json/pre_dec_json/data389_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 60, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 725, + "y": 510, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 505, + "y": 808, + "size": "Big", + "vx": 0, + "vy": -150, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 199, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data38_aligned.json b/json/pre_dec_json/data38_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0033cd4802f8bff18535cb99094d7e221d4d3b43 --- /dev/null +++ b/json/pre_dec_json/data38_aligned.json @@ -0,0 +1,87 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 420, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 486, + "y": 1028, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 157, + "y": 706, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 207, + "y": 1172, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 485, + "y": 1515, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 995, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data390_aligned.json b/json/pre_dec_json/data390_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7963e2d5509ddcd904f0268f4b6074ac90ead7af --- /dev/null +++ b/json/pre_dec_json/data390_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 495, + "y": 1078, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 120, + "y": 718, + "size": "Small", + "vx": 0, + "vy": -450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 326, + "y": 1059, + "size": "Small", + "vx": 0, + "vy": -450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 168, + "y": 1115, + "size": "Small", + "vx": 0, + "vy": -450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 974, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data391_aligned.json b/json/pre_dec_json/data391_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c16708bed2db50861a33ec51d0fbc95c7e44269f --- /dev/null +++ b/json/pre_dec_json/data391_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 261, + "y": 1509, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 503, + "y": 812, + "width": 178, + "length": 227 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data392_aligned.json b/json/pre_dec_json/data392_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a31c4c42f3f5d8a30085c95975bee4e84894fe14 --- /dev/null +++ b/json/pre_dec_json/data392_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 261, + "y": 1509, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 501, + "y": 748, + "width": 75, + "length": 88 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data393_aligned.json b/json/pre_dec_json/data393_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..32c6fd2d9c96af0b2f1b310f7bc2417920514362 --- /dev/null +++ b/json/pre_dec_json/data393_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 626, + "y": 1291, + "size": "Nm", + "vx": 0, + "vy": 230, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 901, + "y": 968, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 508, + "y": 708, + "width": 483, + "length": 458 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data394_aligned.json b/json/pre_dec_json/data394_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f7ba673f1e8b08a9e582cfe473270a2c0deb4668 --- /dev/null +++ b/json/pre_dec_json/data394_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 150, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 468, + "y": 1140, + "size": "Small", + "vx": 0, + "vy": -270, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 294, + "y": 955, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data395_aligned.json b/json/pre_dec_json/data395_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..823cc35c5f8824c8e30bc45192a319016aafc02f --- /dev/null +++ b/json/pre_dec_json/data395_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 490, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 479, + "y": 952, + "size": "Small", + "vx": 0, + "vy": 30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 283, + "y": 634, + "size": "Small", + "vx": 0, + "vy": -200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data396_aligned.json b/json/pre_dec_json/data396_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4fbfae6da20266affc5c6e294c0c780b54cc27b7 --- /dev/null +++ b/json/pre_dec_json/data396_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 956, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 109, + "y": 808, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 316, + "y": 1279, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data397_aligned.json b/json/pre_dec_json/data397_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..de14866d5991c9b06756d3cc532959710e207a88 --- /dev/null +++ b/json/pre_dec_json/data397_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 315, + "y": 1109, + "width": 492, + "length": 251 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data398_aligned.json b/json/pre_dec_json/data398_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..bea450541c9b23900b940e2369b6f7f91943d627 --- /dev/null +++ b/json/pre_dec_json/data398_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 326, + "y": 948, + "width": 492, + "length": 251 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data399_aligned.json b/json/pre_dec_json/data399_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0d81375cab1a61d6f34dcc0fb60d22522550a77a --- /dev/null +++ b/json/pre_dec_json/data399_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 111, + "y": 1113, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data39_aligned.json b/json/pre_dec_json/data39_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c0bca0457a5f1cfce865a7227a881c54b1d827ba --- /dev/null +++ b/json/pre_dec_json/data39_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 230, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 811, + "y": 957, + "size": "Nm", + "vx": -138, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 649, + "y": 999, + "size": "Nm", + "vx": -138, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 194, + "y": 295, + "width": 400, + "length": 600 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 607, + "y": 1590, + "width": 2000, + "length": 850 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 513, + "y": 418, + "width": 203, + "length": 225 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data3_aligned.json b/json/pre_dec_json/data3_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..90e82b60fcbefe88ced29cbc766c89e496033c88 --- /dev/null +++ b/json/pre_dec_json/data3_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 220, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 974, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 972, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 399, + "y": 707, + "width": 392, + "length": 456 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data400_aligned.json b/json/pre_dec_json/data400_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7053a93b55aa6a4114c8fb041bc7b74f67cedcac --- /dev/null +++ b/json/pre_dec_json/data400_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 977, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data401_aligned.json b/json/pre_dec_json/data401_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ff7e3c7d0f1012963dc222c5be8884154ceb8925 --- /dev/null +++ b/json/pre_dec_json/data401_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 700, + "y": 833, + "size": "Big", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 779, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 972, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data402_aligned.json b/json/pre_dec_json/data402_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..714a8d9097e284728384f4d2f38e0032a6dab222 --- /dev/null +++ b/json/pre_dec_json/data402_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 493, + "y": 1037, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 699, + "y": 833, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 692, + "y": 1228, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 199, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data403_aligned.json b/json/pre_dec_json/data403_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..29ba2c3501d873ee900b51b9ff17e3f53a5131ba --- /dev/null +++ b/json/pre_dec_json/data403_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 839, + "size": "Small", + "vx": 0, + "vy": 370, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 100, + "y": 959, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 799, + "y": 961, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data404_aligned.json b/json/pre_dec_json/data404_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1679060a24161b3d2eeab7d4ac22696747865c0f --- /dev/null +++ b/json/pre_dec_json/data404_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 968, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 94, + "y": 965, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data405_aligned.json b/json/pre_dec_json/data405_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ce2777a2499505f44ebb9cfdfb2c2767a1218715 --- /dev/null +++ b/json/pre_dec_json/data405_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 255, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 750, + "y": 820, + "size": "Small", + "vx": -300, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 154, + "y": 676, + "size": "Small", + "vx": 290, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 152, + "y": 947, + "size": "Small", + "vx": 0, + "vy": -350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 362, + "y": 1084, + "size": "Small", + "vx": 0, + "vy": -350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 293, + "width": 400, + "length": 600 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 294, + "width": 200, + "length": 600 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data406_aligned.json b/json/pre_dec_json/data406_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..65f476d81e046892456767b141547365bcb0cde5 --- /dev/null +++ b/json/pre_dec_json/data406_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 296, + "y": 900, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 961, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 301, + "y": 759, + "width": 596, + "length": 65 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data407_aligned.json b/json/pre_dec_json/data407_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b8d76fe2af899d1a2e03a53feba9b44d55a0f6dc --- /dev/null +++ b/json/pre_dec_json/data407_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 207, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 522, + "y": 1674, + "size": "Big", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 970, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 959, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 603, + "y": 640, + "width": 340, + "length": 395 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data408_aligned.json b/json/pre_dec_json/data408_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..472dd1734adadeabc4c233c8ec81aac850cc22a6 --- /dev/null +++ b/json/pre_dec_json/data408_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 298, + "y": 601, + "size": "Big", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 498, + "y": 416, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 965, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data409_aligned.json b/json/pre_dec_json/data409_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a8f3ff1400895c7f735082446744af413823540c --- /dev/null +++ b/json/pre_dec_json/data409_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 460, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 287, + "y": 759, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 965, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data40_aligned.json b/json/pre_dec_json/data40_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..985123608940a6b134eb461c7d6ebeb2ae9b0957 --- /dev/null +++ b/json/pre_dec_json/data40_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 506, + "y": 1066, + "size": "Small", + "vx": 0, + "vy": 600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 359, + "y": 889, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 439, + "y": 888, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 515, + "y": 860, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 601, + "y": 884, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 142, + "y": 995, + "width": 280, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 828, + "y": 993, + "width": 340, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data410_aligned.json b/json/pre_dec_json/data410_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..092a1b8fea92f67675415f1fd44fee5ccafac3cd --- /dev/null +++ b/json/pre_dec_json/data410_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 230, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 356, + "y": 1331, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 103, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 797, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 514, + "y": 714, + "width": 141, + "length": 115 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data411_aligned.json b/json/pre_dec_json/data411_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6e8dc2252e79b2a627fb2c4eda62ffc02c40f2a6 --- /dev/null +++ b/json/pre_dec_json/data411_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 372, + "y": 959, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 965, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 519, + "y": 481, + "width": 151, + "length": 136 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data412_aligned.json b/json/pre_dec_json/data412_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6e40197486aa12d68a5e80d6a8e29fd95ece9951 --- /dev/null +++ b/json/pre_dec_json/data412_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 495, + "y": 1078, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 111, + "y": 607, + "size": "Small", + "vx": 0, + "vy": -555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 650, + "y": 792, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 974, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 625, + "y": 577, + "width": 62, + "length": 56 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data413_aligned.json b/json/pre_dec_json/data413_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c28e111f358ba893195566d172ec5fdafcc83bc7 --- /dev/null +++ b/json/pre_dec_json/data413_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 208, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 965, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 399, + "y": 665, + "width": 371, + "length": 306 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data414_aligned.json b/json/pre_dec_json/data414_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..61694970a837e1817a7c2382d8243468179329a6 --- /dev/null +++ b/json/pre_dec_json/data414_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 767, + "y": 1221, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1087, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 198, + "y": 987, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data415_aligned.json b/json/pre_dec_json/data415_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..da14a03c1480d05695e60d632101ae09f5642187 --- /dev/null +++ b/json/pre_dec_json/data415_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 270, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 965, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 406, + "y": 735, + "width": 395, + "length": 377 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data416_aligned.json b/json/pre_dec_json/data416_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..cab3b7b34e525b717c8220ffb7f7345491a10ee8 --- /dev/null +++ b/json/pre_dec_json/data416_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 220, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1565, + "size": "Big", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 965, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 399, + "y": 637, + "width": 397, + "length": 301 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data417_aligned.json b/json/pre_dec_json/data417_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..94b05241a6c864e64694a5630f700ee58c722d9f --- /dev/null +++ b/json/pre_dec_json/data417_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 793, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 109, + "y": 983, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 514, + "y": 1090, + "width": 105, + "length": 782 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data418_aligned.json b/json/pre_dec_json/data418_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..93af1cda8b0d9dee749522d98c9a35df0acb992c --- /dev/null +++ b/json/pre_dec_json/data418_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1565, + "size": "Big", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 965, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 478, + "y": 901, + "width": 555, + "length": 262 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data419_aligned.json b/json/pre_dec_json/data419_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1f6a9d89c4df76615c18ded363b67b7bb571a550 --- /dev/null +++ b/json/pre_dec_json/data419_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 100, + "y": 1389, + "size": "Small", + "vx": 0, + "vy": -416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 968, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data41_aligned.json b/json/pre_dec_json/data41_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..14c1065f088b6480fa1b8e339b3473debf284b92 --- /dev/null +++ b/json/pre_dec_json/data41_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 418, + "y": 1077, + "size": "Small", + "vx": 416, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 601, + "y": 930, + "vx": 50, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 498, + "y": 931, + "vx": 50, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 393, + "y": 962, + "vx": 50, + "vy": 0 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 285, + "y": 933, + "vx": 50, + "vy": 0 + }, + { + "id": "ped_5", + "type": "pedestrian", + "x": 146, + "y": 927, + "vx": 50, + "vy": 0 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data420_aligned.json b/json/pre_dec_json/data420_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4de65690aa1c0bb8be3ae6d8d4f1d5efe0a8cf19 --- /dev/null +++ b/json/pre_dec_json/data420_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 493, + "y": 1342, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 100, + "y": 959, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 799, + "y": 961, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 451, + "y": 693, + "width": 268, + "length": 367 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data421_aligned.json b/json/pre_dec_json/data421_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8f232c70d611ec235b44061fe2f3014e8787b57a --- /dev/null +++ b/json/pre_dec_json/data421_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 654, + "y": 640, + "size": "Small", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 1307, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 702, + "y": 37, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 983, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data422_aligned.json b/json/pre_dec_json/data422_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0f6016fee95ffd67e1fb809391c6859170f42bc3 --- /dev/null +++ b/json/pre_dec_json/data422_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 425, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 638, + "size": "Small", + "vx": 0, + "vy": 208, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 695, + "y": 273, + "size": "Small", + "vx": 0, + "vy": 290, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 704, + "y": 1424, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 983, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data423_aligned.json b/json/pre_dec_json/data423_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..690eba8cdae11ae440c85fd34071fc12acac7ae4 --- /dev/null +++ b/json/pre_dec_json/data423_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 500, + "y": 592, + "size": "Small", + "vx": 50, + "vy": 80, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 695, + "y": 777, + "size": "Small", + "vx": 0, + "vy": 455, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 897, + "y": 1252, + "size": "Small", + "vx": 0, + "vy": 455, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 102, + "y": 957, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data424_aligned.json b/json/pre_dec_json/data424_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5e0540415d205f54678caa89792f0d6abbf2da8f --- /dev/null +++ b/json/pre_dec_json/data424_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 504, + "y": 1309, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 617, + "y": 596, + "size": "Small", + "vx": -50, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 704, + "y": 1524, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 983, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data425_aligned.json b/json/pre_dec_json/data425_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3182e8823ccd946fc560afbbace6bff6d37964b3 --- /dev/null +++ b/json/pre_dec_json/data425_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 504, + "y": 1009, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 695, + "y": 349, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 704, + "y": 1424, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 983, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 487, + "y": 408, + "width": 147, + "length": 136 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data426_aligned.json b/json/pre_dec_json/data426_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..56d1bfa5a876eabf6ed766c1db94e9706deb181a --- /dev/null +++ b/json/pre_dec_json/data426_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 506, + "y": 837, + "size": "Small", + "vx": 0, + "vy": 69, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 983, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data427_aligned.json b/json/pre_dec_json/data427_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f13a0dac3473329a963290fe1a25c71b45471f3b --- /dev/null +++ b/json/pre_dec_json/data427_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 274, + "y": 1189, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 706, + "y": 1213, + "size": "Small", + "vx": 0, + "vy": -410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 1548, + "width": 200, + "length": 900 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 1551, + "width": 200, + "length": 900 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 507, + "y": 1548, + "width": 200, + "length": 900 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data428_aligned.json b/json/pre_dec_json/data428_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..29fbd4a0ab35ee81ee5a882d1178c7e83d172bd3 --- /dev/null +++ b/json/pre_dec_json/data428_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 983, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data429_aligned.json b/json/pre_dec_json/data429_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e39ce9e72a8d28ef8c0207cbd58f5ff6fb787343 --- /dev/null +++ b/json/pre_dec_json/data429_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 295, + "y": 368, + "size": "Small", + "vx": 0, + "vy": -420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 793, + "y": 293, + "width": 400, + "length": 600 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 106, + "y": 294, + "width": 200, + "length": 600 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 501, + "y": 1108, + "width": 982, + "length": 194 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data42_aligned.json b/json/pre_dec_json/data42_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7778cafda4cfd1710197299f3bc73f89812da7eb --- /dev/null +++ b/json/pre_dec_json/data42_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 669, + "y": 641, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 161, + "y": 1384, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 97, + "y": 703, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 918, + "y": 993, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 388, + "y": 1027, + "width": 708, + "length": 136 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data430_aligned.json b/json/pre_dec_json/data430_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f38c733da5b56b67e4f7702bef3bb3ef32b2a7e9 --- /dev/null +++ b/json/pre_dec_json/data430_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 237, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 911, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 983, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 549, + "y": 391, + "width": 97, + "length": 97 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data431_aligned.json b/json/pre_dec_json/data431_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..81a0121418c3652a5f00fa95c955592fca3a0a93 --- /dev/null +++ b/json/pre_dec_json/data431_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 983, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 602, + "y": 1147, + "width": 395, + "length": 328 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data432_aligned.json b/json/pre_dec_json/data432_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..03a3f9aa394efb3e54f4778fd2404d135a9a57ac --- /dev/null +++ b/json/pre_dec_json/data432_aligned.json @@ -0,0 +1,91 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 280, + "y": 198, + "size": "Big", + "vx": 0, + "vy": 10, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 772, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 291, + "y": 676, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "1", + "x": 472, + "y": 477, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "1", + "x": 660, + "y": 479, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "1", + "x": 825, + "y": 682, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data433_aligned.json b/json/pre_dec_json/data433_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e49b981f5be69e790a786717ee1a5d8ee4823d4c --- /dev/null +++ b/json/pre_dec_json/data433_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 709, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 321, + "y": 392, + "size": "Small", + "vx": 0, + "vy": 355, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 561, + "y": 531, + "vx": 0, + "vy": -25 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 638, + "y": 531, + "vx": 0, + "vy": -25 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 714, + "y": 530, + "vx": 0, + "vy": -25 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 896, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data434_aligned.json b/json/pre_dec_json/data434_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f6a21c3ac34ab44bda4b05e9470ebac9904a2c1d --- /dev/null +++ b/json/pre_dec_json/data434_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 459, + "y": 635, + "size": "Small", + "vx": -15, + "vy": -50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 302, + "y": 870, + "size": "Small", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 100, + "y": 970, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 801, + "y": 974, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data435_aligned.json b/json/pre_dec_json/data435_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..93e09851e5eb92605de39cc5a8766ddaa3ea3bcc --- /dev/null +++ b/json/pre_dec_json/data435_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 380, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 1155, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 700, + "y": 1152, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 978, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 700, + "y": 762, + "width": 590, + "length": 278 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data436_aligned.json b/json/pre_dec_json/data436_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4ac019cd538312545ae0b9cdc47a39199480ec3e --- /dev/null +++ b/json/pre_dec_json/data436_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 390, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 510, + "y": 999, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 727, + "y": 684, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 720, + "y": 1016, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 896, + "y": 778, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 159, + "y": 992, + "width": 315, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 347, + "y": 705, + "width": 241, + "length": 155 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data437_aligned.json b/json/pre_dec_json/data437_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..202a137fa1f7208fd4d39e8717ae736afeb6f2df --- /dev/null +++ b/json/pre_dec_json/data437_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 208, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 384, + "y": 1142, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 150, + "y": 993, + "width": 300, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 451, + "y": 603, + "width": 238, + "length": 217 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data438_aligned.json b/json/pre_dec_json/data438_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..40586ae72163bf0fc4de8f632bbd6255a5d4e622 --- /dev/null +++ b/json/pre_dec_json/data438_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 711, + "y": 637, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 727, + "y": 1073, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 726, + "y": 1399, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 201, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 892, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 598, + "y": 857, + "width": 352, + "length": 57 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data439_aligned.json b/json/pre_dec_json/data439_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0520b4a02cfd41afbf4055d65cbc39445e239ff5 --- /dev/null +++ b/json/pre_dec_json/data439_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 961, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 410, + "y": 650, + "width": 805, + "length": 56 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data43_aligned.json b/json/pre_dec_json/data43_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..203c76a483b1596361cb32636a027bb11d511cbf --- /dev/null +++ b/json/pre_dec_json/data43_aligned.json @@ -0,0 +1,127 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 370, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 725, + "y": 827, + "size": "Small", + "vx": 0, + "vy": 440, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 270, + "y": 721, + "size": "Small", + "vx": 0, + "vy": -100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 269, + "y": 294, + "size": "Small", + "vx": 0, + "vy": -100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 359, + "y": 927, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 433, + "y": 939, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 449, + "y": 1013, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 500, + "y": 898, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_5", + "type": "pedestrian", + "x": 601, + "y": 830, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_6", + "type": "pedestrian", + "x": 452, + "y": 806, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_7", + "type": "pedestrian", + "x": 572, + "y": 980, + "vx": 0, + "vy": -50 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 102, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 898, + "y": 995, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data440_aligned.json b/json/pre_dec_json/data440_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..33230d4bb405d620bcdf48a576ef4cee543f5eb5 --- /dev/null +++ b/json/pre_dec_json/data440_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 849, + "y": 984, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 148, + "y": 984, + "width": 300, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 498, + "y": 889, + "width": 369, + "length": 124 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data441_aligned.json b/json/pre_dec_json/data441_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a1eda0c427f64c621a1793ac1999837c8a031bc6 --- /dev/null +++ b/json/pre_dec_json/data441_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 302, + "y": 1550, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 237, + "y": 1304, + "vx": -50, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 320, + "y": 1348, + "vx": -50, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 961, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 676, + "y": 825, + "width": 247, + "length": 847 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data442_aligned.json b/json/pre_dec_json/data442_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..be096a7010e9fa44d6fbfaa052504bae03f9f2d8 --- /dev/null +++ b/json/pre_dec_json/data442_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 376, + "y": 936, + "size": "Small", + "vx": 50, + "vy": -25, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 317, + "y": 1229, + "size": "Small", + "vx": 0, + "vy": -277, + "ay": 0, + "accel_mode": "Z" + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data443_aligned.json b/json/pre_dec_json/data443_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7e91ab4eeb4439e499bcd17d74d5c1aacd36c194 --- /dev/null +++ b/json/pre_dec_json/data443_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 490, + "y": 1171, + "size": "Small", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 701, + "y": 510, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 896, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 96, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data444_aligned.json b/json/pre_dec_json/data444_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5c8211589dc6bb49212e1f1dceb147b9ca19050e --- /dev/null +++ b/json/pre_dec_json/data444_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 519, + "y": 888, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 682, + "y": 1178, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 893, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 203, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 520, + "y": 558, + "width": 230, + "length": 73 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data445_aligned.json b/json/pre_dec_json/data445_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..abb23cb978cb8dadf0f4eae40f591498c58f0b13 --- /dev/null +++ b/json/pre_dec_json/data445_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 510, + "y": 1614, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 980, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 980, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data446_aligned.json b/json/pre_dec_json/data446_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e1ff2781845346b067a9d3799e94531c451a2bf3 --- /dev/null +++ b/json/pre_dec_json/data446_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 680, + "y": 592, + "size": "Small", + "vx": -15, + "vy": -25, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 706, + "y": 1189, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 959, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data447_aligned.json b/json/pre_dec_json/data447_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6721e61e0e9f6ff689dd4488bd1b3ac3514ae6b9 --- /dev/null +++ b/json/pre_dec_json/data447_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 377, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 542, + "y": 514, + "size": "Small", + "vx": 0, + "vy": 50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 337, + "y": 1041, + "size": "Small", + "vx": 0, + "vy": -416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 1698, + "width": 400, + "length": 800 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 1600, + "width": 200, + "length": 800 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data448_aligned.json b/json/pre_dec_json/data448_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..285a0c1760d60d5d77a16b64d9b8f519f9a272a6 --- /dev/null +++ b/json/pre_dec_json/data448_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 302, + "y": 418, + "size": "Big", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 428, + "y": 646, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 480, + "y": 700, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 528, + "y": 664, + "vx": 0, + "vy": -50 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 964, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data449_aligned.json b/json/pre_dec_json/data449_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2cbbb4f8d4050cca8c32ef3ec26fa51d0f23c7e1 --- /dev/null +++ b/json/pre_dec_json/data449_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 895, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 201, + "y": 1201, + "width": 400, + "length": 1600 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 602, + "y": 1310, + "width": 354, + "length": 132 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data44_aligned.json b/json/pre_dec_json/data44_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8cc11c6cbe866909f57a042903b67b2a94a8821e --- /dev/null +++ b/json/pre_dec_json/data44_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 414, + "y": 1247, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 729, + "y": 1213, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 384, + "y": 894, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 480, + "y": 895, + "vx": 0, + "vy": 0 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data450_aligned.json b/json/pre_dec_json/data450_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8040689da891564167add97a9d0887a1562c8c71 --- /dev/null +++ b/json/pre_dec_json/data450_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 210, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 667, + "size": "Small", + "vx": 0, + "vy": 25, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 895, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data451_aligned.json b/json/pre_dec_json/data451_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..07468433136fdfb535c80abd9701998be0efe8b7 --- /dev/null +++ b/json/pre_dec_json/data451_aligned.json @@ -0,0 +1,95 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1008, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 297, + "y": 498, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1230, + "size": "Big", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 612, + "y": 558, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 614, + "y": 481, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 636, + "y": 513, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 868, + "y": 993, + "width": 260, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data452_aligned.json b/json/pre_dec_json/data452_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..25b8f0ed0fdcdc5d4ed3241fc485fa305dec1b5c --- /dev/null +++ b/json/pre_dec_json/data452_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 281, + "y": 300, + "width": 193, + "length": 606 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 519, + "y": 654, + "width": 264, + "length": 205 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data453_aligned.json b/json/pre_dec_json/data453_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6ee7b60d6874fb46b6ecef1e914e279d4543da44 --- /dev/null +++ b/json/pre_dec_json/data453_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 372, + "y": 722, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 1330, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 611, + "y": 642, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 302, + "y": 1209, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 963, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data454_aligned.json b/json/pre_dec_json/data454_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b1a1bbd23c9fb257679765d56288e08c79d3c812 --- /dev/null +++ b/json/pre_dec_json/data454_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 779, + "y": 1105, + "size": "Nm", + "vx": -100, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 555, + "y": 1119, + "size": "Nm", + "vx": -100, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 304, + "y": 1107, + "size": "Nm", + "vx": -100, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 793, + "y": 293, + "width": 400, + "length": 600 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 106, + "y": 294, + "width": 200, + "length": 600 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 468, + "y": 409, + "width": 160, + "length": 82 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data455_aligned.json b/json/pre_dec_json/data455_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6bdccf9102a6fbd3c759d18a742bb1760e069832 --- /dev/null +++ b/json/pre_dec_json/data455_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 380, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 475, + "y": 1351, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 137, + "y": 1162, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 403, + "y": 653, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 288, + "y": 293, + "width": 200, + "length": 600 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data456_aligned.json b/json/pre_dec_json/data456_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6004ea215ade6efbae04f69f696181ae4c20b389 --- /dev/null +++ b/json/pre_dec_json/data456_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 1235, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 700, + "y": 568, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 103, + "y": 898, + "size": "Small", + "vx": 0, + "vy": -555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 903, + "y": 955, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 495, + "y": 576, + "width": 164, + "length": 500 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 360, + "y": 1000, + "width": 10, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data457_aligned.json b/json/pre_dec_json/data457_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e2139df83f61eebc4c8eb7c5174295d6bf64345a --- /dev/null +++ b/json/pre_dec_json/data457_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 895, + "y": 983, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 700, + "y": 984, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 102, + "y": 983, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data458_aligned.json b/json/pre_dec_json/data458_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..36f45b23c5b8b5b069ecd0ac44f7c878d16f870a --- /dev/null +++ b/json/pre_dec_json/data458_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 658, + "y": 1237, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 650, + "y": 540, + "size": "Small", + "vx": -50, + "vy": 150, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 963, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 978, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data459_aligned.json b/json/pre_dec_json/data459_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..88f039911ba77fabc4ee78caaf657f40896ebb8c --- /dev/null +++ b/json/pre_dec_json/data459_aligned.json @@ -0,0 +1,87 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 723, + "y": 887, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 717, + "y": 435, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 695, + "y": 1487, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 469, + "y": 1367, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 493, + "y": 926, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 196, + "y": 972, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data45_aligned.json b/json/pre_dec_json/data45_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6d009fc56e72239f4b5b520b4084143219268684 --- /dev/null +++ b/json/pre_dec_json/data45_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 486, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 275, + "y": 467, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 130, + "y": 995, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 520, + "y": 1207, + "width": 543, + "length": 177 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data460_aligned.json b/json/pre_dec_json/data460_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..d1101f3e45cf8975d9514865aa60575b85423da1 --- /dev/null +++ b/json/pre_dec_json/data460_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 103, + "y": 448, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 103, + "y": 1385, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 387, + "y": 1539, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 903, + "y": 976, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data461_aligned.json b/json/pre_dec_json/data461_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..d58cb3cdd5ec98cdc5590221972b7eaed604cb99 --- /dev/null +++ b/json/pre_dec_json/data461_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 530, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 298, + "y": 755, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 565, + "y": 789, + "size": "Small", + "vx": -50, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 1689, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 976, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 976, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data462_aligned.json b/json/pre_dec_json/data462_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a64943b85cbe888ddf9b3fd323724c06c00da5c5 --- /dev/null +++ b/json/pre_dec_json/data462_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 581, + "size": "Nm", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 450, + "y": 822, + "size": "Nm", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 857, + "size": "Nm", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 552, + "y": 822, + "size": "Nm", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 903, + "y": 976, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 970, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data463_aligned.json b/json/pre_dec_json/data463_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..625745aa9baf9a2e82e50a923328afbea23f6c8a --- /dev/null +++ b/json/pre_dec_json/data463_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 1144, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 103, + "y": 1352, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1530, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 33, + "y": 492, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 961, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 293, + "y": 521, + "width": 609, + "length": 63 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data464_aligned.json b/json/pre_dec_json/data464_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..728c62a602699e2410eb55a6b4ad4765d0901936 --- /dev/null +++ b/json/pre_dec_json/data464_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 290, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 845, + "y": 709, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 947, + "y": 961, + "width": 100, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 150, + "y": 963, + "width": 300, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 593, + "y": 546, + "width": 586, + "length": 156 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 627, + "y": 622, + "width": 297, + "length": 325 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data465_aligned.json b/json/pre_dec_json/data465_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a975881987cc4b6173ec344657f8c6de93c76d30 --- /dev/null +++ b/json/pre_dec_json/data465_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 419, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 595, + "y": 740, + "size": "Small", + "vx": -25, + "vy": 170, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 198, + "y": 972, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 974, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data466_aligned.json b/json/pre_dec_json/data466_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ed8e8a5b8aed86f15660069bcf8f2ddc77da07c4 --- /dev/null +++ b/json/pre_dec_json/data466_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 895, + "y": 983, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 983, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data467_aligned.json b/json/pre_dec_json/data467_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..28c09f39320d4f4e7f036cc71da8989c50b2cc34 --- /dev/null +++ b/json/pre_dec_json/data467_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 524, + "y": 1224, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 704, + "y": 1230, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 524, + "y": 1543, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 696, + "y": 1593, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 994, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 104, + "y": 994, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data468_aligned.json b/json/pre_dec_json/data468_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..bd17c86e1f50d6f35ae136b643b63177c21a2e55 --- /dev/null +++ b/json/pre_dec_json/data468_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 150, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 294, + "y": 683, + "size": "Small", + "vx": 0, + "vy": -277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 493, + "y": 1137, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 961, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 970, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 497, + "y": 550, + "width": 197, + "length": 400 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data469_aligned.json b/json/pre_dec_json/data469_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..42ff95091a00872f5ae7f3c18e2f82b5e7fe9968 --- /dev/null +++ b/json/pre_dec_json/data469_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 128, + "y": 986, + "width": 350, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 873, + "y": 979, + "width": 350, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data46_aligned.json b/json/pre_dec_json/data46_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5b32bb98b82c415b9141305833bc5ac441fc0b05 --- /dev/null +++ b/json/pre_dec_json/data46_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 511, + "y": 909, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data470_aligned.json b/json/pre_dec_json/data470_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1351ccd4cc70bd4736b338e15a28f819dbd571e6 --- /dev/null +++ b/json/pre_dec_json/data470_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 995, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 201, + "y": 995, + "width": 400, + "length": 2000 + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 950, + "size": "Small", + "vx": 0, + "vy": -50, + "ay": 0, + "accel_mode": "Z" + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data471_aligned.json b/json/pre_dec_json/data471_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..87180d01194037dc052178e0a56f562c60b343b8 --- /dev/null +++ b/json/pre_dec_json/data471_aligned.json @@ -0,0 +1,91 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 546, + "y": 1146, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 482, + "y": 1544, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 473, + "y": 1075, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 516, + "y": 976, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 571, + "y": 961, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 479, + "y": 1132, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data472_aligned.json b/json/pre_dec_json/data472_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4e7501f801ab3a06f040ed7786fa5de026abba2d --- /dev/null +++ b/json/pre_dec_json/data472_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 499, + "y": 802, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 200, + "y": 986, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 895, + "y": 986, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data473_aligned.json b/json/pre_dec_json/data473_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..236daf50e57cc579269061fdf924d28fbfd5fd26 --- /dev/null +++ b/json/pre_dec_json/data473_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 330, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 317, + "y": 170, + "size": "Small", + "vx": 0, + "vy": 150, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 311, + "y": 1011, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 1350, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 959, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 413, + "y": 644, + "width": 351, + "length": 330 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data474_aligned.json b/json/pre_dec_json/data474_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c99fa1cf09d87a643bfa04fe6897a6d057f564a9 --- /dev/null +++ b/json/pre_dec_json/data474_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 980, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data475_aligned.json b/json/pre_dec_json/data475_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..73bbd0a9e3a5dd348ea14b0ca7d997dfa25c9e14 --- /dev/null +++ b/json/pre_dec_json/data475_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 896, + "size": "Small", + "vx": 0, + "vy": 60, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 748, + "size": "Small", + "vx": 0, + "vy": 60, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 302, + "y": 1433, + "size": "Small", + "vx": 0, + "vy": 60, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 700, + "y": 933, + "size": "Big", + "vx": 0, + "vy": 60, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 100, + "y": 972, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data476_aligned.json b/json/pre_dec_json/data476_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..549f9f40758b43777c35c36cef6a2a910564f52e --- /dev/null +++ b/json/pre_dec_json/data476_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 320, + "y": 41, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 706, + "y": 768, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 307, + "y": 759, + "size": "Small", + "vx": 0, + "vy": 210, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 506, + "y": 1491, + "size": "Small", + "vx": 0, + "vy": 210, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 903, + "y": 961, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data477_aligned.json b/json/pre_dec_json/data477_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f0eed3f5b85485024b9f08cd5fccc8a91838cbfc --- /dev/null +++ b/json/pre_dec_json/data477_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 330, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 639, + "y": 614, + "size": "Small", + "vx": -15, + "vy": -30, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 504, + "y": 1302, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 700, + "y": 1168, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 963, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 196, + "y": 961, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data478_aligned.json b/json/pre_dec_json/data478_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ce9a560cf429c7bbbbb379fde5b18e3394610434 --- /dev/null +++ b/json/pre_dec_json/data478_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 305, + "y": 1471, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 981, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 399, + "y": 740, + "width": 795, + "length": 227 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data479_aligned.json b/json/pre_dec_json/data479_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8b81dcb0a40ccadcd85095b92e63e441ed0b6123 --- /dev/null +++ b/json/pre_dec_json/data479_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 1326, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 96, + "y": 983, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 970, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 504, + "y": 568, + "width": 195, + "length": 195 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data47_aligned.json b/json/pre_dec_json/data47_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2cc73f1b765cd3f30caba651c0035bee0380165d --- /dev/null +++ b/json/pre_dec_json/data47_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 516, + "y": 1034, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 510, + "y": 1543, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 420, + "y": 606, + "width": 317, + "length": 130 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data480_aligned.json b/json/pre_dec_json/data480_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0a1496129a457b04f1014e391fc3d2cf1d53611b --- /dev/null +++ b/json/pre_dec_json/data480_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 607, + "y": 587, + "width": 449, + "length": 248 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 100, + "width": 400, + "length": 200 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data481_aligned.json b/json/pre_dec_json/data481_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..bfa44eb1561c978a198ff536162c607b3ab2d1df --- /dev/null +++ b/json/pre_dec_json/data481_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 494, + "y": 799, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 204, + "y": 401, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 598, + "y": 630, + "vx": -70, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 76, + "y": 991, + "width": 150, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 706, + "y": 981, + "width": 150, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 892, + "y": 979, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data482_aligned.json b/json/pre_dec_json/data482_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..25e5f367bf6f89cbd4f9261a900c00c55688a1c6 --- /dev/null +++ b/json/pre_dec_json/data482_aligned.json @@ -0,0 +1,87 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 330, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 607, + "size": "Small", + "vx": 0, + "vy": 69, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 265, + "y": 252, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 260, + "y": 1303, + "size": "Small", + "vx": 0, + "vy": -208, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 988, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 94, + "y": 1302, + "width": 90, + "length": 230 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 94, + "y": 1041, + "width": 90, + "length": 230 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 94, + "y": 771, + "width": 90, + "length": 230 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data483_aligned.json b/json/pre_dec_json/data483_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..47b2ff62cd876e96ce424e4f3c8e9adf8f308337 --- /dev/null +++ b/json/pre_dec_json/data483_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 69, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 497, + "y": 459, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 895, + "y": 986, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 981, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 319, + "y": 439, + "width": 30, + "length": 30 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data484_aligned.json b/json/pre_dec_json/data484_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..d91f0889fdab74e37d72f578030b07f2a62ace70 --- /dev/null +++ b/json/pre_dec_json/data484_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 482, + "y": 1544, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 304, + "y": 1370, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data485_aligned.json b/json/pre_dec_json/data485_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a29dfb04b79f611ba0b54c52916717c01262b90e --- /dev/null +++ b/json/pre_dec_json/data485_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 684, + "y": 1587, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 980, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data486_aligned.json b/json/pre_dec_json/data486_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3341177e0261ab7c35cd8fb0c816c53c12a486ff --- /dev/null +++ b/json/pre_dec_json/data486_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 280, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 493, + "y": 1137, + "size": "Small", + "vx": 0, + "vy": 280, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 961, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 970, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 300, + "y": 331, + "width": 180, + "length": 260 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data487_aligned.json b/json/pre_dec_json/data487_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f369aac4a217eeff3ade4597ec665782ac27a307 --- /dev/null +++ b/json/pre_dec_json/data487_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 337, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 981, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 203, + "y": 984, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 500, + "y": 530, + "width": 196, + "length": 67 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data488_aligned.json b/json/pre_dec_json/data488_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..787065e480249eb264ab7d8ea13d9bdb7f026139 --- /dev/null +++ b/json/pre_dec_json/data488_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 330, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 598, + "y": 692, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data489_aligned.json b/json/pre_dec_json/data489_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f61d8ecfe8d92a020447090df3cdaa95f74d7a39 --- /dev/null +++ b/json/pre_dec_json/data489_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 230, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 700, + "y": 1033, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 469, + "y": 488, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 526, + "y": 503, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 571, + "y": 477, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 621, + "y": 481, + "vx": 0, + "vy": -50 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 972, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data48_aligned.json b/json/pre_dec_json/data48_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..cc9b245e78f4c5df947c00f67620e64c6091a661 --- /dev/null +++ b/json/pre_dec_json/data48_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 812, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 994, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 799, + "y": 991, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data490_aligned.json b/json/pre_dec_json/data490_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..66a49db431d7162a37dcac06d8dfa021f0a7a751 --- /dev/null +++ b/json/pre_dec_json/data490_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 191, + "y": 981, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 291, + "y": 61, + "size": "Small", + "vx": 0, + "vy": -277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 101, + "y": 271, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 675, + "y": 976, + "width": 230, + "length": 90 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 454, + "y": 972, + "width": 202, + "length": 96 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data491_aligned.json b/json/pre_dec_json/data491_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f44ef27a41affc506ddb34463ea8c6fa642387ed --- /dev/null +++ b/json/pre_dec_json/data491_aligned.json @@ -0,0 +1,95 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 370, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 492, + "y": 935, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 289, + "y": 1156, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 747, + "y": 796, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 545, + "y": 723, + "vx": 0, + "vy": -20 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 598, + "y": 723, + "vx": 0, + "vy": -20 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 659, + "y": 723, + "vx": 0, + "vy": -20 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 904, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data492_aligned.json b/json/pre_dec_json/data492_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b93f10122be254036b4f1474756bca87844b1fa9 --- /dev/null +++ b/json/pre_dec_json/data492_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 451, + "y": 1032, + "size": "Small", + "vx": 0, + "vy": 477, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 62, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 416, + "y": 656, + "width": 750, + "length": 335 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data493_aligned.json b/json/pre_dec_json/data493_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a0cccc1a7a5abbc5767c89c5e7c470b02db8435c --- /dev/null +++ b/json/pre_dec_json/data493_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 553, + "y": 692, + "size": "Big", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 1000, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 994, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data494_aligned.json b/json/pre_dec_json/data494_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..69c6ebe0c8b28a3f61d020b3111c84470364e5b3 --- /dev/null +++ b/json/pre_dec_json/data494_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 340, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 703, + "y": 863, + "vx": 0, + "vy": 65 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 781, + "y": 870, + "vx": 0, + "vy": 65 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 391, + "width": 400, + "length": 800 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 799, + "y": 1696, + "width": 400, + "length": 600 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 554, + "y": 526, + "width": 81, + "length": 185 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data495_aligned.json b/json/pre_dec_json/data495_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..43b3650c36a37b04e3fc16abe297036634f4eaaa --- /dev/null +++ b/json/pre_dec_json/data495_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 340, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 391, + "width": 400, + "length": 800 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 799, + "y": 1696, + "width": 400, + "length": 600 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 511, + "y": 607, + "width": 155, + "length": 170 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data496_aligned.json b/json/pre_dec_json/data496_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9dcb233b4f8791b0998f541062d528407ba3ee03 --- /dev/null +++ b/json/pre_dec_json/data496_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 497, + "y": 975, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 698, + "y": 1008, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 977, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 975, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data497_aligned.json b/json/pre_dec_json/data497_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..17c811a5889141018dc72d504d6fbe2b13cea518 --- /dev/null +++ b/json/pre_dec_json/data497_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 335, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 391, + "width": 400, + "length": 800 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 799, + "y": 1696, + "width": 400, + "length": 600 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 460, + "y": 666, + "width": 51, + "length": 57 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data498_aligned.json b/json/pre_dec_json/data498_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b604c2242e03cc623998d5710cedb067f9088b95 --- /dev/null +++ b/json/pre_dec_json/data498_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 902, + "y": 1019, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 420, + "y": 1249, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 711, + "y": 1384, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 103, + "y": 984, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data499_aligned.json b/json/pre_dec_json/data499_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7a865d7d6d859605db813a0554b5bc3f8b5b13c1 --- /dev/null +++ b/json/pre_dec_json/data499_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 366, + "y": 1341, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 592, + "y": 1004, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 822, + "y": 991, + "width": 350, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 994, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 341, + "y": 737, + "width": 46, + "length": 57 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 406, + "y": 737, + "width": 51, + "length": 57 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data49_aligned.json b/json/pre_dec_json/data49_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7dd69a8d82ed8d7883309f0f1202d90ef4bb40f3 --- /dev/null +++ b/json/pre_dec_json/data49_aligned.json @@ -0,0 +1,103 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 340, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 501, + "y": 1040, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 596, + "y": 1329, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 297, + "y": 594, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 297, + "y": 101, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 297, + "y": 1099, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 397, + "y": 126, + "width": 15, + "length": 694 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 533, + "y": 816, + "width": 226, + "length": 67 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 739, + "y": 64, + "width": 28, + "length": 525 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data4_aligned.json b/json/pre_dec_json/data4_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..098ec7c5826d02c05e33214efb962b6d87f03130 --- /dev/null +++ b/json/pre_dec_json/data4_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 235, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 361, + "y": 1456, + "size": "Small", + "vx": 0, + "vy": 455, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 103, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 797, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 400, + "y": 655, + "width": 355, + "length": 324 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data500_aligned.json b/json/pre_dec_json/data500_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..075e508d0ecb6eff7b022299520088200dac339d --- /dev/null +++ b/json/pre_dec_json/data500_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 528, + "y": 1451, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 405, + "y": 826, + "size": "Small", + "vx": 50, + "vy": 130, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 338, + "y": 1455, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 822, + "y": 991, + "width": 350, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 994, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data501_aligned.json b/json/pre_dec_json/data501_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e6049995ccef8d951414669cf59de4c44d330c1c --- /dev/null +++ b/json/pre_dec_json/data501_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 661, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1287, + "size": "Small", + "vx": 0, + "vy": -450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 1096, + "size": "Big", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 95, + "y": 973, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 801, + "y": 964, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data502_aligned.json b/json/pre_dec_json/data502_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b3a0b91d3270dc21f3a75618424f2bb59b003b1b --- /dev/null +++ b/json/pre_dec_json/data502_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 330, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 983, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 986, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 499, + "y": 815, + "width": 585, + "length": 153 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data503_aligned.json b/json/pre_dec_json/data503_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..eba64dad6881d6aa11cd4fd707a725b2739783e3 --- /dev/null +++ b/json/pre_dec_json/data503_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 556, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data504_aligned.json b/json/pre_dec_json/data504_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..d72eaa8d5cc4e2d960418910e6fb23bb0a8568be --- /dev/null +++ b/json/pre_dec_json/data504_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 400, + "y": 1743, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 951, + "y": 957, + "width": 100, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 150, + "y": 974, + "width": 300, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 600, + "y": 997, + "width": 590, + "length": 803 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data505_aligned.json b/json/pre_dec_json/data505_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..33bfec91af621d503f1caf802bb7537a0efb3ee9 --- /dev/null +++ b/json/pre_dec_json/data505_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 495, + "y": 1217, + "size": "Small", + "vx": 0, + "vy": 347, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 307, + "y": 981, + "size": "Small", + "vx": 0, + "vy": -1, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 961, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 970, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 429, + "y": 562, + "width": 353, + "length": 364 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data506_aligned.json b/json/pre_dec_json/data506_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..17d68343519483548984b129db9442197ae7207c --- /dev/null +++ b/json/pre_dec_json/data506_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 955, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 964, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 200, + "y": 1261, + "width": 400, + "length": 1700 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 501, + "y": 744, + "width": 197, + "length": 121 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data507_aligned.json b/json/pre_dec_json/data507_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..be3d2bc4e570bf5dd9d780060b450b6249d99807 --- /dev/null +++ b/json/pre_dec_json/data507_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 517, + "y": 1189, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 329, + "y": 1520, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 786, + "y": 938, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 100, + "y": 994, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data508_aligned.json b/json/pre_dec_json/data508_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..d0a41bf8d0b662aab77875dd0a03dbeb014bc789 --- /dev/null +++ b/json/pre_dec_json/data508_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 504, + "y": 1217, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 420, + "y": 857, + "vx": 50, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 964, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 202, + "y": 976, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data509_aligned.json b/json/pre_dec_json/data509_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f8644c88abac8898542ad117b720a598cf470c7e --- /dev/null +++ b/json/pre_dec_json/data509_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 255, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 100, + "y": 685, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 1100, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1615, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 965, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 396, + "y": 576, + "width": 403, + "length": 493 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data50_aligned.json b/json/pre_dec_json/data50_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e2ec081990ef4dd09e43a71691faf9a555ebf4cf --- /dev/null +++ b/json/pre_dec_json/data50_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 110, + "y": 1093, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 228, + "y": 1181, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data510_aligned.json b/json/pre_dec_json/data510_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a764ba75ee66b3ebdc7851c62efcb4b8b8f21393 --- /dev/null +++ b/json/pre_dec_json/data510_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 1535, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 957, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 964, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data511_aligned.json b/json/pre_dec_json/data511_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6aa7322814472d60391fb2d9b632ec065741c93a --- /dev/null +++ b/json/pre_dec_json/data511_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 510, + "y": 1332, + "size": "Small", + "vx": 0, + "vy": 390, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 195, + "y": 1277, + "size": "Small", + "vx": 0, + "vy": 390, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data512_aligned.json b/json/pre_dec_json/data512_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0f4d059daf7a4d2092bc2f7f2c361b912fdfe15f --- /dev/null +++ b/json/pre_dec_json/data512_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 807, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 964, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 401, + "y": 1126, + "width": 384, + "length": 377 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data513_aligned.json b/json/pre_dec_json/data513_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..87fd346b5d4d0a0478666a6a50d81e64298d69c4 --- /dev/null +++ b/json/pre_dec_json/data513_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 1339, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 326, + "y": 1152, + "size": "Big", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 964, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data514_aligned.json b/json/pre_dec_json/data514_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6262b2c10e8a62cb0eafc19a7e96ed69b2214aeb --- /dev/null +++ b/json/pre_dec_json/data514_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 270, + "y": 855, + "vx": 0, + "vy": -50 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 983, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 408, + "y": 681, + "width": 358, + "length": 112 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data515_aligned.json b/json/pre_dec_json/data515_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..dfb644c6391ba9b7cdc20e716b41bd0e1529fdb1 --- /dev/null +++ b/json/pre_dec_json/data515_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 187, + "y": 1223, + "size": "Small", + "vx": 0, + "vy": 455, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 506, + "y": 1372, + "size": "Big", + "vx": 0, + "vy": 455, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 990, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data516_aligned.json b/json/pre_dec_json/data516_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..cee70dc0590fc72d642df1985a6a19274ba7a9fc --- /dev/null +++ b/json/pre_dec_json/data516_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 300, + "y": 1461, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 964, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 376, + "y": 747, + "width": 529, + "length": 345 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data517_aligned.json b/json/pre_dec_json/data517_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..91f0c7a7b17da7b161dc654ec5d8ecc20bc73520 --- /dev/null +++ b/json/pre_dec_json/data517_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 225, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 682, + "y": 773, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 895, + "y": 1160, + "size": "Small", + "vx": 0, + "vy": 750, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 206, + "y": 985, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 582, + "y": 1107, + "width": 319, + "length": 149 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data518_aligned.json b/json/pre_dec_json/data518_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4454b9b685c4cc746253edf17f0cd52871074d49 --- /dev/null +++ b/json/pre_dec_json/data518_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 657, + "y": 322, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 497, + "y": 1106, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 817, + "y": 867, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data519_aligned.json b/json/pre_dec_json/data519_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..18a5324eea9898f1db634cba787221467b81fd17 --- /dev/null +++ b/json/pre_dec_json/data519_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 794, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 322, + "y": 1126, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data51_aligned.json b/json/pre_dec_json/data51_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9b9bd4af6017699edf54cdf182e0b1f05e326f03 --- /dev/null +++ b/json/pre_dec_json/data51_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 230, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 92, + "y": 747, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 228, + "y": 822, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 134, + "y": 1130, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data520_aligned.json b/json/pre_dec_json/data520_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..67c9e708e91a97798f5083e044cfa564de2eccb0 --- /dev/null +++ b/json/pre_dec_json/data520_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 512, + "y": 967, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 705, + "y": 1112, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 304, + "y": 805, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 991, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data521_aligned.json b/json/pre_dec_json/data521_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..72f251bfd60c31c50d7df04d9ad96220194ab29b --- /dev/null +++ b/json/pre_dec_json/data521_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 497, + "y": 752, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 685, + "y": 1233, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 200, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data522_aligned.json b/json/pre_dec_json/data522_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2c7bcc33d38854f58091aea5933ecb534f2152b0 --- /dev/null +++ b/json/pre_dec_json/data522_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 584, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 708, + "y": 930, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 711, + "y": 1271, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 200, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data523_aligned.json b/json/pre_dec_json/data523_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f9be97c71f6c677ffa564be1bbcfe0b7ba0b527e --- /dev/null +++ b/json/pre_dec_json/data523_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 490, + "y": 584, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 711, + "y": 149, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 200, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data524_aligned.json b/json/pre_dec_json/data524_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..63a0a5ab8f3c98ec833928d6f7e5c0f617cfbba3 --- /dev/null +++ b/json/pre_dec_json/data524_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 293, + "y": 1036, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data525_aligned.json b/json/pre_dec_json/data525_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4c495744e6b582c2b26402eaef9af453936bf3cc --- /dev/null +++ b/json/pre_dec_json/data525_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 1017, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 329, + "y": 1428, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data526_aligned.json b/json/pre_dec_json/data526_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..91e1117920de1bbb6b3b2bb5924540d7662db399 --- /dev/null +++ b/json/pre_dec_json/data526_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 390, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 308, + "y": 875, + "size": "Small", + "vx": 0, + "vy": -290, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data527_aligned.json b/json/pre_dec_json/data527_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..1624f5244a697ebe93bf0e8b13b05f2241a23da2 --- /dev/null +++ b/json/pre_dec_json/data527_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 560, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 224, + "y": 1409, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 511, + "y": 1534, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data528_aligned.json b/json/pre_dec_json/data528_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e32d359d2ca3fd4936c404e30ea38476051906c9 --- /dev/null +++ b/json/pre_dec_json/data528_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 493, + "y": 447, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 703, + "y": 804, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data529_aligned.json b/json/pre_dec_json/data529_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0ae8bf9791a851e2411e0115d80d938de7f0b0f7 --- /dev/null +++ b/json/pre_dec_json/data529_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 504, + "y": 969, + "size": "Small", + "vx": 0, + "vy": 280, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 302, + "y": 299, + "size": "Small", + "vx": 0, + "vy": -200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data52_aligned.json b/json/pre_dec_json/data52_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..239db2d13a6143f50661ce701eca78c79e87df7a --- /dev/null +++ b/json/pre_dec_json/data52_aligned.json @@ -0,0 +1,107 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 330, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 500, + "y": 806, + "vx": 0, + "vy": -30 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 566, + "y": 869, + "vx": 0, + "vy": -30 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 444, + "y": 881, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_4", + "type": "pedestrian", + "x": 340, + "y": 906, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_5", + "type": "pedestrian", + "x": 252, + "y": 900, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_6", + "type": "pedestrian", + "x": 297, + "y": 822, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_7", + "type": "pedestrian", + "x": 518, + "y": 948, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_8", + "type": "pedestrian", + "x": 403, + "y": 974, + "vx": 0, + "vy": -50 + }, + { + "id": "ped_9", + "type": "pedestrian", + "x": 294, + "y": 1031, + "vx": 0, + "vy": -50 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data530_aligned.json b/json/pre_dec_json/data530_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..277173d8b6ada836254e842bedbc23eb8ea74e9c --- /dev/null +++ b/json/pre_dec_json/data530_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 276, + "y": 1218, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data531_aligned.json b/json/pre_dec_json/data531_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..16513d24cd7289c04e48d945f5ecf921479f2101 --- /dev/null +++ b/json/pre_dec_json/data531_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 490, + "y": 1226, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 289, + "y": 659, + "width": 157, + "length": 573 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data532_aligned.json b/json/pre_dec_json/data532_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..087a601b971e7115e4b164c7e013568ee3ee1f8d --- /dev/null +++ b/json/pre_dec_json/data532_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 497, + "y": 933, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 988, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data533_aligned.json b/json/pre_dec_json/data533_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..b4dd1640b8e43048cf9c73b4a2a9b388ba482174 --- /dev/null +++ b/json/pre_dec_json/data533_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 550, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 103, + "y": 988, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data534_aligned.json b/json/pre_dec_json/data534_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..22aca3187079b718b9ed041fd890ad1da9119f61 --- /dev/null +++ b/json/pre_dec_json/data534_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 794, + "size": "Small", + "vx": 0, + "vy": 280, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 322, + "y": 1126, + "size": "Small", + "vx": 0, + "vy": 320, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 137, + "y": 1126, + "size": "Small", + "vx": 0, + "vy": 270, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data535_aligned.json b/json/pre_dec_json/data535_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..bd0be4bc942a20d5e33069b60569ae7572825c75 --- /dev/null +++ b/json/pre_dec_json/data535_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 493, + "y": 1341, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data536_aligned.json b/json/pre_dec_json/data536_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f6cd1ebd6f8c4424ed45c4149e1566238de6c06e --- /dev/null +++ b/json/pre_dec_json/data536_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 668, + "y": 1006, + "size": "Small", + "vx": 0, + "vy": -600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 199, + "y": 994, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data537_aligned.json b/json/pre_dec_json/data537_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..dff46b269404ce5b58fdd0d8cdd651f702628e9d --- /dev/null +++ b/json/pre_dec_json/data537_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 994, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 994, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 502, + "y": 765, + "width": 552, + "length": 292 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data538_aligned.json b/json/pre_dec_json/data538_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..dc86c63446e243063bd838960e9dbc9c03b69a2c --- /dev/null +++ b/json/pre_dec_json/data538_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 411, + "y": 1006, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 798, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 98, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data539_aligned.json b/json/pre_dec_json/data539_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..32edc73767413a49607bef0604165066da85fe5b --- /dev/null +++ b/json/pre_dec_json/data539_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 430, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 299, + "y": 961, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 591, + "y": 1068, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 98, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data53_aligned.json b/json/pre_dec_json/data53_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..962708b265b089d316312193b14380e98911b3a5 --- /dev/null +++ b/json/pre_dec_json/data53_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 1231, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 921, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 391, + "y": 655, + "width": 232, + "length": 170 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data540_aligned.json b/json/pre_dec_json/data540_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e6263e87957bd15711940470e204d1204e7cb8b3 --- /dev/null +++ b/json/pre_dec_json/data540_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 721, + "y": 1051, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 719, + "y": 1408, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 201, + "y": 990, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 899, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 494, + "y": 578, + "width": 116, + "length": 506 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data541_aligned.json b/json/pre_dec_json/data541_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..21bb476c83b11124a4e52c45911f4c099b8702e5 --- /dev/null +++ b/json/pre_dec_json/data541_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 674, + "y": 1138, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 702, + "y": 964, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 263, + "y": 1300, + "size": "Small", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 445, + "y": 690, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data542_aligned.json b/json/pre_dec_json/data542_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..61c36d90600a5c7ec5c312b816bcc01a34ae1d3b --- /dev/null +++ b/json/pre_dec_json/data542_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 486, + "y": 1112, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 605, + "y": 1383, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 354, + "y": 1388, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 899, + "y": 990, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 353, + "y": 690, + "width": 100, + "length": 97 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data543_aligned.json b/json/pre_dec_json/data543_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a1e8c1b61a5554353c85bbeb5e6aa442534b4227 --- /dev/null +++ b/json/pre_dec_json/data543_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 696, + "y": 946, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 603, + "y": 820, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 994, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data544_aligned.json b/json/pre_dec_json/data544_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8c76deb74e9e79aef4da94e506718bb6f54d227c --- /dev/null +++ b/json/pre_dec_json/data544_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 597, + "y": 510, + "vx": -50, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 685, + "y": 572, + "vx": -60, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 676, + "y": 629, + "vx": -50, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 188, + "width": 400, + "length": 400 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 797, + "y": 1397, + "width": 400, + "length": 1200 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 103, + "y": 994, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data545_aligned.json b/json/pre_dec_json/data545_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..abac4933dd846139a8ede1be25d702fb81b0d9ed --- /dev/null +++ b/json/pre_dec_json/data545_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 260, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 481, + "y": 1336, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 102, + "y": 994, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 797, + "y": 994, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 404, + "y": 659, + "width": 371, + "length": 130 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data546_aligned.json b/json/pre_dec_json/data546_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..36e8e399512a63de45e141f54b81c114e866eab1 --- /dev/null +++ b/json/pre_dec_json/data546_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 102, + "y": 994, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 797, + "y": 994, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 396, + "y": 741, + "width": 371, + "length": 130 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data547_aligned.json b/json/pre_dec_json/data547_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..70b1a82f154ba8e429e05af3ca9562056f6e69ae --- /dev/null +++ b/json/pre_dec_json/data547_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 319, + "y": 1244, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 102, + "y": 994, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 797, + "y": 994, + "width": 400, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 396, + "y": 741, + "width": 371, + "length": 130 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data548_aligned.json b/json/pre_dec_json/data548_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9a0548fdf93efb1039dccf7fa6d16c42839adb0f --- /dev/null +++ b/json/pre_dec_json/data548_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 307, + "y": 410, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 434, + "y": 920, + "size": "Small", + "vx": 30, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 797, + "y": 1305, + "size": "Small", + "vx": 0, + "vy": 450, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data549_aligned.json b/json/pre_dec_json/data549_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..af0e6010ad9e33659bb6e1e7607c515972958941 --- /dev/null +++ b/json/pre_dec_json/data549_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 370, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 674, + "y": 614, + "vx": -50, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 699, + "y": 550, + "vx": -60, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 697, + "y": 687, + "vx": -70, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 896, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data54_aligned.json b/json/pre_dec_json/data54_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2b4cc565d819fdca24bc3c8a8a2f63c512d87706 --- /dev/null +++ b/json/pre_dec_json/data54_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 509, + "y": 668, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 799, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 205, + "y": 992, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data550_aligned.json b/json/pre_dec_json/data550_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..a8e613f041b50bbeb7087610bba58a35da91dd3e --- /dev/null +++ b/json/pre_dec_json/data550_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 409, + "y": 878, + "width": 732, + "length": 183 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data55_aligned.json b/json/pre_dec_json/data55_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..25f51db56fa67332b619aadaaa565fc3283e4367 --- /dev/null +++ b/json/pre_dec_json/data55_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 884, + "y": 1216, + "size": "Small", + "vx": 0, + "vy": -100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 699, + "y": 1390, + "size": "Small", + "vx": 0, + "vy": -100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 103, + "y": 1074, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 468, + "y": 588, + "width": 564, + "length": 476 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data56_aligned.json b/json/pre_dec_json/data56_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..128befa6e94f9b8bbc4ab368e7b55d7cdc5ce81d --- /dev/null +++ b/json/pre_dec_json/data56_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 521, + "y": 1282, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 203, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 898, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 621, + "y": 745, + "width": 306, + "length": 98 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data57_aligned.json b/json/pre_dec_json/data57_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3f7b931aa448be25c8588da6b1dfb21c8f116230 --- /dev/null +++ b/json/pre_dec_json/data57_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 1402, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 311, + "y": 1377, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 991, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data58_aligned.json b/json/pre_dec_json/data58_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7828b93e51aebd45013d6171a1c215c69696ae15 --- /dev/null +++ b/json/pre_dec_json/data58_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 497, + "y": 1363, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 203, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 815, + "y": 744, + "width": 342, + "length": 124 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data59_aligned.json b/json/pre_dec_json/data59_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4e45aea59c55fc482a3690334b188bc9e20ebe95 --- /dev/null +++ b/json/pre_dec_json/data59_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 480, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 326, + "y": 709, + "size": "Small", + "vx": 0, + "vy": 160, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 562, + "y": 962, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 175, + "y": 1263, + "size": "Small", + "vx": 0, + "vy": -455, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 532, + "y": 1216, + "size": "Big", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data5_aligned.json b/json/pre_dec_json/data5_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e6fad2ed4e99a606809e5294cf753dfea278bbbb --- /dev/null +++ b/json/pre_dec_json/data5_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 576, + "y": 1310, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 985, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 204, + "y": 985, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data60_aligned.json b/json/pre_dec_json/data60_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f2b1ccba4ff549bc1d9f06ce7efd805f7cab748f --- /dev/null +++ b/json/pre_dec_json/data60_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 517, + "y": 1210, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 288, + "y": 1312, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 801, + "y": 992, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data61_aligned.json b/json/pre_dec_json/data61_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f400e39f2a8dcb4ec3a98ba1e3057f4c3fd2e461 --- /dev/null +++ b/json/pre_dec_json/data61_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 286, + "y": 274, + "size": "Big", + "vx": 0, + "vy": -400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 994, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 799, + "y": 991, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data62_aligned.json b/json/pre_dec_json/data62_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4a92eddb1a695ad4088eb29951c5561593628f29 --- /dev/null +++ b/json/pre_dec_json/data62_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 455, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 430, + "y": 827, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 800, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data63_aligned.json b/json/pre_dec_json/data63_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3e99d578cdd7b472c1b22805b3af1498681205cf --- /dev/null +++ b/json/pre_dec_json/data63_aligned.json @@ -0,0 +1,51 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 514, + "y": 1197, + "size": "Small", + "vx": 0, + "vy": 500, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 914, + "y": 711, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 409, + "y": 1093, + "vx": 0, + "vy": 0 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data64_aligned.json b/json/pre_dec_json/data64_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..befc05b8261470bfce2b0c4c2a1b331afb395508 --- /dev/null +++ b/json/pre_dec_json/data64_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 470, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 184, + "y": 863, + "size": "Small", + "vx": 0, + "vy": -150, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 855, + "y": 995, + "width": 290, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 63, + "y": 995, + "width": 120, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 473, + "y": 971, + "width": 353, + "length": 128 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data65_aligned.json b/json/pre_dec_json/data65_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f21889bf9761f8389d1255083932e5cffd35a2f5 --- /dev/null +++ b/json/pre_dec_json/data65_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 833, + "y": 993, + "width": 350, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 126, + "y": 993, + "width": 255, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 458, + "y": 1268, + "width": 382, + "length": 158 + }, + { + "id": "obs_4", + "type": "obstacle", + "x": 299, + "y": 1040, + "width": 30, + "length": 30 + }, + { + "id": "obs_5", + "type": "obstacle", + "x": 374, + "y": 996, + "width": 30, + "length": 30 + }, + { + "id": "obs_6", + "type": "obstacle", + "x": 544, + "y": 992, + "width": 30, + "length": 30 + }, + { + "id": "obs_7", + "type": "obstacle", + "x": 618, + "y": 1074, + "width": 30, + "length": 30 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data66_aligned.json b/json/pre_dec_json/data66_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..bb21c58d236fca9faf58455dfc5e3aa1c4bbaad7 --- /dev/null +++ b/json/pre_dec_json/data66_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 811, + "y": 995, + "width": 380, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 189, + "y": 995, + "width": 380, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data67_aligned.json b/json/pre_dec_json/data67_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..12dd9e051976316e9c8163131abdf02e9176b64e --- /dev/null +++ b/json/pre_dec_json/data67_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 814, + "y": 995, + "width": 380, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 995, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 504, + "y": 718, + "width": 122, + "length": 163 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data68_aligned.json b/json/pre_dec_json/data68_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..eded5b93a872768eaaf0b246d93679bf4b1d499b --- /dev/null +++ b/json/pre_dec_json/data68_aligned.json @@ -0,0 +1,83 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 505, + "y": 838, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 316, + "y": 1134, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 715, + "y": 906, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 717, + "y": 1263, + "size": "Nm", + "vx": 0, + "vy": 180, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 994, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 100, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data69_aligned.json b/json/pre_dec_json/data69_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..7036bbbf0661623b3e32ef11038457379afe4c18 --- /dev/null +++ b/json/pre_dec_json/data69_aligned.json @@ -0,0 +1,27 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 270, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 521, + "y": 812, + "width": 861, + "length": 372 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data6_aligned.json b/json/pre_dec_json/data6_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..91f77019c623f4bcd6c9b6ceb6812f06832fa6c6 --- /dev/null +++ b/json/pre_dec_json/data6_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 390, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 548, + "y": 497, + "size": "Small", + "vx": -10, + "vy": 170, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 894, + "y": 989, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 987, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data70_aligned.json b/json/pre_dec_json/data70_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..827f0e89ca7d870f98a9569c7ea8ea0404a4a18e --- /dev/null +++ b/json/pre_dec_json/data70_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 455, + "y": 1030, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 859, + "y": 990, + "width": 280, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 86, + "y": 992, + "width": 160, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 446, + "y": 862, + "width": 497, + "length": 108 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data71_aligned.json b/json/pre_dec_json/data71_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0daa43b5d89faf9fc65b97003eef9f9b3c91c84f --- /dev/null +++ b/json/pre_dec_json/data71_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 370, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 503, + "y": 903, + "size": "Small", + "vx": 0, + "vy": 280, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 228, + "y": 898, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 604, + "y": 863, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 812, + "y": 993, + "width": 370, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 89, + "y": 992, + "width": 170, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 343, + "y": 578, + "width": 51, + "length": 49 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data72_aligned.json b/json/pre_dec_json/data72_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..06797ef8cc7427add34791ddaabab492f0476d4c --- /dev/null +++ b/json/pre_dec_json/data72_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 480, + "y": 963, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 646, + "y": 1151, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 222, + "y": 1385, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 870, + "y": 992, + "width": 260, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 67, + "y": 989, + "width": 130, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 451, + "y": 611, + "width": 240, + "length": 142 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data73_aligned.json b/json/pre_dec_json/data73_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..4523ee6466aa169a27240033adf74aca05447bb7 --- /dev/null +++ b/json/pre_dec_json/data73_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 502, + "y": 540, + "size": "Small", + "vx": 0, + "vy": 160, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 298, + "y": 629, + "size": "Small", + "vx": 0, + "vy": -416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 98, + "y": 1033, + "size": "Small", + "vx": 0, + "vy": -416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 946, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data74_aligned.json b/json/pre_dec_json/data74_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..e772eb83eff04682da50b8644e474903cb1d4985 --- /dev/null +++ b/json/pre_dec_json/data74_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 489, + "y": 832, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 720, + "y": 1340, + "size": "Small", + "vx": 0, + "vy": 570, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data75_aligned.json b/json/pre_dec_json/data75_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6aff1582edff7b02907a167e00c76e9bc19d8045 --- /dev/null +++ b/json/pre_dec_json/data75_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 316, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 734, + "y": 904, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 723, + "y": 1455, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 445, + "y": 958, + "width": 231, + "length": 219 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data76_aligned.json b/json/pre_dec_json/data76_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..cbdd54ca65a79b1d9910adf7474ef75d4faff16f --- /dev/null +++ b/json/pre_dec_json/data76_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 581, + "y": 618, + "size": "Small", + "vx": 0, + "vy": 60, + "ay": 0, + "accel_mode": "SK" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 347, + "y": 1095, + "size": "Small", + "vx": 0, + "vy": -200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 175, + "y": 1050, + "size": "Small", + "vx": 0, + "vy": -200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 342, + "y": 1507, + "size": "Small", + "vx": 0, + "vy": -200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 796, + "y": 1448, + "width": 400, + "length": 1100 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data77_aligned.json b/json/pre_dec_json/data77_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0e2e3c3682f78ddd37e7b4e3fc186eabd219ad14 --- /dev/null +++ b/json/pre_dec_json/data77_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "1", + "x": 625, + "y": 996, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 200, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data78_aligned.json b/json/pre_dec_json/data78_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ec1460de75900476fc410077d0de05a715a93087 --- /dev/null +++ b/json/pre_dec_json/data78_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 388, + "y": 872, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_2", + "type": "pedestrian", + "x": 498, + "y": 925, + "vx": 0, + "vy": 0 + }, + { + "id": "ped_3", + "type": "pedestrian", + "x": 379, + "y": 1075, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 814, + "y": 992, + "width": 370, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 420, + "y": 622, + "width": 392, + "length": 110 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data79_aligned.json b/json/pre_dec_json/data79_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..29bb8d2191599410b57515277dbf19059d4ea40e --- /dev/null +++ b/json/pre_dec_json/data79_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 431, + "y": 1208, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 289, + "y": 1480, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data7_aligned.json b/json/pre_dec_json/data7_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..76c3e0e7d999753d57567a311284f92bad9363f0 --- /dev/null +++ b/json/pre_dec_json/data7_aligned.json @@ -0,0 +1,43 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 502, + "y": 481, + "vx": -20, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 897, + "y": 985, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 105, + "y": 989, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data80_aligned.json b/json/pre_dec_json/data80_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..181356f457189e4632b82374c7f9e2e522da7b5e --- /dev/null +++ b/json/pre_dec_json/data80_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 230, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 462, + "y": 1149, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 814, + "y": 992, + "width": 370, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 415, + "y": 588, + "width": 404, + "length": 340 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data81_aligned.json b/json/pre_dec_json/data81_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..ae33165558ce45cd840f0b92cff8d42ddba26777 --- /dev/null +++ b/json/pre_dec_json/data81_aligned.json @@ -0,0 +1,55 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 310, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 506, + "y": 1095, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 809, + "y": 399, + "width": 370, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 526, + "y": 521, + "width": 131, + "length": 125 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data82_aligned.json b/json/pre_dec_json/data82_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3351adec70a202513ed3031c863d7496f6635564 --- /dev/null +++ b/json/pre_dec_json/data82_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 420, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 696, + "y": 111, + "size": "Small", + "vx": 0, + "vy": 360, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 495, + "y": 700, + "size": "Small", + "vx": 0, + "vy": 50, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 1275, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 895, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 201, + "y": 992, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data83_aligned.json b/json/pre_dec_json/data83_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..6fd5e9cbd6a240aaffb5699e9f1812fe2500f2fe --- /dev/null +++ b/json/pre_dec_json/data83_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 722, + "y": 721, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 324, + "y": 762, + "size": "Big", + "vx": 30, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 321, + "y": 1263, + "size": "Big", + "vx": 30, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 96, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data84_aligned.json b/json/pre_dec_json/data84_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..c48b6813f87680f3d9126b5a6d74772af9e95fa2 --- /dev/null +++ b/json/pre_dec_json/data84_aligned.json @@ -0,0 +1,71 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 705, + "y": 931, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 278, + "y": 1500, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 488, + "y": 1502, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 96, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data85_aligned.json b/json/pre_dec_json/data85_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0b36fe92b8f92ce46f308cf6b71a2a56da5962c8 --- /dev/null +++ b/json/pre_dec_json/data85_aligned.json @@ -0,0 +1,47 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 600, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 381, + "y": 786, + "size": "Small", + "vx": 0, + "vy": 605, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 848, + "y": 994, + "width": 300, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 151, + "y": 994, + "width": 300, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data86_aligned.json b/json/pre_dec_json/data86_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..3b6c4b0916e7b0b2e9d2ce67ebd58ca2e6cbc4b3 --- /dev/null +++ b/json/pre_dec_json/data86_aligned.json @@ -0,0 +1,35 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 511, + "y": 661, + "width": 134, + "length": 124 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data87_aligned.json b/json/pre_dec_json/data87_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..091ffa6a75e175619497388ae55d26e53aa0b980 --- /dev/null +++ b/json/pre_dec_json/data87_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 287, + "y": 934, + "size": "Small", + "vx": 0, + "vy": 138, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 726, + "y": 1332, + "size": "Small", + "vx": 0, + "vy": 440, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 101, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 661, + "y": 494, + "width": 264, + "length": 181 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data88_aligned.json b/json/pre_dec_json/data88_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..74eb7b0af05b0500fce3561cfdecfbeafb4fc981 --- /dev/null +++ b/json/pre_dec_json/data88_aligned.json @@ -0,0 +1,95 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 628, + "y": 1290, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 340, + "y": 1229, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 645, + "y": 1117, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "1", + "x": 355, + "y": 1068, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "1", + "x": 562, + "y": 912, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 105, + "y": 990, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data89_aligned.json b/json/pre_dec_json/data89_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..d55cc6183a06c99853d9a0b381d4a2332c313682 --- /dev/null +++ b/json/pre_dec_json/data89_aligned.json @@ -0,0 +1,99 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 517, + "y": 993, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 330, + "y": 744, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 329, + "y": 1060, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 514, + "y": 1317, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 703, + "y": 977, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "0", + "x": 682, + "y": 1303, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 993, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data8_aligned.json b/json/pre_dec_json/data8_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2752424ed33b24e7d3586c6e1638e286dcc66608 --- /dev/null +++ b/json/pre_dec_json/data8_aligned.json @@ -0,0 +1,123 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 507, + "y": 1078, + "size": "Big", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 256, + "y": 673, + "size": "Small", + "vx": 0, + "vy": 80, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 377, + "y": 939, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 472, + "y": 813, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 735, + "y": 973, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "0", + "x": 644, + "y": 910, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_7", + "type": "vehicle", + "toward": "0", + "x": 568, + "y": 746, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_8", + "type": "vehicle", + "toward": "0", + "x": 715, + "y": 629, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 900, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data90_aligned.json b/json/pre_dec_json/data90_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..cd4a91d9ddd5678f1359f526b61e433f1ad4e46e --- /dev/null +++ b/json/pre_dec_json/data90_aligned.json @@ -0,0 +1,63 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 511, + "y": 700, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 530, + "y": 1203, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 890, + "y": 1218, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 202, + "y": 991, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data91_aligned.json b/json/pre_dec_json/data91_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..453c3c0e61d7e1ec14d26f0b46039dbf469b486d --- /dev/null +++ b/json/pre_dec_json/data91_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 742, + "y": 934, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 737, + "y": 1293, + "size": "Small", + "vx": 0, + "vy": 555, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "ped_1", + "type": "pedestrian", + "x": 447, + "y": 473, + "vx": 0, + "vy": 0 + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 197, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 898, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 444, + "y": 840, + "width": 63, + "length": 668 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data92_aligned.json b/json/pre_dec_json/data92_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..67fef84f30c2f14a16176b4ea7fdf3845b5d4eac --- /dev/null +++ b/json/pre_dec_json/data92_aligned.json @@ -0,0 +1,131 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 280, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 302, + "y": 1010, + "size": "Nm", + "vx": 0, + "vy": -40, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 225, + "y": 803, + "size": "Nm", + "vx": 0, + "vy": -40, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 402, + "y": 770, + "size": "Nm", + "vx": 0, + "vy": -40, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 532, + "y": 726, + "size": "Nm", + "vx": 0, + "vy": -40, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "0", + "x": 681, + "y": 701, + "size": "Nm", + "vx": 0, + "vy": -40, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "0", + "x": 625, + "y": 894, + "size": "Nm", + "vx": 0, + "vy": -40, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_7", + "type": "vehicle", + "toward": "0", + "x": 461, + "y": 972, + "size": "Nm", + "vx": 0, + "vy": -40, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_8", + "type": "vehicle", + "toward": "0", + "x": 816, + "y": 667, + "size": "Nm", + "vx": 0, + "vy": -40, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 101, + "y": 1549, + "width": 200, + "length": 900 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 800, + "y": 1547, + "width": 400, + "length": 900 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data93_aligned.json b/json/pre_dec_json/data93_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..8ed67c9fabec337623c7dfdb6dccc2e2c7f9b5bb --- /dev/null +++ b/json/pre_dec_json/data93_aligned.json @@ -0,0 +1,79 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 713, + "y": 1574, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 506, + "y": 1540, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 717, + "y": 1105, + "size": "Nm", + "vx": 0, + "vy": 100, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 205, + "y": 993, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 897, + "y": 993, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 544, + "y": 661, + "width": 238, + "length": 139 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data94_aligned.json b/json/pre_dec_json/data94_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..5516827de8b567269cfe7106999c6cbacb8ef9af --- /dev/null +++ b/json/pre_dec_json/data94_aligned.json @@ -0,0 +1,59 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 410, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 945, + "size": "Big", + "vx": 0, + "vy": 260, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 334, + "y": 1258, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 992, + "width": 200, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 99, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data95_aligned.json b/json/pre_dec_json/data95_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..41f6a8063c9a202d22c2972bdbfdd3a6b25446bd --- /dev/null +++ b/json/pre_dec_json/data95_aligned.json @@ -0,0 +1,75 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 322, + "y": 28, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 337, + "y": 597, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 689, + "y": 712, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 1317, + "size": "Small", + "vx": 0, + "vy": 277, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data96_aligned.json b/json/pre_dec_json/data96_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..2d1b06b67990fe7096b2285fe2eb8c1fa5a26cf2 --- /dev/null +++ b/json/pre_dec_json/data96_aligned.json @@ -0,0 +1,87 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 322, + "y": 28, + "size": "Small", + "vx": 0, + "vy": 300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 689, + "y": 712, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 569, + "y": 1125, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "1", + "x": 302, + "y": 1040, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "1", + "x": 175, + "y": 839, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 992, + "width": 200, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data97_aligned.json b/json/pre_dec_json/data97_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..24cd3c9a320951a32b0d0c64687a6acc7404a751 --- /dev/null +++ b/json/pre_dec_json/data97_aligned.json @@ -0,0 +1,39 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 660, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 292, + "y": 1103, + "size": "Small", + "vx": 0, + "vy": -560, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 797, + "y": 991, + "width": 400, + "length": 2000 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data98_aligned.json b/json/pre_dec_json/data98_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..0281b92f4eedea0d7bc7a249410969659bab690b --- /dev/null +++ b/json/pre_dec_json/data98_aligned.json @@ -0,0 +1,95 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 527, + "y": 1317, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 698, + "y": 913, + "size": "Small", + "vx": 0, + "vy": 350, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "0", + "x": 217, + "y": 735, + "size": "Small", + "vx": 0, + "vy": -300, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "1", + "x": 439, + "y": 717, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "1", + "x": 553, + "y": 717, + "size": "Nm", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 1600, + "width": 200, + "length": 850 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 1600, + "width": 200, + "length": 850 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data99_aligned.json b/json/pre_dec_json/data99_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..9579968103bf4f6e3719e6a35180e27a18aeb522 --- /dev/null +++ b/json/pre_dec_json/data99_aligned.json @@ -0,0 +1,107 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 400, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 662, + "y": 912, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "1", + "x": 426, + "y": 1107, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_3", + "type": "vehicle", + "toward": "1", + "x": 177, + "y": 898, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_4", + "type": "vehicle", + "toward": "1", + "x": 467, + "y": 916, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_5", + "type": "vehicle", + "toward": "1", + "x": 461, + "y": 1325, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_6", + "type": "vehicle", + "toward": "1", + "x": 371, + "y": 1458, + "size": "Small", + "vx": 0, + "vy": 0, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 898, + "y": 1521, + "width": 200, + "length": 850 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 102, + "y": 1526, + "width": 200, + "length": 850 + } + ] +} \ No newline at end of file diff --git a/json/pre_dec_json/data9_aligned.json b/json/pre_dec_json/data9_aligned.json new file mode 100644 index 0000000000000000000000000000000000000000..f464eb34cbacfb16cd65524f7cdb5c3464510abd --- /dev/null +++ b/json/pre_dec_json/data9_aligned.json @@ -0,0 +1,67 @@ +{ + "width": 1000, + "height": 2000, + "dt": 0.2, + "entities": [ + { + "id": "ego", + "type": "ego", + "toward": "0", + "x": 500, + "y": 0, + "size": "Small", + "vx": 0, + "vy": 200, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_1", + "type": "vehicle", + "toward": "0", + "x": 500, + "y": 803, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "veh_2", + "type": "vehicle", + "toward": "0", + "x": 498, + "y": 1435, + "size": "Small", + "vx": 0, + "vy": 416, + "ay": 0, + "accel_mode": "Z" + }, + { + "id": "obs_1", + "type": "obstacle", + "x": 196, + "y": 970, + "width": 400, + "length": 2000 + }, + { + "id": "obs_2", + "type": "obstacle", + "x": 903, + "y": 974, + "width": 200, + "length": 2000 + }, + { + "id": "obs_3", + "type": "obstacle", + "x": 654, + "y": 444, + "width": 295, + "length": 282 + } + ] +} \ No newline at end of file diff --git a/pic/data1.png b/pic/data1.png new file mode 100644 index 0000000000000000000000000000000000000000..94efc459f2f2503d45721d751b6f8f130bd08697 --- /dev/null +++ b/pic/data1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60585029ffcffeba50677482e25752f505d14f31a90f11ff19919d27a16a3af6 +size 164515 diff --git a/pic/data10.png b/pic/data10.png new file mode 100644 index 0000000000000000000000000000000000000000..618968732d43a9b22a943be97a670e32c3b54b9b --- /dev/null +++ b/pic/data10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ddaa948af135bc1b4b14914703239e9259f5b2a5718cab479be201f7ebda895 +size 1002916 diff --git a/pic/data100.png b/pic/data100.png new file mode 100644 index 0000000000000000000000000000000000000000..8cd047b8ce3f94649743d8c159e6c3b822ae8832 --- /dev/null +++ b/pic/data100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f213cb0d1ad60a4cdf37c67a8c4b70863e9a2a7e858c5f0afaeb47c2773a604 +size 1526448 diff --git a/pic/data101.png b/pic/data101.png new file mode 100644 index 0000000000000000000000000000000000000000..8981f55e141ad7cd701af036b6d5676742cd5725 --- /dev/null +++ b/pic/data101.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0be5460b6c6177183f9a80382bb04867f49c25ec5e9abe09c21ff6f5004dc397 +size 234884 diff --git a/pic/data102.png b/pic/data102.png new file mode 100644 index 0000000000000000000000000000000000000000..d392b0e571359322060829c208eae2848a665bb2 --- /dev/null +++ b/pic/data102.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7070e1d07698009e11e1988d9b223690d167ea405fae6c28b93d50f1d76786e +size 1382697 diff --git a/pic/data103.png b/pic/data103.png new file mode 100644 index 0000000000000000000000000000000000000000..53250f9b054b470de07835ebd68bc8b8b20e2f75 --- /dev/null +++ b/pic/data103.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da34ceb4ee2ea66051279bb9ab741d6c51a3c441b7ea49da743e907ab1a3cce0 +size 1099731 diff --git a/pic/data104.png b/pic/data104.png new file mode 100644 index 0000000000000000000000000000000000000000..c007493947fcb57ae38d21426035e58c89655a71 --- /dev/null +++ b/pic/data104.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658c826c19c89decc694f34e1126807cd6d659e96ba683bb92e8d674f1d3d82c +size 1530322 diff --git a/pic/data105.png b/pic/data105.png new file mode 100644 index 0000000000000000000000000000000000000000..722c073ed26138dc2533a46743f059730224d6a0 --- /dev/null +++ b/pic/data105.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad733f7f2954c2ebf45cdf18f105ef15d176e0ff1d01d9e51aa340ed6a16eb3 +size 2290170 diff --git a/pic/data106.png b/pic/data106.png new file mode 100644 index 0000000000000000000000000000000000000000..aab91ae13725ef0cf9d962c82c9e114201319bbc --- /dev/null +++ b/pic/data106.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c179a2157a0268f1b1a99391a0e62c6db0f92441ab3eaec9edfc71f73042a1ba +size 1536638 diff --git a/pic/data107.png b/pic/data107.png new file mode 100644 index 0000000000000000000000000000000000000000..daa61b4e2635aa7f02cc0d20e67fb58889bc6cc1 --- /dev/null +++ b/pic/data107.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e93d11d6da8442ced36b1541263982b33399c6a4a797670e13fb57e2b6e2f0 +size 2584242 diff --git a/pic/data108.png b/pic/data108.png new file mode 100644 index 0000000000000000000000000000000000000000..a3110b2842d5deee2adcb5f9e845febd8e356d89 --- /dev/null +++ b/pic/data108.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4410d2e18053e29ba039d6b08087a42e0ec34580c34ac751c4ee8d205430fad +size 1809910 diff --git a/pic/data109.png b/pic/data109.png new file mode 100644 index 0000000000000000000000000000000000000000..6f35c399f1abc61792da199dc88a689d603b5c7e --- /dev/null +++ b/pic/data109.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75f56ecf4d86525e06b9dc937d5ef72d8ae3dac456379064448cf9dfbcccc22e +size 1604800 diff --git a/pic/data11.png b/pic/data11.png new file mode 100644 index 0000000000000000000000000000000000000000..a294c244dc7b9fe5720f1a1500cf56417de2f3e4 --- /dev/null +++ b/pic/data11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b0990d7fe6d7b60b22b2c04ad773873e3c99d694299e858bd73a32ec747abc +size 190830 diff --git a/pic/data110.png b/pic/data110.png new file mode 100644 index 0000000000000000000000000000000000000000..929887d2bb95100ba20988ce6388c6b751470bc8 --- /dev/null +++ b/pic/data110.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a24567db3566e68bf00a617235e287d59dbf3e5d974fac29161368e473c844 +size 2117623 diff --git a/pic/data111.png b/pic/data111.png new file mode 100644 index 0000000000000000000000000000000000000000..2d8dd94a48490e695fe6f16b52223a0deceec253 --- /dev/null +++ b/pic/data111.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b06613810d1543be58ab5768f5b55f676c3f55ac5a1784dc9508b093556a010 +size 1782626 diff --git a/pic/data112.png b/pic/data112.png new file mode 100644 index 0000000000000000000000000000000000000000..f647e981cde6d7bdde3f570b3a6aff51fbaa1df4 --- /dev/null +++ b/pic/data112.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6394a21b6591313c4afbc18a68c820dfd3338cd1141af61a0043b7274a851347 +size 251173 diff --git a/pic/data113.png b/pic/data113.png new file mode 100644 index 0000000000000000000000000000000000000000..399a57ea2c2cd8f08091860f31a917891e46854d --- /dev/null +++ b/pic/data113.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd8ee635caf098b18e196473d9211e0ad68769311e7433967e3a9b1a202f0464 +size 219244 diff --git a/pic/data114.png b/pic/data114.png new file mode 100644 index 0000000000000000000000000000000000000000..bb9a5ecc7a02af6942bcb5c791e8bdcad6f145aa --- /dev/null +++ b/pic/data114.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82107f62d43c0f5a02a2da01215e51a525078f55484a709e8bdfc9609780b1de +size 2272255 diff --git a/pic/data115.png b/pic/data115.png new file mode 100644 index 0000000000000000000000000000000000000000..6676f68d313505dc5659f9e8909ac56756edf0c5 --- /dev/null +++ b/pic/data115.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a726dca26ef7d40c7ef7fccc1b06d933053aa1846a982bfb7ffd02732f4763a +size 2260413 diff --git a/pic/data116.png b/pic/data116.png new file mode 100644 index 0000000000000000000000000000000000000000..bab61fef11ea9066c4adfed5a2817948bf6a054d --- /dev/null +++ b/pic/data116.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba6548de6589c75d1e54b628bf9b36f4956819d3a9a4601eff9dfa10fc996bf +size 1827886 diff --git a/pic/data117.png b/pic/data117.png new file mode 100644 index 0000000000000000000000000000000000000000..f7c1eb79e70fd9a9161b13caf9f2e7891f976ca8 --- /dev/null +++ b/pic/data117.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22921e8dfd9cb4abb94bf5a659ce980e233a187e5a2894f2c4fae1d1dc93945 +size 1791243 diff --git a/pic/data118.png b/pic/data118.png new file mode 100644 index 0000000000000000000000000000000000000000..80dada70fb7d93f775cf339eb3c784937a863904 --- /dev/null +++ b/pic/data118.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee2ca1fe12c55eec78fefcdaac18234b8fa1698c18db3b2af965dc522d676a9 +size 1763242 diff --git a/pic/data119.png b/pic/data119.png new file mode 100644 index 0000000000000000000000000000000000000000..3581a9b8f60a1fbfd8e9b99c9858359e54cd21cf --- /dev/null +++ b/pic/data119.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd296a81eef520e871e81e6a915d728cf321e07de3693b4c5122863fd63f024 +size 2095237 diff --git a/pic/data12.png b/pic/data12.png new file mode 100644 index 0000000000000000000000000000000000000000..19d4688658dc0472403d5143d0f85c56b601a17f --- /dev/null +++ b/pic/data12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ebbd443e4b3a4d75a90a27d70aa0f82bc3a0a8dc89221f05b57f2ca39599acc +size 2885362 diff --git a/pic/data120.png b/pic/data120.png new file mode 100644 index 0000000000000000000000000000000000000000..93881e8cc950fde2ca356d87f2507c92090d6e60 --- /dev/null +++ b/pic/data120.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeac50ebb9da719b76a284ea1331319f6cd9fa15d3e35738de0fca710cc23a98 +size 1743506 diff --git a/pic/data121.png b/pic/data121.png new file mode 100644 index 0000000000000000000000000000000000000000..d2ad143efdaf2a89a3b8a4d5887935982709f223 --- /dev/null +++ b/pic/data121.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b1fd6e472193269a84c176e1e9e52b39b0e633d7aa3dbf0931fcb7b6d2ec6e +size 1566514 diff --git a/pic/data122.png b/pic/data122.png new file mode 100644 index 0000000000000000000000000000000000000000..4c8f7adac6b6536b3f43dfcb0cb97384ca4bdcf1 --- /dev/null +++ b/pic/data122.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec3c27a6947364eec6e107a427bb787604fc640a05a73c25f3c567ff75e86b5 +size 2367866 diff --git a/pic/data123.png b/pic/data123.png new file mode 100644 index 0000000000000000000000000000000000000000..7aab2ac98edbcaed14505a8c3225138f7781ac0d --- /dev/null +++ b/pic/data123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b2f7506d95d8e5dd084e33307008a634fcaa033ee6be28e075f45ac01355340 +size 2297360 diff --git a/pic/data124.png b/pic/data124.png new file mode 100644 index 0000000000000000000000000000000000000000..bbff3cfec8eea4e4bf8a895b8a493ee13335eca9 --- /dev/null +++ b/pic/data124.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:722ea15402c60205e72046e0ca024b55e0162c682680970dedf7db8e42e1a26a +size 208067 diff --git a/pic/data125.png b/pic/data125.png new file mode 100644 index 0000000000000000000000000000000000000000..fc3b307685bec555f820a32adcdf880c4c2bc026 --- /dev/null +++ b/pic/data125.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a71607ce18384f72800a09509674a355ccbe67b57686ca947f395d5c3e0eb4 +size 2289848 diff --git a/pic/data126.png b/pic/data126.png new file mode 100644 index 0000000000000000000000000000000000000000..27e8dd555d46ed4973f616c254c724db651a6472 --- /dev/null +++ b/pic/data126.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f422db01bf0a21fd0606f09e8de6226c44e4767670b7113c665a75b70173ecdd +size 2310544 diff --git a/pic/data127.png b/pic/data127.png new file mode 100644 index 0000000000000000000000000000000000000000..e27364f71fa575e06e9bb9313f904a4797c75d04 --- /dev/null +++ b/pic/data127.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c66e2a1a3602cfaef12af2dc55fda230ab27e1f11cbc74d8c3146d7df3863f32 +size 2200437 diff --git a/pic/data128.png b/pic/data128.png new file mode 100644 index 0000000000000000000000000000000000000000..0376fe2ff895efcfa62448cbb1959b6df04fa574 --- /dev/null +++ b/pic/data128.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e72e1977683cb9461bac114735129a66bc0f3cf833dd93c361a86982ec801a7 +size 1829301 diff --git a/pic/data129.png b/pic/data129.png new file mode 100644 index 0000000000000000000000000000000000000000..5271407e730cd50e0a4ae0662b332961d712d6a9 --- /dev/null +++ b/pic/data129.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2bcf6ab6abbcf7cfff0a4508df6e405bad52e2264a79caa96310a91d3712cd2 +size 1737176 diff --git a/pic/data13.png b/pic/data13.png new file mode 100644 index 0000000000000000000000000000000000000000..1e4c1de6d11a715cdc078116443ef4e0c8069102 --- /dev/null +++ b/pic/data13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d41dbf20c45f43c2cd45a90037070914967ba3aec79a6772c7d7103dd6a9a7 +size 67732 diff --git a/pic/data130.png b/pic/data130.png new file mode 100644 index 0000000000000000000000000000000000000000..6ef20ab3ea48c9624837e3c1b0a4d94604ad321d --- /dev/null +++ b/pic/data130.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c3b417d15e27f1c8df12b3371a94df664c3038f9b280045ba5d093aadccf3a +size 2046606 diff --git a/pic/data131.png b/pic/data131.png new file mode 100644 index 0000000000000000000000000000000000000000..3fc0573bb48acd6765c5ec727f6f0849f815736b --- /dev/null +++ b/pic/data131.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b88ac25dd0ba93564cca8eeb8a2e6b41e32285e7330eb6dd7f5c3ab60c248ac +size 1656150 diff --git a/pic/data132.png b/pic/data132.png new file mode 100644 index 0000000000000000000000000000000000000000..fbbd8d3e313545b70b31bc34267fd8d69d4b40b1 --- /dev/null +++ b/pic/data132.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ce45c92ae8880b1fc8802653533dafd20cc755e7cc7cc2bd65d1ea43b09d2d +size 1750693 diff --git a/pic/data133.png b/pic/data133.png new file mode 100644 index 0000000000000000000000000000000000000000..8bd2576e30d27f1f95d6bb87795e9cf3a499781d --- /dev/null +++ b/pic/data133.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e51d64c722716c6069ee1a869021ab7b351bcd9b644160d72d1d60efd2bd7fc0 +size 1674313 diff --git a/pic/data134.png b/pic/data134.png new file mode 100644 index 0000000000000000000000000000000000000000..704eed296d34b6224901ce38a4d5ac5d62fcb38f --- /dev/null +++ b/pic/data134.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0836a35fb605bd84a94d3a12be65f93d6bddfbc7b40394ad7f23e517fd8ea113 +size 229645 diff --git a/pic/data135.png b/pic/data135.png new file mode 100644 index 0000000000000000000000000000000000000000..0411e993513771864f75c16ba73d93434df76f35 --- /dev/null +++ b/pic/data135.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35c7a64ef767f7a3153098b4a2f863ab82cb19157efacf4155995bb33bb14f3a +size 212136 diff --git a/pic/data136.png b/pic/data136.png new file mode 100644 index 0000000000000000000000000000000000000000..01662b6e54f6ecf08e4e0beac54e3def9da94b58 --- /dev/null +++ b/pic/data136.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ee3e94dd229062bae7f99611f148e1c690d66a8fdfe0551bddec58cf7bab1a5 +size 1739958 diff --git a/pic/data137.png b/pic/data137.png new file mode 100644 index 0000000000000000000000000000000000000000..a4c8ccd1120ecb2866cff5cdc4b3c33ccb5b1104 --- /dev/null +++ b/pic/data137.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290d5966f89a8842fd5d2466ff5cb75da4d65cb045ab204a8214a97dbe3405da +size 1924211 diff --git a/pic/data138.png b/pic/data138.png new file mode 100644 index 0000000000000000000000000000000000000000..70a29290e5d4ac11a7b06131ba9c212f5246a190 --- /dev/null +++ b/pic/data138.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40b5bf203a90eb80f7fa9b78737a32a7536e9ac96273033344c9d213f181b9ed +size 1884593 diff --git a/pic/data139.png b/pic/data139.png new file mode 100644 index 0000000000000000000000000000000000000000..956d962bbf5449979d988d4569c3f743084f6656 --- /dev/null +++ b/pic/data139.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b12f5bd3270c3c9b3500c07eade80bf0cbd4fc8b25940f759f4e5c3e938c0932 +size 1099260 diff --git a/pic/data14.png b/pic/data14.png new file mode 100644 index 0000000000000000000000000000000000000000..53e5ce738e7d8d58e3496f3745ea55d708a92668 --- /dev/null +++ b/pic/data14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5ca67f42d9a721b206267b76861a9052e0b2b0aa83c4ff4a970dc6a56c6753 +size 2811852 diff --git a/pic/data140.png b/pic/data140.png new file mode 100644 index 0000000000000000000000000000000000000000..caec4d443341cae80bb590c5cae837e0b648d602 --- /dev/null +++ b/pic/data140.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a6834b4f79f2ad358c29b1603f5fc190141174430813cb62c8ac0b7a217cd3 +size 1675996 diff --git a/pic/data141.png b/pic/data141.png new file mode 100644 index 0000000000000000000000000000000000000000..ce0c674c5de0dfe28c65fe7941a36076855a7c75 --- /dev/null +++ b/pic/data141.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0cfb83841b669aa3ba3d485d313eca112c00b5d65b32fc3414e2ed2b8bd6526 +size 1668547 diff --git a/pic/data142.png b/pic/data142.png new file mode 100644 index 0000000000000000000000000000000000000000..819fffe0cababd81a3bb44b778193440d1d850a0 --- /dev/null +++ b/pic/data142.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102218a6bb2dae07b515dbac4e1427ea3a6f9cd9534f5c5efaa1de4dab6d7a4c +size 1834113 diff --git a/pic/data143.png b/pic/data143.png new file mode 100644 index 0000000000000000000000000000000000000000..947ec60e2fc4d1fe87d53140d7b8c36abd7a73a1 --- /dev/null +++ b/pic/data143.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3719e1152f61cf21dec2d8109829c56713325273469a37850468ffba00dd750 +size 1934335 diff --git a/pic/data144.png b/pic/data144.png new file mode 100644 index 0000000000000000000000000000000000000000..1f6c9a831df1da73387a4421e6bd13b36b16a6ee --- /dev/null +++ b/pic/data144.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96313c41a9ef371056ba70c728b91c90fcc6e3ae8089e9482a77a95e9cb9ff43 +size 1811559 diff --git a/pic/data145.png b/pic/data145.png new file mode 100644 index 0000000000000000000000000000000000000000..89c6cc27aca6c8c95f30e77bcfa92ef7d599d4c8 --- /dev/null +++ b/pic/data145.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e0fa5612622d3ec4378c04736240473d590a39c6fff1d6c97aca9c204a76db1 +size 1861138 diff --git a/pic/data146.png b/pic/data146.png new file mode 100644 index 0000000000000000000000000000000000000000..34c4d0a1b7ef6f3cef2e9284a9863033943a3b15 --- /dev/null +++ b/pic/data146.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bbb19db865c34d191534e029e9542a2f57fbc934ed44d00f82380b96b57d58c +size 136837 diff --git a/pic/data147.png b/pic/data147.png new file mode 100644 index 0000000000000000000000000000000000000000..59f27f82c5c12930ab164a47f72961f9e67d6fee --- /dev/null +++ b/pic/data147.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab3a432c8d46ae91706ee2d75196c334869d4dfa50da110312f77c5a42b98e9e +size 2293578 diff --git a/pic/data148.png b/pic/data148.png new file mode 100644 index 0000000000000000000000000000000000000000..3cb60da1f96feb19b8d7e700d57e70a5ea5404e1 --- /dev/null +++ b/pic/data148.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a648eae070468786208f247ae1d3c46ba40846e84ee3e06558ec7cf6c0fc105 +size 1958404 diff --git a/pic/data149.png b/pic/data149.png new file mode 100644 index 0000000000000000000000000000000000000000..6b81b63963b5781f4d96f8853a04b027d8fa1044 --- /dev/null +++ b/pic/data149.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533398038969f364f8c4e00200f2a5ee09d1f89aafa4a56317041094f0fcfc64 +size 1918705 diff --git a/pic/data15.png b/pic/data15.png new file mode 100644 index 0000000000000000000000000000000000000000..128fd5c6227ad8a71755b8e0bc36d5255bc47201 --- /dev/null +++ b/pic/data15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:709e9b1a44a970968caef96ef74526192707d1d7cac75c0c7660f7ed8f23cf23 +size 2848613 diff --git a/pic/data150.png b/pic/data150.png new file mode 100644 index 0000000000000000000000000000000000000000..7ba5ed858f70ab80a0949a3f7a03d427d271dcd9 --- /dev/null +++ b/pic/data150.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6dbbca2cc8df26a53f6535e7862ec9f7ae93b2f3c0a1aff119c3ae896e0dc2 +size 2046877 diff --git a/pic/data151.png b/pic/data151.png new file mode 100644 index 0000000000000000000000000000000000000000..2f7911aa985ef290f437d7a534f87d5e2456df2a --- /dev/null +++ b/pic/data151.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fed4f67493bb5a7c04c50c23d787c2c979bb575c0cbea07fdb6123c10870d798 +size 1765368 diff --git a/pic/data152.png b/pic/data152.png new file mode 100644 index 0000000000000000000000000000000000000000..1b67fac9c30e39ee263d84c22e90cd0a073fe5ce --- /dev/null +++ b/pic/data152.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c6fd96adf448fed0c9164a0fcbcad761fa84f28e1ddd1ba3f2e3b0211bf766 +size 2032990 diff --git a/pic/data153.png b/pic/data153.png new file mode 100644 index 0000000000000000000000000000000000000000..e618e307ddbd65741a11d740cbe4c4072cb5975a --- /dev/null +++ b/pic/data153.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f248e50bde8c2daafae954ca9a4176140aa8dda1ae52942467ce795465f4516 +size 1944942 diff --git a/pic/data154.png b/pic/data154.png new file mode 100644 index 0000000000000000000000000000000000000000..80c5da9f8c29771588fd487c89568e7bbd8f9a7b --- /dev/null +++ b/pic/data154.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8744c00a123a52533dbb4efd91099849d81a1c6806430e3f7b5e69bb9ea83db6 +size 2124358 diff --git a/pic/data155.png b/pic/data155.png new file mode 100644 index 0000000000000000000000000000000000000000..ab7f3fd602d0e996ab1b1f52d80d97643215854e --- /dev/null +++ b/pic/data155.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a9a3dff0317915aa49dd8765c4d16bc9272408d7d7cb9fff5cf2af85117501 +size 1811256 diff --git a/pic/data156.png b/pic/data156.png new file mode 100644 index 0000000000000000000000000000000000000000..c6f7b95e423de6eb783ce7e125040026bf40ca49 --- /dev/null +++ b/pic/data156.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:669d1c52d42c8d732fb7fded4f0d3038a6c8ffffa2f3d7a9d45c1838b34ac5e4 +size 2105250 diff --git a/pic/data157.png b/pic/data157.png new file mode 100644 index 0000000000000000000000000000000000000000..a8bd32e28fa9cb6aa6105f723e87a96d78f0b83b --- /dev/null +++ b/pic/data157.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:341d930a0c9cb721590cbbe3ae8e0db7ee11339678cef19105d9ef611e3ac22e +size 266458 diff --git a/pic/data158.png b/pic/data158.png new file mode 100644 index 0000000000000000000000000000000000000000..8d429e74b22b39c7402d1670cb21d4f71999c004 --- /dev/null +++ b/pic/data158.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e184018ab5ebb61bc87e8ae219f26493b83484505c07671cb3ac8d01c8eacdd1 +size 1356487 diff --git a/pic/data159.png b/pic/data159.png new file mode 100644 index 0000000000000000000000000000000000000000..7b5868316ed54081949022a88d6b34eb33e9d70c --- /dev/null +++ b/pic/data159.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d7b00b6757de2273345992d38a5e2019fdca650ef1105dcf7787d10a0b00b3 +size 2102055 diff --git a/pic/data16.png b/pic/data16.png new file mode 100644 index 0000000000000000000000000000000000000000..a2bb77ee8b4fbe8d0c863a29b67f60bd8a34b24b --- /dev/null +++ b/pic/data16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5b657d016f0631b177cc5c9f489c46951a7ab851abcf06170f2680fbe7de08 +size 2730638 diff --git a/pic/data160.png b/pic/data160.png new file mode 100644 index 0000000000000000000000000000000000000000..3b3c1ba627006149ecc3b97d35c8da6280c1be9f --- /dev/null +++ b/pic/data160.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6852205bb62e47a730e119cdb2ddb4de5e4f241c4153f1a35899f2190b652c5e +size 1648243 diff --git a/pic/data161.png b/pic/data161.png new file mode 100644 index 0000000000000000000000000000000000000000..e907a1dff83ae74d22a40e1124c109b3bd7fb689 --- /dev/null +++ b/pic/data161.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e813e65807563e3ad27dd2c1c2693c7e610aee46d9bd7fc7690dadd8041e345 +size 1644708 diff --git a/pic/data162.png b/pic/data162.png new file mode 100644 index 0000000000000000000000000000000000000000..34ca07e56d07423e773ab449aff8b490f4079150 --- /dev/null +++ b/pic/data162.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:011c89fcc075cd598bc0ad5a64945c1e2cd832fc57e54240fb16db0bd1a01bb4 +size 1940076 diff --git a/pic/data163.png b/pic/data163.png new file mode 100644 index 0000000000000000000000000000000000000000..78dccf20620244859f795f3401aeebe91faa6255 --- /dev/null +++ b/pic/data163.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcce485ba4ba9bf1998568479835d5d52234b35a2c62439b79e0038ed1bbb7e2 +size 1980426 diff --git a/pic/data164.png b/pic/data164.png new file mode 100644 index 0000000000000000000000000000000000000000..ad715fd782f8d69a95a50b8e2a1199bece3ed532 --- /dev/null +++ b/pic/data164.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf3b3759d66412f84b674cf55535fac9dd98e030906d813204c463ab38f2b2fb +size 1943379 diff --git a/pic/data165.png b/pic/data165.png new file mode 100644 index 0000000000000000000000000000000000000000..452fed4a4350de470df7e2d4cbbdd70f876f973a --- /dev/null +++ b/pic/data165.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02efe313a58256aa3a53d9760e3f74f6549050150c8616a15d884b2a5bc288e +size 1985177 diff --git a/pic/data166.png b/pic/data166.png new file mode 100644 index 0000000000000000000000000000000000000000..93569aaa9eadebc9bd6e4273f1fd34ab339d6cff --- /dev/null +++ b/pic/data166.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e441d00d353b49f14449c634bd555a6c197f4c1b9c195a20bcf2f3cd9d2cfcbb +size 1927813 diff --git a/pic/data167.png b/pic/data167.png new file mode 100644 index 0000000000000000000000000000000000000000..57b7ae8a4c4a2e1b672339cd4f2e202f7cc72626 --- /dev/null +++ b/pic/data167.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4322fd646a77b4124258eb6a01af4111475cc3ef6c7da76ed7aaf2bcf48e23a4 +size 1679177 diff --git a/pic/data168.png b/pic/data168.png new file mode 100644 index 0000000000000000000000000000000000000000..377193e3f3ef70d029d1f3df71a2e8d25fa40dda --- /dev/null +++ b/pic/data168.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b55b099e7ebb6871cc1358a072baef73c880d6332a3a64ff60a8322563664764 +size 284989 diff --git a/pic/data169.png b/pic/data169.png new file mode 100644 index 0000000000000000000000000000000000000000..7f0f277ba729fd652bd53b718f1bdd20e675808f --- /dev/null +++ b/pic/data169.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af9e93a4b7ceeb43001dbaf88c6cfa9ed74e78ee701e54554fd7a2d9f481bda5 +size 1757429 diff --git a/pic/data17.png b/pic/data17.png new file mode 100644 index 0000000000000000000000000000000000000000..e0232442fb846bb52d82d348da00370e43ec0325 --- /dev/null +++ b/pic/data17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7852a17202c500f8d04b36bf2adff579e7980674c9a61db43b36ef634cf97b1f +size 2509667 diff --git a/pic/data170.png b/pic/data170.png new file mode 100644 index 0000000000000000000000000000000000000000..17ed0ff6517832037232c4b31c11e1268245294a --- /dev/null +++ b/pic/data170.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15110b69a4cc748c21dbd2561abb5c2c6bb73f0bf2781cb446efe9b5d34c29e8 +size 1913827 diff --git a/pic/data171.png b/pic/data171.png new file mode 100644 index 0000000000000000000000000000000000000000..7e8114f5ee04638587b3341945b8d8aa70f40357 --- /dev/null +++ b/pic/data171.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb3f53a4263cc1ea84425d6cc61ff62f1313ff1f2c887852ef36a5f38c22359 +size 2121958 diff --git a/pic/data172.png b/pic/data172.png new file mode 100644 index 0000000000000000000000000000000000000000..b544981cf706d8520d98f4962294405f6fdcf860 --- /dev/null +++ b/pic/data172.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d501f5f450b7c1b56e5a2e42f9cbc44dc3f13d188f0a1d49f721db8ebdbff42f +size 1806586 diff --git a/pic/data173.png b/pic/data173.png new file mode 100644 index 0000000000000000000000000000000000000000..fdc29b91e6db379d3dbd1c9d03b714227355ac26 --- /dev/null +++ b/pic/data173.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcda05add56a38aaad06ef20d1fc523f58c40acfbdf1d39142d5e0d700e00f56 +size 1857201 diff --git a/pic/data174.png b/pic/data174.png new file mode 100644 index 0000000000000000000000000000000000000000..cc1a66e2f7b3df543fd5511e7fec5947530b8161 --- /dev/null +++ b/pic/data174.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8efb077cd88befe1306b15a1c6cf902438ed848b9153c86837179403beca78d8 +size 1696842 diff --git a/pic/data175.png b/pic/data175.png new file mode 100644 index 0000000000000000000000000000000000000000..24bf819ce72a6438dca82aac6a98d444a775c651 --- /dev/null +++ b/pic/data175.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2760b2a8ce3ff7477eafc8678d1c3df8692319d94a2aa1e97bafcd1e2d02a62 +size 1864758 diff --git a/pic/data176.png b/pic/data176.png new file mode 100644 index 0000000000000000000000000000000000000000..5b803547df449cdcf05d628ae8ecb9adf2b1e8d7 --- /dev/null +++ b/pic/data176.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69188ce43a2fb81044bead2ce038d204f13dd086e44edd056e20e0f54fa956cf +size 1777400 diff --git a/pic/data177.png b/pic/data177.png new file mode 100644 index 0000000000000000000000000000000000000000..d5bb4e1a97120cd43082ec9ca4f5ec9ac352b624 --- /dev/null +++ b/pic/data177.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75615ee0a236d9aa79930a168d568019ccf307ab720aef07bfaea68ca505d2b9 +size 1990522 diff --git a/pic/data178.png b/pic/data178.png new file mode 100644 index 0000000000000000000000000000000000000000..ba95ca5d225bb67bfefa1dd084c8c6d83bf2b92a --- /dev/null +++ b/pic/data178.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9b51977109457e6ad4d2d78698e991a6320494bc6b80760b550c33a0f41e6c +size 2934177 diff --git a/pic/data179.png b/pic/data179.png new file mode 100644 index 0000000000000000000000000000000000000000..3f954fa586adb1c401c4cf0e8725193214232cf8 --- /dev/null +++ b/pic/data179.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6bcdde65a1f0e07027a9ae181fe5c6511cf024a0d63093125c99de029b1b65 +size 153315 diff --git a/pic/data18.png b/pic/data18.png new file mode 100644 index 0000000000000000000000000000000000000000..4009111dcf56e6eb2b8d81357425ebf5bda4f585 --- /dev/null +++ b/pic/data18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a1c9b060e772ad2acf1400031123fbbd171902588eb23f05e08bc8387e28cb2 +size 2888432 diff --git a/pic/data180.png b/pic/data180.png new file mode 100644 index 0000000000000000000000000000000000000000..feb078ef03c59048af413c65395d814607d813cb --- /dev/null +++ b/pic/data180.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51688cee811a7bb889f6e5a2effd1b8112962a5e9d23b0ed4b4bcc02fcc3192 +size 2923150 diff --git a/pic/data181.png b/pic/data181.png new file mode 100644 index 0000000000000000000000000000000000000000..26e1bfdeb50bfa1147782b04aee085a60188952f --- /dev/null +++ b/pic/data181.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d8e02fbee89eb6c462c8c6249563eafcab0d3350e65592f4fbaa5563212934d +size 2912121 diff --git a/pic/data182.png b/pic/data182.png new file mode 100644 index 0000000000000000000000000000000000000000..ba3573d489d0045a2c46b7b7bb6973a95542dfce --- /dev/null +++ b/pic/data182.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67969dd7c299a168b05d1059270fe0d214a7d11bf90a1b346c63eeffc3fb3619 +size 2923150 diff --git a/pic/data183.png b/pic/data183.png new file mode 100644 index 0000000000000000000000000000000000000000..b818cea17d63be91ae9175522fd4fe3a028c0bda --- /dev/null +++ b/pic/data183.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75305bab6b8b6facf69916ebecb921777fadb21f20ba9f32955df9adb5c7c516 +size 2811367 diff --git a/pic/data184.png b/pic/data184.png new file mode 100644 index 0000000000000000000000000000000000000000..441f86b5a52ee3415f6afb557c90513fd7ba00e5 --- /dev/null +++ b/pic/data184.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d4e45c78cb21c1ffa386beafce0a29c8743c2b03af51525de30d227656d62dd +size 2420749 diff --git a/pic/data185.png b/pic/data185.png new file mode 100644 index 0000000000000000000000000000000000000000..0d3a8b490541e283efbec314ce544728e1d83f33 --- /dev/null +++ b/pic/data185.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acec08749943d7b82682226cb03329df13671719bbcebab418945153d8bccd50 +size 1393920 diff --git a/pic/data186.png b/pic/data186.png new file mode 100644 index 0000000000000000000000000000000000000000..e1dffe2aa47cecc649d75d2479cda0abf867a54a --- /dev/null +++ b/pic/data186.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c9c3c5853313617e1adcf4782b7b82d0a4db32fd46767f4ece1aef95033535 +size 2923150 diff --git a/pic/data187.png b/pic/data187.png new file mode 100644 index 0000000000000000000000000000000000000000..6e14fb54ca7ffd08bd945576befe95f0f49a8cbf --- /dev/null +++ b/pic/data187.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b802c429bc52ee3413eabbe36398d7286bb6f10318fbbf2fd872027a49fc5e3 +size 2923150 diff --git a/pic/data188.png b/pic/data188.png new file mode 100644 index 0000000000000000000000000000000000000000..59ac50ded6d0c4fee70c37e6b661c84c31b80d20 --- /dev/null +++ b/pic/data188.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa103a02663bc249b7ddec4c9ab9f313bf39d54d6f52f5c0cd2065b5819ac69b +size 2929773 diff --git a/pic/data189.png b/pic/data189.png new file mode 100644 index 0000000000000000000000000000000000000000..8d0124ee8ac0efa9050c2da313d2c0027991b97e --- /dev/null +++ b/pic/data189.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d7296b48332d8632f8f9af1cf4d66a6c493220ec86e1e73744180c949d63c0 +size 2914330 diff --git a/pic/data19.png b/pic/data19.png new file mode 100644 index 0000000000000000000000000000000000000000..9e8e8152dab9031f9598e1262ec79c44b41c8681 --- /dev/null +++ b/pic/data19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983a8098bd49c35f355f2ab51a30aafb14e0de02cfd1f4c56bd15c6604751ae2 +size 1317562 diff --git a/pic/data190.png b/pic/data190.png new file mode 100644 index 0000000000000000000000000000000000000000..a2118026ad64c1ad4c86ededeff8c0d8a9bf6adb --- /dev/null +++ b/pic/data190.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb92e9768263c7ad572e4c28e78f33de65c59a150cacf15a54f79892abda609 +size 186614 diff --git a/pic/data191.png b/pic/data191.png new file mode 100644 index 0000000000000000000000000000000000000000..936fbd8c0f40f32a0728d4693e486538d7c14641 --- /dev/null +++ b/pic/data191.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f18fe7fbfd9dd8b516dbd572287170091226c8f0b1cc6d9fc971b889320739 +size 2918734 diff --git a/pic/data192.png b/pic/data192.png new file mode 100644 index 0000000000000000000000000000000000000000..0e4e8bb906b789652abf1151080ec3d73889f2fa --- /dev/null +++ b/pic/data192.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111f5fca85bef9ebb98c1e11fd6451a12b329aedaa8ddcbc7696b9661b57d4d4 +size 1686726 diff --git a/pic/data193.png b/pic/data193.png new file mode 100644 index 0000000000000000000000000000000000000000..c2f5f26ad6dfbe24a0ca2bfbc1f291c92be27b49 --- /dev/null +++ b/pic/data193.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dcc9e68c05d64027c262835663e0a7750844ccaeb5b3993bfa3764f1188d734 +size 1655927 diff --git a/pic/data194.png b/pic/data194.png new file mode 100644 index 0000000000000000000000000000000000000000..2cfc5ca86140bb3fae4d27032cca2c9bb9978428 --- /dev/null +++ b/pic/data194.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457fac48d71e8440f99a879ec583fd63179eb4499ef19bfb79668e18cbd3a993 +size 1675088 diff --git a/pic/data195.png b/pic/data195.png new file mode 100644 index 0000000000000000000000000000000000000000..0280fc203b666254839ffb423ffcab2393cb68bb --- /dev/null +++ b/pic/data195.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3efd2c6ac798bbbb9ae5f5dcdf8e93c01fdd537388f78380e932998034fc7325 +size 1532815 diff --git a/pic/data196.png b/pic/data196.png new file mode 100644 index 0000000000000000000000000000000000000000..e8ffdb9a81ff2673ec6a66095ca2675595a47a25 --- /dev/null +++ b/pic/data196.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b01ad7ed4d309d8e80474725780a78bfee818a5f14688f7473770c8e58bcefc +size 2570272 diff --git a/pic/data197.png b/pic/data197.png new file mode 100644 index 0000000000000000000000000000000000000000..b7badf581bd384d13af04a676bf61f841642eeac --- /dev/null +++ b/pic/data197.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a995965724531f286b381d72c3e25b405036f895c73326d185777060992e4d4 +size 1966378 diff --git a/pic/data198.png b/pic/data198.png new file mode 100644 index 0000000000000000000000000000000000000000..a58077aba6e557741d98d1aa8a5489fe5e17b062 --- /dev/null +++ b/pic/data198.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24854e8f4657ed05a53c49a420e4df3e3732f39ea558343de518b909862795f0 +size 2019702 diff --git a/pic/data199.png b/pic/data199.png new file mode 100644 index 0000000000000000000000000000000000000000..98425280225025bfb1a3d602d8e309e32efc2d02 --- /dev/null +++ b/pic/data199.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1abcb09bc9a2ad3093b86eb2d592246d4fc0b30e3777dfd4c1bd908a25a836c9 +size 2031437 diff --git a/pic/data2.png b/pic/data2.png new file mode 100644 index 0000000000000000000000000000000000000000..861022405a869c030c599b65ccd99c4d61830ba0 --- /dev/null +++ b/pic/data2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ea27b6d4d5c00b2bad854f12eb774074b9b75e3640c6eaaaf31318f6963810 +size 59298 diff --git a/pic/data20.png b/pic/data20.png new file mode 100644 index 0000000000000000000000000000000000000000..b9e884bdde71e947c4f21f7d7814536d66304e52 --- /dev/null +++ b/pic/data20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36bb6160453a9116f8afa720a9b6839f0140c37913fe7ec7a2235227b243c4ac +size 2934177 diff --git a/pic/data200.png b/pic/data200.png new file mode 100644 index 0000000000000000000000000000000000000000..5307a1990020a27a1fb3866898d992029c62c2a6 --- /dev/null +++ b/pic/data200.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062b2ebb58ee6289e72e0399ee86cc827fdec6a65b704a30377780cff6747b95 +size 2002658 diff --git a/pic/data201.png b/pic/data201.png new file mode 100644 index 0000000000000000000000000000000000000000..ad823c40896053387be20cf3f72e8c8c82057738 --- /dev/null +++ b/pic/data201.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d97cab525adfee037c78c0892424b075b493e9831e83a78b95ad119c0f36f1fa +size 213610 diff --git a/pic/data202.png b/pic/data202.png new file mode 100644 index 0000000000000000000000000000000000000000..60220d7a110ff6dbad87f801e9762c75e29da674 --- /dev/null +++ b/pic/data202.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e49769bbcacf8311bfaa7634d0d51ba2993f1483e60c391be2214eb3923ad49 +size 1937731 diff --git a/pic/data203.png b/pic/data203.png new file mode 100644 index 0000000000000000000000000000000000000000..3ee231eb657503e2ab89f105acd34197b4e5c0ae --- /dev/null +++ b/pic/data203.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e259ef848b0ec415384d4098af11b9fbeb8e215360771f85f2199c5d640740 +size 1043710 diff --git a/pic/data204.png b/pic/data204.png new file mode 100644 index 0000000000000000000000000000000000000000..1f361b7a2059ab0591bcbfa332f6a4debef7c5e9 --- /dev/null +++ b/pic/data204.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91da045d09885e34e12b55add3d8aca703abf0ceae5de690015f642c6208167 +size 1812454 diff --git a/pic/data205.png b/pic/data205.png new file mode 100644 index 0000000000000000000000000000000000000000..69f981868d5417e962727af77418777e6df9942a --- /dev/null +++ b/pic/data205.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4930e76b4536c430a9332c3399e84ccc2242e7cd2868c293a84bfa78b2fde0eb +size 1818142 diff --git a/pic/data206.png b/pic/data206.png new file mode 100644 index 0000000000000000000000000000000000000000..1ad7a248366d7ecbf0f75009076ecfe9bc12c9e2 --- /dev/null +++ b/pic/data206.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fddfdea402b200a634036767a82bf089fe2f4291cbf9476888298c352a92fbd4 +size 1778616 diff --git a/pic/data207.png b/pic/data207.png new file mode 100644 index 0000000000000000000000000000000000000000..973dc2794783e5440d6040c355f4bf82e73b25c8 --- /dev/null +++ b/pic/data207.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a6b8fb170f13297c91dec1c337ea8fd02c185ad9054691348f8a249dd3c383 +size 1730147 diff --git a/pic/data208.png b/pic/data208.png new file mode 100644 index 0000000000000000000000000000000000000000..f516ab4defaf8c49e81dbe5f2ada7fdc3fa7c840 --- /dev/null +++ b/pic/data208.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4fc99a66e8cf3d88e9db1088abb8f5f35da729ed737fc6eab0e45fa26e8b0d +size 2567691 diff --git a/pic/data209.png b/pic/data209.png new file mode 100644 index 0000000000000000000000000000000000000000..79ac9b3599c6fa369f73db07c25d56be848969c9 --- /dev/null +++ b/pic/data209.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1995be2c18d194e24588bd27e315cbf523c69220815d9f1d8cb10fb48eaa42f +size 1463578 diff --git a/pic/data21.png b/pic/data21.png new file mode 100644 index 0000000000000000000000000000000000000000..f360e3cb28788522ce1785674f2ff493358091e6 --- /dev/null +++ b/pic/data21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:725bd5f9746b1eb7d9760aaab0be035ac2ee308b47aae0d9caa0da3f1af90456 +size 1124998 diff --git a/pic/data210.png b/pic/data210.png new file mode 100644 index 0000000000000000000000000000000000000000..ca119c3de35aca3b30fe6e83e4aa014af8c28f09 --- /dev/null +++ b/pic/data210.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48725ca38af048a09be16ac25ac14799653e28f667b0d7c4fc86d6fca42b6a51 +size 1874497 diff --git a/pic/data211.png b/pic/data211.png new file mode 100644 index 0000000000000000000000000000000000000000..fd1b8eba3b9f1c7adf327ecc32fe971d91584d42 --- /dev/null +++ b/pic/data211.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068cadde14b1c35d8dd9f598e30bb5d97af9b476acce4b100d88acdaefca7452 +size 1747013 diff --git a/pic/data212.png b/pic/data212.png new file mode 100644 index 0000000000000000000000000000000000000000..0e7db2f43c297d9bc52842081d1e4568c60f18fd --- /dev/null +++ b/pic/data212.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bba568a542f356a57c751a8bc01dbfe2783d59d4b22a48a99caeed4289229edd +size 104626 diff --git a/pic/data213.png b/pic/data213.png new file mode 100644 index 0000000000000000000000000000000000000000..ea471217e0e0c0ceb05a3181d75b6186d52b62ce --- /dev/null +++ b/pic/data213.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7404135f6b3f6e78afe5797690dc989d579a9b3af7e79763c3ec355e0f88b555 +size 1845272 diff --git a/pic/data214.png b/pic/data214.png new file mode 100644 index 0000000000000000000000000000000000000000..7da8b9958eb58bc9b1df6c101f40e23fef23d452 --- /dev/null +++ b/pic/data214.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626c138870d5e40acc6ae2c1b7ed753d1c434c67ad1ecceb833962d53a4adb8a +size 2016168 diff --git a/pic/data215.png b/pic/data215.png new file mode 100644 index 0000000000000000000000000000000000000000..cee08378d4d1b06ef4b303a6f92f03d1a01b2121 --- /dev/null +++ b/pic/data215.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ac21b947e08a926e09f06ee6a1dd396c5f5df06eb7af712715e3af55f64022 +size 1775828 diff --git a/pic/data216.png b/pic/data216.png new file mode 100644 index 0000000000000000000000000000000000000000..c601fc28e3434e60b1bd48b2ad5d7acb8027694b --- /dev/null +++ b/pic/data216.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98f9c6e644ad58b3757e5d6f3b19865bffb34d9d8ed5d61530b9861cf915cb0 +size 1223533 diff --git a/pic/data217.png b/pic/data217.png new file mode 100644 index 0000000000000000000000000000000000000000..cc88502d5ce9bf37285d57b92bd42fab48a7ec44 --- /dev/null +++ b/pic/data217.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eada48d2d7e5cf9b23900a98f6c4f271a7968b21880e46d2a8e0d49645f77f0d +size 1232902 diff --git a/pic/data218.png b/pic/data218.png new file mode 100644 index 0000000000000000000000000000000000000000..62c06e487befe9403a797b8cc57898e0229114ca --- /dev/null +++ b/pic/data218.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8500d59c253d103fe343689edf24321d8ef22baba858c1f50bc41423039507a5 +size 1898738 diff --git a/pic/data219.png b/pic/data219.png new file mode 100644 index 0000000000000000000000000000000000000000..0fdcfa845a30a4038df85cbf75184eb0c9f37aac --- /dev/null +++ b/pic/data219.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d576ffba51d6104abd61a478bf4568dfd8fa653c883bbf3cda887462cac767 +size 1459626 diff --git a/pic/data22.png b/pic/data22.png new file mode 100644 index 0000000000000000000000000000000000000000..3eada21952a96a7e4444096f03293c6c688d7f32 --- /dev/null +++ b/pic/data22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16665e1bece3c2485958c0808f2e6f65ff90f8a8e56cbe4499564124da232dc +size 2863932 diff --git a/pic/data220.png b/pic/data220.png new file mode 100644 index 0000000000000000000000000000000000000000..4138c5055353264b16d0252c1d4e8915868a0eb6 --- /dev/null +++ b/pic/data220.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6c8fe6f28ae477a5a6f34a22de2c1ca710344c316417ee1990f12c99b8aa87d +size 1968779 diff --git a/pic/data221.png b/pic/data221.png new file mode 100644 index 0000000000000000000000000000000000000000..5715977a603cd36100893d4dc8784e127b9bfa24 --- /dev/null +++ b/pic/data221.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:459e45bc790fdec1ed6feac02bca52b1207690649115f92a296c739b59404936 +size 1425211 diff --git a/pic/data222.png b/pic/data222.png new file mode 100644 index 0000000000000000000000000000000000000000..d934eee6dd97c5410b5cba46f641f201ad150c8a --- /dev/null +++ b/pic/data222.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6af1bdeba8130faa9605a7ad465f5fb846994be68c7cd21a4d4b139980f5adb2 +size 1347404 diff --git a/pic/data223.png b/pic/data223.png new file mode 100644 index 0000000000000000000000000000000000000000..3b04f2b53cbbdca39b40e00cf98c4eee790b68cc --- /dev/null +++ b/pic/data223.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f944614e102126457be971ff80ade36ec0afcc222b9dc823ea2287e76e46452 +size 237347 diff --git a/pic/data224.png b/pic/data224.png new file mode 100644 index 0000000000000000000000000000000000000000..9c86f84a5520571a72bd2f66ba7a1fe3fd97bb80 --- /dev/null +++ b/pic/data224.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065fb1e2e437fcf6fb72c56e119be274bd8fb595bf5338b3c646ca4768e01f6b +size 112415 diff --git a/pic/data225.png b/pic/data225.png new file mode 100644 index 0000000000000000000000000000000000000000..18ef483470539b9b3ddb0de6594dae6baab60580 --- /dev/null +++ b/pic/data225.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f6b9936a4fe85f8337392db9a913f417f8a7a87d44d9238d68d1b8b4d8fb33 +size 1630423 diff --git a/pic/data226.png b/pic/data226.png new file mode 100644 index 0000000000000000000000000000000000000000..deba51e26910573c22909a3a4c6fab824806f4cb --- /dev/null +++ b/pic/data226.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2549048f16f541c2fab8a6071ba447cde2f0474d092a3caf86fd89dd46f065a3 +size 1671742 diff --git a/pic/data227.png b/pic/data227.png new file mode 100644 index 0000000000000000000000000000000000000000..902909926cb9822aa4430d871ca6385f0f769642 --- /dev/null +++ b/pic/data227.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd4629fc4880736d79eebf3c9d2d4e21ecd9c0507571476a9b375f430d51f0c +size 1987660 diff --git a/pic/data228.png b/pic/data228.png new file mode 100644 index 0000000000000000000000000000000000000000..4e3fcc74868b4dda25a7fc7e08ebe7337ff28525 --- /dev/null +++ b/pic/data228.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1477dd82c6a95a9f2ad178eee3a3c8b7166f5ad7911f4e27ecbe4f451149f065 +size 1547463 diff --git a/pic/data229.png b/pic/data229.png new file mode 100644 index 0000000000000000000000000000000000000000..19a246c52030efc714f4a1b6d699f8a1dc2b528a --- /dev/null +++ b/pic/data229.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e78a424f66c2d8b499413995078d1a7888b23add98ff4952fd03aeb157ec0c3 +size 1623946 diff --git a/pic/data23.png b/pic/data23.png new file mode 100644 index 0000000000000000000000000000000000000000..82acd7024cc67237305e2f4e1b9b0a990aaac03b --- /dev/null +++ b/pic/data23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c28f3bb930669422ebfb5b3fad488ca956d8f0b96210615ec538669cddb140 +size 2774666 diff --git a/pic/data230.png b/pic/data230.png new file mode 100644 index 0000000000000000000000000000000000000000..93e8330b0f3691d75a093de1568d1d1dd4f44bea --- /dev/null +++ b/pic/data230.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83dba719721e2846256384ae634afdeccff59176b419a0957752da74cf6a6635 +size 1540518 diff --git a/pic/data231.png b/pic/data231.png new file mode 100644 index 0000000000000000000000000000000000000000..639c053b89c5412a8f91715e60a6e012a88124ce --- /dev/null +++ b/pic/data231.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a05fe14ddc9aa5b78f6957bdfd1b3db1117f26159e2ca012cc883cc44b7dc256 +size 1189219 diff --git a/pic/data232.png b/pic/data232.png new file mode 100644 index 0000000000000000000000000000000000000000..fc9e7d5dc6f007fcb8c575929ae4da2f0e7e1fad --- /dev/null +++ b/pic/data232.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39de8dcbd4e0b39afb36447d0a60b9d5815bc96cc0716eedfcfc9781bae596f9 +size 1847440 diff --git a/pic/data233.png b/pic/data233.png new file mode 100644 index 0000000000000000000000000000000000000000..60f9c7e07db60e81d2de8744009597157daf439a --- /dev/null +++ b/pic/data233.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de1d38b62a1b6f4f2febfa6b01b35efac56f301e77998d8e63eae458543fea78 +size 2233902 diff --git a/pic/data234.png b/pic/data234.png new file mode 100644 index 0000000000000000000000000000000000000000..aef62518131c3914a624372ffab13a03a96b3c2a --- /dev/null +++ b/pic/data234.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28ca24a92c12adfefa7e555682cd894a516a73f82fc71545fc34dc1da2843ae9 +size 1931561 diff --git a/pic/data235.png b/pic/data235.png new file mode 100644 index 0000000000000000000000000000000000000000..91279ba67013406ba96ff3f659a6322c2c271689 --- /dev/null +++ b/pic/data235.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c9affa4f070989bdd4465c5e7bcc16b73b72c2cd169d9083b83f3cbc10d3a2 +size 56346 diff --git a/pic/data236.png b/pic/data236.png new file mode 100644 index 0000000000000000000000000000000000000000..b9c321a73fe533d36e1922ecb417033893823bb9 --- /dev/null +++ b/pic/data236.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75a377f26d461f2159d58dd0b578467aa7cada23cc0ff55f6074acb6be6b4ea +size 1944382 diff --git a/pic/data237.png b/pic/data237.png new file mode 100644 index 0000000000000000000000000000000000000000..a73ee6f90d6d18fda88456df58b3ae5246379e4b --- /dev/null +++ b/pic/data237.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a5643a38f0c88d28d85ddb7f0ee4ab4af42d004fad26ca5f7ef3e0f311d96f +size 1279513 diff --git a/pic/data238.png b/pic/data238.png new file mode 100644 index 0000000000000000000000000000000000000000..1f9f84d4c4efab437e76036c83e051d59257f756 --- /dev/null +++ b/pic/data238.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cc3a98bb0df6b2a6e9d41bc2c9ee3026115ba5699d050df2d57f023ee8a76a5 +size 1744156 diff --git a/pic/data239.png b/pic/data239.png new file mode 100644 index 0000000000000000000000000000000000000000..91c76c9d2c56e8e4d3e6e2d523c996c367bb34db --- /dev/null +++ b/pic/data239.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff10adfa58d2478b8a97aa57069a538f7ee0e67c666bf76b8e8cd462f3db3ec7 +size 1807181 diff --git a/pic/data24.png b/pic/data24.png new file mode 100644 index 0000000000000000000000000000000000000000..17205cfd0635cb45eb6daf328d8bfb0fe748f776 --- /dev/null +++ b/pic/data24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d8c31cc20e8d1b5408b4316b56c6f3c8ff6d88fea24f15cf505029d46c3b9c3 +size 156373 diff --git a/pic/data240.png b/pic/data240.png new file mode 100644 index 0000000000000000000000000000000000000000..238585e287aa8417afee9e6befdf81fa9056fd03 --- /dev/null +++ b/pic/data240.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b071285c2ce9ee62ebc8ff8d1a413bb10639bd3b49e0a72ae26c14fdb919c8 +size 1803828 diff --git a/pic/data241.png b/pic/data241.png new file mode 100644 index 0000000000000000000000000000000000000000..82aac76877a07fd332113347f70b12885ce1d968 --- /dev/null +++ b/pic/data241.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b39faf44822500d40ce0de557fb91cc4e64895741d882cf4722593d04f69ff1 +size 1983792 diff --git a/pic/data242.png b/pic/data242.png new file mode 100644 index 0000000000000000000000000000000000000000..5bf82e80ef62ab0afa12b54e0ac28543bfd2caf9 --- /dev/null +++ b/pic/data242.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36209c8b07bf37cdcecfe5873ca62ecea1246eacb6c008ba7ab2b382c368c1ae +size 1960164 diff --git a/pic/data243.png b/pic/data243.png new file mode 100644 index 0000000000000000000000000000000000000000..7f0988b8f0a122ded0c2659b473cfb866d9c602e --- /dev/null +++ b/pic/data243.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52722854f868e4b8904e2fe3581ed3b94ef34758ef21ca5c9c6677f5e6359114 +size 1993530 diff --git a/pic/data244.png b/pic/data244.png new file mode 100644 index 0000000000000000000000000000000000000000..a5309c0fa4dd6b343217975b34fdf5a4bd28bd7c --- /dev/null +++ b/pic/data244.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655a63a790391df561799e2c786590628920f24cb494ce1853871b2a192bc179 +size 1856808 diff --git a/pic/data245.png b/pic/data245.png new file mode 100644 index 0000000000000000000000000000000000000000..9e673db011631670fcc58b27b0cce4c511e8e445 --- /dev/null +++ b/pic/data245.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0571d9c4958e7f89e6fffdedc1c38af1852717b249ec8a6e20bf75b67eb9555a +size 1554515 diff --git a/pic/data246.png b/pic/data246.png new file mode 100644 index 0000000000000000000000000000000000000000..aa27bf7d9c612c55bd029214e418950144e93833 --- /dev/null +++ b/pic/data246.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b6e09104816fc064d9323ff9fa6d422add0ae116d1cfc7f628bd24ffd2bf6fd +size 107017 diff --git a/pic/data247.png b/pic/data247.png new file mode 100644 index 0000000000000000000000000000000000000000..9088fee74234eccc166c24e69752830073e967e1 --- /dev/null +++ b/pic/data247.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9269797aeee616cc46274620ec5d195cb3a4189cf4e37530cf2b7b37d67d1fec +size 1831612 diff --git a/pic/data248.png b/pic/data248.png new file mode 100644 index 0000000000000000000000000000000000000000..f09c6760659394f786ff7f8e835e6fc65e923eb8 --- /dev/null +++ b/pic/data248.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad3b78429b02750cedcc46e279b9de81d75536ac014582f0487833ad1b97e93 +size 1957612 diff --git a/pic/data249.png b/pic/data249.png new file mode 100644 index 0000000000000000000000000000000000000000..0e6651324bbfcb8124db9f4488fe66dd8d4f883c --- /dev/null +++ b/pic/data249.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90dd310cb9c7f0de5e380b71750a5faa3cfe9edcc100a6ae199d293ad90db16e +size 1866304 diff --git a/pic/data25.png b/pic/data25.png new file mode 100644 index 0000000000000000000000000000000000000000..317002ff900abc85034a02c70440c0d0bd455a03 --- /dev/null +++ b/pic/data25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2555ee311474c03243838db99c0eb6b676cc59fdc3ac56aa9d35e8733b9091 +size 2888432 diff --git a/pic/data250.png b/pic/data250.png new file mode 100644 index 0000000000000000000000000000000000000000..bc48cf7dc8ca410a17794f580721bc6544e1de41 --- /dev/null +++ b/pic/data250.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f333c6a4d196643c3ebc27e9871013f73321a5604fa63886d9d27db2cefecaf8 +size 1233194 diff --git a/pic/data251.png b/pic/data251.png new file mode 100644 index 0000000000000000000000000000000000000000..459a31202d6c6cf170d845b76b52c87ac6231c67 --- /dev/null +++ b/pic/data251.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38dfd1f74b7e7dc7bb158f4ff46f783919f2f720481284b2496092cd84daa0c +size 1943595 diff --git a/pic/data252.png b/pic/data252.png new file mode 100644 index 0000000000000000000000000000000000000000..ce7aeb25876506b61c3e63fab85481b73b9f52be --- /dev/null +++ b/pic/data252.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2605b8d18c025b4db3c0cd48fcae7cf97c79fa5cbfdf7eae728fdc871a9c6b3e +size 1728396 diff --git a/pic/data253.png b/pic/data253.png new file mode 100644 index 0000000000000000000000000000000000000000..b4446e551ead9ec7ff548798ed8a7ffa8eb53886 --- /dev/null +++ b/pic/data253.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a6a013ad9c060a1838513e20ec72f28b9ae6dfa5fa35d9b44a74abe427a574 +size 1929618 diff --git a/pic/data254.png b/pic/data254.png new file mode 100644 index 0000000000000000000000000000000000000000..af0b1d94c6685e92637b93258c2daeb20eece788 --- /dev/null +++ b/pic/data254.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92afbe9c23fb6c1e0741455a7fe9d2c6d325e47a43c23e82bd56f85f5c8a1f47 +size 1983458 diff --git a/pic/data255.png b/pic/data255.png new file mode 100644 index 0000000000000000000000000000000000000000..b72eaf49f6598f38f64e8c1d377fc99163d0dd13 --- /dev/null +++ b/pic/data255.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e5c9b5d5b42a0c1dfa99398bda053db559e53d284d6260c616e5a0cb630e735 +size 1921736 diff --git a/pic/data256.png b/pic/data256.png new file mode 100644 index 0000000000000000000000000000000000000000..59505036a8543171165117496fe8a255270f4162 --- /dev/null +++ b/pic/data256.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9eb473045db9088372d49d5141e3df83e32ae41c75842964f10798e6c7a14b +size 2035673 diff --git a/pic/data257.png b/pic/data257.png new file mode 100644 index 0000000000000000000000000000000000000000..9fdf2c145f11adf9ab4c0c221541c6f0213b49d8 --- /dev/null +++ b/pic/data257.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930c2bc55fbb105a8e956d52218e05898a834c76ac625d0a52512ef5905c4ec2 +size 124162 diff --git a/pic/data258.png b/pic/data258.png new file mode 100644 index 0000000000000000000000000000000000000000..d9da30ca00e682f6f9e0bb6baffb4112597b058a --- /dev/null +++ b/pic/data258.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d39510d143a2c838e2a68f6a6bb404b40dfa50ebdbb1daf86b500849c845fc5 +size 2574403 diff --git a/pic/data259.png b/pic/data259.png new file mode 100644 index 0000000000000000000000000000000000000000..35fb8862bd6553da1fe90fe6312a4ccc0f1215f5 --- /dev/null +++ b/pic/data259.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8870e92de7a00a25c236085daec1606dcef5385d2a782c303ff7b983bcdd4cf +size 1982769 diff --git a/pic/data26.png b/pic/data26.png new file mode 100644 index 0000000000000000000000000000000000000000..b6eda906936ef6c2d3fbd347da74fb859fd1241f --- /dev/null +++ b/pic/data26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd11417ce0744af96b3d634a8f5d7958b043b68ffb7b5a67daaa9477beecb538 +size 2733387 diff --git a/pic/data260.png b/pic/data260.png new file mode 100644 index 0000000000000000000000000000000000000000..003b6d7f880bc91af0766e382d1225b90fb163ec --- /dev/null +++ b/pic/data260.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a48989c20f5ed02561b96bb29d0292e782203954c5d56059f6bfb74c819bb4c3 +size 2165052 diff --git a/pic/data261.png b/pic/data261.png new file mode 100644 index 0000000000000000000000000000000000000000..e4b615a02e136d9d4a02486326f8cedc6f7bcdb1 --- /dev/null +++ b/pic/data261.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bbd41728f1830a0cf2d3f37584a504504976521972efb202f9d15bcedadf2a6 +size 2159843 diff --git a/pic/data262.png b/pic/data262.png new file mode 100644 index 0000000000000000000000000000000000000000..4219d669d2c046d55f172dd04f3f7fd0ce45003d --- /dev/null +++ b/pic/data262.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421fba7e68e906a85ddc08186bf15f6621bc3b583c22f7df7da5063bb9b3c81c +size 2174238 diff --git a/pic/data263.png b/pic/data263.png new file mode 100644 index 0000000000000000000000000000000000000000..2f5182cea0b9e0100f866c02330bfefdd4bf2b11 --- /dev/null +++ b/pic/data263.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2485a6044bb454cbc38733ff60aedd584ef7e53e0e7080d38a9fee58f5c319a5 +size 1102197 diff --git a/pic/data264.png b/pic/data264.png new file mode 100644 index 0000000000000000000000000000000000000000..e8d3022200fdbbbdc8eafc4e7b98f2dd58965612 --- /dev/null +++ b/pic/data264.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3fb39746eff7402a3db94f08205dde2cf6277c01c34413530c63838c63af0e +size 1804851 diff --git a/pic/data265.png b/pic/data265.png new file mode 100644 index 0000000000000000000000000000000000000000..a4c6571662b6c93e7be0e1c4c8ad18d3821b65c3 --- /dev/null +++ b/pic/data265.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cee33f82aabdffe9146df7c8600b7396ad2225f827081f77326c4e8aaf2e536 +size 2095131 diff --git a/pic/data266.png b/pic/data266.png new file mode 100644 index 0000000000000000000000000000000000000000..7c788a05e35825becf815ebe99d5bb4c39bd3ebe --- /dev/null +++ b/pic/data266.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1a37874359e0ebf2906666392c1cbcac8b40bfb3d694ce6a6bde9e7a4a3baa1 +size 1994012 diff --git a/pic/data267.png b/pic/data267.png new file mode 100644 index 0000000000000000000000000000000000000000..d0c6e23d9f156ed048b59c81c4bda0de1d22a03e --- /dev/null +++ b/pic/data267.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d1a59df763da7ce76e848d4f643ad7659c9bc1e81b79d7dbc6afa7809037fca +size 1942229 diff --git a/pic/data268.png b/pic/data268.png new file mode 100644 index 0000000000000000000000000000000000000000..5803236ca5e1a172ee24eb90c295945e32090d60 --- /dev/null +++ b/pic/data268.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a41a00eb7dbc96c22a2328238497b884c49a5063082dc28cffa2712d0ec17d +size 223578 diff --git a/pic/data269.png b/pic/data269.png new file mode 100644 index 0000000000000000000000000000000000000000..a2d1552095869c2deb33c43398dbf972f1a3bfc0 --- /dev/null +++ b/pic/data269.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c38379f5764f88bf23f5c6d63006616821835eefbdecaea91b896c7081a89c3f +size 1986754 diff --git a/pic/data27.png b/pic/data27.png new file mode 100644 index 0000000000000000000000000000000000000000..3e9d1c8aff1df037cd460f6cf1fa363b22ef7ee1 --- /dev/null +++ b/pic/data27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:325fc4828c3867c71ef1f9ea857b696eeb4a4772bece3b8f8740c5033465e699 +size 1717759 diff --git a/pic/data270.png b/pic/data270.png new file mode 100644 index 0000000000000000000000000000000000000000..321cb5390c277a9c098e6a2b49dfa6b89bb14623 --- /dev/null +++ b/pic/data270.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af4b7152de3dd982011f1b74e98614d37683a3748a18f8a2a0049c9a252405a +size 2569606 diff --git a/pic/data271.png b/pic/data271.png new file mode 100644 index 0000000000000000000000000000000000000000..417e1213956a4d6fd90f51c6279ad9936f182924 --- /dev/null +++ b/pic/data271.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41fb631a97db100ad0e1f6f2399cdb0fe4d5ffaf115accb192d92d99cd2ba86 +size 2012578 diff --git a/pic/data272.png b/pic/data272.png new file mode 100644 index 0000000000000000000000000000000000000000..164a61f677d90e09207431ecc804d2e7415db2d6 --- /dev/null +++ b/pic/data272.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9ffa02c050a31128ffb8c1b6dee0bb0af13150e633a12e834a1ea77346231e2 +size 2002160 diff --git a/pic/data273.png b/pic/data273.png new file mode 100644 index 0000000000000000000000000000000000000000..679cbd81ffcb53f05191f2a743dabd0045175285 --- /dev/null +++ b/pic/data273.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d248f3479cf293f6b1a8e1071e4cb8020886f6adc6cef9b1f577814d8544cc +size 2739180 diff --git a/pic/data274.png b/pic/data274.png new file mode 100644 index 0000000000000000000000000000000000000000..c4b19c225e0fd894465de28689603641a9781345 --- /dev/null +++ b/pic/data274.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7323f415bc1ccdcd5ddf83f18a689c3689235001d1f9098349544def6168afe1 +size 2061509 diff --git a/pic/data275.png b/pic/data275.png new file mode 100644 index 0000000000000000000000000000000000000000..c83a563330f7bd0c2d74f31221fe541de44b25e7 --- /dev/null +++ b/pic/data275.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4355c49ec5c040dba0b2a909188ba86142b079970ce98cdb36d86693b90d39fc +size 1229153 diff --git a/pic/data276.png b/pic/data276.png new file mode 100644 index 0000000000000000000000000000000000000000..738339eea1c47c041e5ffb0952d04a2a333828f7 --- /dev/null +++ b/pic/data276.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c5d5d42d8393208c756774381a7ebdc68e6f0d693ef523ac611df7123b6c1b0 +size 1517413 diff --git a/pic/data277.png b/pic/data277.png new file mode 100644 index 0000000000000000000000000000000000000000..d1dc0c3c543880290b9511ec39671c3b718b38ab --- /dev/null +++ b/pic/data277.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ea4cd4b3eaddd7823bbced5a7a5c85c2913be4a5153808c5b9f6ed6627ba3a +size 1492916 diff --git a/pic/data278.png b/pic/data278.png new file mode 100644 index 0000000000000000000000000000000000000000..337cdb1aab9686705dbb58037fa22d32753ce896 --- /dev/null +++ b/pic/data278.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28edec0fdd5643b573812caa39184a845827afeb1bfb0d756e4c9847a51ec673 +size 1340766 diff --git a/pic/data279.png b/pic/data279.png new file mode 100644 index 0000000000000000000000000000000000000000..b1fdad60fe14e4b1f9fbbf4d121c1f6b650ed4d8 --- /dev/null +++ b/pic/data279.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9184abf7cab66b0178500a5c58e02e4d75ade9808eac71b20293ef03758da7 +size 72973 diff --git a/pic/data28.png b/pic/data28.png new file mode 100644 index 0000000000000000000000000000000000000000..253c0f92f21620f508077c2bf7704ee1f5361f71 --- /dev/null +++ b/pic/data28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a45a7ca5ce277754e994ea7ab719f07f88d4bf30f4f358e3c662838862f53e6 +size 2885362 diff --git a/pic/data280.png b/pic/data280.png new file mode 100644 index 0000000000000000000000000000000000000000..c9912edbdaf1a85a8621f56b3f49068f8d79fab1 --- /dev/null +++ b/pic/data280.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2bf8b9881acaab21c0e3897b43cc94d5b8377a50b182b62184d85c0f096d68 +size 1804577 diff --git a/pic/data281.png b/pic/data281.png new file mode 100644 index 0000000000000000000000000000000000000000..3045c68358edf677cca0fed333d08c33d7c8f57f --- /dev/null +++ b/pic/data281.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:809dfbf723feb34b9bf7cd9222b5919d5aceecf1000982ff20e58406197f542a +size 1817988 diff --git a/pic/data282.png b/pic/data282.png new file mode 100644 index 0000000000000000000000000000000000000000..9dbe593e1421881cdac42793e72e0aef2d1593d3 --- /dev/null +++ b/pic/data282.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8721a986a0b8ed1771264b3c105cdebc7779842ab795a75e30b28cd4b81bcc9 +size 2155345 diff --git a/pic/data283.png b/pic/data283.png new file mode 100644 index 0000000000000000000000000000000000000000..9aa6b7873a8aa089312f46fa74f2920ed303e10c --- /dev/null +++ b/pic/data283.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb75efb7ab3f7c097c30304e7ba7574d47db92b8bf84e359463ebb48eb374ce +size 1909421 diff --git a/pic/data284.png b/pic/data284.png new file mode 100644 index 0000000000000000000000000000000000000000..91662f0ec15b6128086463670d7290b577ee053c --- /dev/null +++ b/pic/data284.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef065824f9ee8b69e22cb4b6d3c1c634a84d0251e9ed3f09ac274c1702a3355d +size 1875781 diff --git a/pic/data285.png b/pic/data285.png new file mode 100644 index 0000000000000000000000000000000000000000..108c020f22057d30264fe3ee29b3f8a0fedb7b8a --- /dev/null +++ b/pic/data285.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:784362a2e7e96ad4f7141e06aab3bd396a331a23da1cdf6c41716590f9535650 +size 1355778 diff --git a/pic/data286.png b/pic/data286.png new file mode 100644 index 0000000000000000000000000000000000000000..d6ba81d7ced5c97e0e2163beb5efeea80679a412 --- /dev/null +++ b/pic/data286.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f42dfc3258c0e1b96f169dbc44c369bfb3cbf186436b840fcf2aa209ed1165d5 +size 1360251 diff --git a/pic/data287.png b/pic/data287.png new file mode 100644 index 0000000000000000000000000000000000000000..f4524ff84ac6cfa99b7ea87ea7245821b734331a --- /dev/null +++ b/pic/data287.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0490bbacf6677f5bb6f29092d75a107e97a885ad4768ede159251f3cafcd961c +size 1391725 diff --git a/pic/data288.png b/pic/data288.png new file mode 100644 index 0000000000000000000000000000000000000000..47a238aef99377d33aef71cefec45ec06013d030 --- /dev/null +++ b/pic/data288.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed4fbcf7d76ce36cbbca79b3b811ab68ad8172f35d84a7899e669c77df6f1e9 +size 1118043 diff --git a/pic/data289.png b/pic/data289.png new file mode 100644 index 0000000000000000000000000000000000000000..de26a80da7b83d9e30fc95e3a1d0051736bfceba --- /dev/null +++ b/pic/data289.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c7e765becbbd51f6c93712e633bdb13c45e38de43e78e74d1aa8e6147f262d0 +size 1252446 diff --git a/pic/data29.png b/pic/data29.png new file mode 100644 index 0000000000000000000000000000000000000000..38a37abd624bc71ebac79b7e77b0c085982ed4f1 --- /dev/null +++ b/pic/data29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfeb42f562ddd47679804c003edc70c5bd09c93e35daad09081941e8acb60d61 +size 2863932 diff --git a/pic/data290.png b/pic/data290.png new file mode 100644 index 0000000000000000000000000000000000000000..63662eaab302c9576d2ddd68e3bf0729dcfd52b5 --- /dev/null +++ b/pic/data290.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f5711200b2a335a7b8a12999285d86d1e11a3f54cf1ceffe7e480d12e989447 +size 231249 diff --git a/pic/data291.png b/pic/data291.png new file mode 100644 index 0000000000000000000000000000000000000000..81b8ae42e7ea31e58768239efaeeb767cfc2eed1 --- /dev/null +++ b/pic/data291.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f379ffa21f55d952be33e8901854d0855f72b296c148189c986cd0e9d9609075 +size 1247169 diff --git a/pic/data292.png b/pic/data292.png new file mode 100644 index 0000000000000000000000000000000000000000..2316acd2601f4b38f7285fa5d4125833165c37ce --- /dev/null +++ b/pic/data292.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:834104ebff32cda033ec93efb0407341a5c509fc58bb8befb3ee77978f82f3e5 +size 1250326 diff --git a/pic/data293.png b/pic/data293.png new file mode 100644 index 0000000000000000000000000000000000000000..19ed03fee8f21c8bc302cca765c071df2f03e153 --- /dev/null +++ b/pic/data293.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08b49acbc47679f007d81d670dfd1ede7b031778b62e4082a5ae801b733761b9 +size 1220042 diff --git a/pic/data294.png b/pic/data294.png new file mode 100644 index 0000000000000000000000000000000000000000..feb02b1645668aa2dbd81eebb5346aa6e7818252 --- /dev/null +++ b/pic/data294.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a166e95e0853ec66cae4cc65594acd217db616c0166b3cc7b0b71e869f5af781 +size 2680087 diff --git a/pic/data295.png b/pic/data295.png new file mode 100644 index 0000000000000000000000000000000000000000..1335a9f947c73404277dcb2dbbc47104dd4c1c6d --- /dev/null +++ b/pic/data295.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fcef30c98a01caf4863c81bf82e4d20d9f1e35e37310e61a4df2ae766b91ca4 +size 1787060 diff --git a/pic/data296.png b/pic/data296.png new file mode 100644 index 0000000000000000000000000000000000000000..2a23bc95934d98590b72ab88fcb2566faa27b6f3 --- /dev/null +++ b/pic/data296.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c2a572f4c935fac907a4a5f838016e0878b958ac6024742d92b55c39fc8d9c3 +size 1101809 diff --git a/pic/data297.png b/pic/data297.png new file mode 100644 index 0000000000000000000000000000000000000000..6909e332469c0960fd13b3aa94ffc26ae6a4949d --- /dev/null +++ b/pic/data297.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a963ffa7323e3eb75b00abaee1c2c07e32d13bc35d185a74430709a1b745864a +size 1130143 diff --git a/pic/data298.png b/pic/data298.png new file mode 100644 index 0000000000000000000000000000000000000000..014b302230ccf9ea05889e3ef5d59fa4e41bfaed --- /dev/null +++ b/pic/data298.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff0e7437a0107f24a90d7245e816babe99595604e045149f21f086dda27f9e7 +size 1130756 diff --git a/pic/data299.png b/pic/data299.png new file mode 100644 index 0000000000000000000000000000000000000000..e0639e9588cac4462d2737b92848bf99f654d9f8 --- /dev/null +++ b/pic/data299.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0149606c70bb8456461450d996dc1b00a40592b55799389dff3665f0eca2d11 +size 1183398 diff --git a/pic/data3.png b/pic/data3.png new file mode 100644 index 0000000000000000000000000000000000000000..534873fec6aa355027425a9955e8c78f3e1399d0 --- /dev/null +++ b/pic/data3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d982270da33c6787c5eb220d0e91cfd6853095f997a94af48dee1addd07af50 +size 2184082 diff --git a/pic/data30.png b/pic/data30.png new file mode 100644 index 0000000000000000000000000000000000000000..c340cbf3ea4e93a69469188b3a5eb43bcbf7372c --- /dev/null +++ b/pic/data30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c4b032a6d95032868a031fe90616d9b5f70b47aa4fbd303ff0b95b437c3e91 +size 1145155 diff --git a/pic/data300.png b/pic/data300.png new file mode 100644 index 0000000000000000000000000000000000000000..9fec0b82e5d9eb9971f25291e5bcc02442baba48 --- /dev/null +++ b/pic/data300.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b3bbe6d78a326bc758c76e70955812249c055ab3add3511525ba3052bd4433 +size 1203512 diff --git a/pic/data301.png b/pic/data301.png new file mode 100644 index 0000000000000000000000000000000000000000..78d16c6f739ed4431efe514cb0b7690032b472c5 --- /dev/null +++ b/pic/data301.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:838edd362664839e2c5ad2b151beab241a64737a2662ffde657d792c9095e8d3 +size 247085 diff --git a/pic/data302.png b/pic/data302.png new file mode 100644 index 0000000000000000000000000000000000000000..b77e67ced9850c51ea2d7b0700007ae530c8f98e --- /dev/null +++ b/pic/data302.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955cbb6057f51243d2e108d105b4665e1e14e21f2728c3ae523161f007efb6f7 +size 1241552 diff --git a/pic/data303.png b/pic/data303.png new file mode 100644 index 0000000000000000000000000000000000000000..6529d356005dc04a7612b8e0418d173b7cee4335 --- /dev/null +++ b/pic/data303.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9b3571151769daa3a136042e82cf1ebf731cbf7650c0170b29aa9271f643356 +size 1414570 diff --git a/pic/data304.png b/pic/data304.png new file mode 100644 index 0000000000000000000000000000000000000000..2d8a1a49e744398972545bb7e7d36ddc98b59457 --- /dev/null +++ b/pic/data304.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c5bfb73923b6e1bb4c593ad6fc4ae0cd3fa21afb69f028d9823beab4fe56fe +size 1243760 diff --git a/pic/data305.png b/pic/data305.png new file mode 100644 index 0000000000000000000000000000000000000000..061f236ddb6bf2dc9a36bab536e23e0ae7c154bb --- /dev/null +++ b/pic/data305.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225d383dc50ecf0db68cc21b6e5a157ec9926f0778ef2d187b03cf348bb304dd +size 1393540 diff --git a/pic/data306.png b/pic/data306.png new file mode 100644 index 0000000000000000000000000000000000000000..dce0c8bf702776e55d47a876d8a6f32c1397aee7 --- /dev/null +++ b/pic/data306.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a82ea9fe71d9623f7455d4717d03f3d31794f3967c2e29fcfd4c41f31c7ce297 +size 2663635 diff --git a/pic/data307.png b/pic/data307.png new file mode 100644 index 0000000000000000000000000000000000000000..e567a35124e9846ed062e949ec5da3a250b3d738 --- /dev/null +++ b/pic/data307.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5034266cdfb6dab5d61b7d043057a5700815a5c86496db74058404432046499 +size 2660842 diff --git a/pic/data308.png b/pic/data308.png new file mode 100644 index 0000000000000000000000000000000000000000..b05de49831e9f1fb555552d8f343c97e4145e670 --- /dev/null +++ b/pic/data308.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc181c95b7e98b8265bc8b0f1ed6d51373f0d327fee8edc8e04359ba648f62e +size 1354577 diff --git a/pic/data309.png b/pic/data309.png new file mode 100644 index 0000000000000000000000000000000000000000..ab4bdac6efe1bb77ecdbea04d9ddb08f2ee18477 --- /dev/null +++ b/pic/data309.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d2fd2ab5ee7630b43998eaf7118ab1dee73178aefecc096f4d5e9e5fc3cba7 +size 1617009 diff --git a/pic/data31.png b/pic/data31.png new file mode 100644 index 0000000000000000000000000000000000000000..b749c574622bc021e3e1dc53a1a72c7967176182 --- /dev/null +++ b/pic/data31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0368b278033bf571404a726162de30a0d2db87a8a7f3632422b349f12366e0d4 +size 2676016 diff --git a/pic/data310.png b/pic/data310.png new file mode 100644 index 0000000000000000000000000000000000000000..a6bb89775c14a344788a76edcda3234d991d6e61 --- /dev/null +++ b/pic/data310.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1d0583e192a5369f5b4f6c7f1a8258120b082401e8155d1475b27c08f95f45c +size 1549602 diff --git a/pic/data311.png b/pic/data311.png new file mode 100644 index 0000000000000000000000000000000000000000..ed8ae40aba272ca083d609ead1b04a75cc99df9d --- /dev/null +++ b/pic/data311.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a62f47bd49c362d00608ac014a714ae980892fef8f08255b4e1ba6daf72917c7 +size 1204555 diff --git a/pic/data312.png b/pic/data312.png new file mode 100644 index 0000000000000000000000000000000000000000..5671480172d4873a90ad958e9ec76ba24fa4050e --- /dev/null +++ b/pic/data312.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6c15b2de42b5821929d4176b33ed6c23648930d720711f4c0368bf41d3af7e0 +size 107020 diff --git a/pic/data313.png b/pic/data313.png new file mode 100644 index 0000000000000000000000000000000000000000..a7d8ea167725c3a95c10b85a85935bd4eb46fc13 --- /dev/null +++ b/pic/data313.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7141e0acb2fce39a9b12dca0730239f5910188c352443e689373d09cef931241 +size 1770541 diff --git a/pic/data314.png b/pic/data314.png new file mode 100644 index 0000000000000000000000000000000000000000..32d2a0513b121ecedf905e8ee2fe1da4ab13cf49 --- /dev/null +++ b/pic/data314.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b683f4b93d785d7e79b9851e74a8f501db12f61b7ef8e48a43b3c34783ae4f87 +size 1784553 diff --git a/pic/data315.png b/pic/data315.png new file mode 100644 index 0000000000000000000000000000000000000000..7e78290202c38b351258bde155d826263a0f3141 --- /dev/null +++ b/pic/data315.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d547d2cace4c5eace11782c44f2babcbd1bb234f0b439b5dc79eddd9e75222ba +size 2149490 diff --git a/pic/data316.png b/pic/data316.png new file mode 100644 index 0000000000000000000000000000000000000000..c0cc2dd9abc383dcf01973a812baf9dc94e7996a --- /dev/null +++ b/pic/data316.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c731e4da7d2140492c38c12e46170a2346ab9fd9f3b13e3d2d96080e6cdca79d +size 1798285 diff --git a/pic/data317.png b/pic/data317.png new file mode 100644 index 0000000000000000000000000000000000000000..59c1c3758f2af9bd8bf427bd37032b216fdf7558 --- /dev/null +++ b/pic/data317.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22f654b945dccffc9ce5f5f94fbdd1c3e246222dd9809d522006be63cda61a1d +size 1662977 diff --git a/pic/data318.png b/pic/data318.png new file mode 100644 index 0000000000000000000000000000000000000000..4207aeff9390b7b9c366b9a1c2ca036b3712ee45 --- /dev/null +++ b/pic/data318.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb9a23f8f01ed5925d7a32b79c9ab76c3799f8a0c5c8ce272a4c0feeee10e64 +size 1477986 diff --git a/pic/data319.png b/pic/data319.png new file mode 100644 index 0000000000000000000000000000000000000000..178241f86999eeef6d64d31c5dd0bb3cc05e997e --- /dev/null +++ b/pic/data319.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e539bc463e887c59827d80aa4f95e19d5b53aa8d924cfd7bd246655eb4c42286 +size 2412264 diff --git a/pic/data32.png b/pic/data32.png new file mode 100644 index 0000000000000000000000000000000000000000..c9b140669db22546bc6df69bf258a303fdcb9521 --- /dev/null +++ b/pic/data32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b3ad9260901cda9965e37e18fb455b186f649ac7994e207fdb540fab55726a +size 2660948 diff --git a/pic/data320.png b/pic/data320.png new file mode 100644 index 0000000000000000000000000000000000000000..9fd391996cdd300176beb025386d9206860ad3e9 --- /dev/null +++ b/pic/data320.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a924ca424c2bfb2e1048239f29ee2ff9da4c5e0478b94d2940a7adf9f1e8f98c +size 1981160 diff --git a/pic/data321.png b/pic/data321.png new file mode 100644 index 0000000000000000000000000000000000000000..1630fea6324d658937d9d5d5497fc79d21586719 --- /dev/null +++ b/pic/data321.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ef417d9ad6732018ea278d4c28eafd5e581301b95b374aee0be321fa99bdfa5 +size 2022622 diff --git a/pic/data322.png b/pic/data322.png new file mode 100644 index 0000000000000000000000000000000000000000..aee15807d7b793d9e77ce5901a60ad2a568adedc --- /dev/null +++ b/pic/data322.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fbbfb1edc930f60ec34404d62fc120b093bd4022b1c3154282598bb591ef0b6 +size 1204870 diff --git a/pic/data323.png b/pic/data323.png new file mode 100644 index 0000000000000000000000000000000000000000..2f637be97b8743965e2b5e635c673e0e81de91bd --- /dev/null +++ b/pic/data323.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72f89affd3c4cb29efa246870e34056908cf1abc6ac4c1657d089e33012b8fe0 +size 159470 diff --git a/pic/data324.png b/pic/data324.png new file mode 100644 index 0000000000000000000000000000000000000000..84a2cc453f14085d07cdab30dabc22548e70d021 --- /dev/null +++ b/pic/data324.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ff4bd32f76980a148c0882476401745b87123c2f7cc481808302570fe7c642 +size 1146583 diff --git a/pic/data325.png b/pic/data325.png new file mode 100644 index 0000000000000000000000000000000000000000..d9fbff9cf288862aef6f5213e3c48e4e40c33d2b --- /dev/null +++ b/pic/data325.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfe0748c6400d45b378b4e9d54a3293a9768f2f3f063c4cd679d699e8a930ff4 +size 1878705 diff --git a/pic/data326.png b/pic/data326.png new file mode 100644 index 0000000000000000000000000000000000000000..eb75312ce949b25e73ae3838b74a02e6f44b4e29 --- /dev/null +++ b/pic/data326.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac9e435b44e776cc97cb21c07020827cb4df129e56e25d962148d6eaa90e0d8 +size 1573143 diff --git a/pic/data327.png b/pic/data327.png new file mode 100644 index 0000000000000000000000000000000000000000..98129da14a7555295243b1958c2b183427043c58 --- /dev/null +++ b/pic/data327.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:378b1717bdce17223ddd0ebdba40daed15ed026f5ff139d5e8bae54efb042a26 +size 1729226 diff --git a/pic/data328.png b/pic/data328.png new file mode 100644 index 0000000000000000000000000000000000000000..1ad17be45f9deb52263d7528a53cd4c0b1ffff87 --- /dev/null +++ b/pic/data328.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba38d4b56fa551586e4741d948c00121063b1a384e6644657256b21267df69ff +size 1641226 diff --git a/pic/data329.png b/pic/data329.png new file mode 100644 index 0000000000000000000000000000000000000000..15d3eb54c5ba272ef3fc4fe97d457505774a3bbd --- /dev/null +++ b/pic/data329.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ec31900d994d6819d354fcbf24ea727618550cad9992ca44d2362770bde393 +size 1657661 diff --git a/pic/data33.png b/pic/data33.png new file mode 100644 index 0000000000000000000000000000000000000000..adf0cd66f1355bd17b5c46fe3c625a74299bee6f --- /dev/null +++ b/pic/data33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de153d6ea100aea717dfc7d20d5ff0d446c48c86f7c409207ff3c2840c717465 +size 2568303 diff --git a/pic/data330.png b/pic/data330.png new file mode 100644 index 0000000000000000000000000000000000000000..f82980285730ab72e96d3ba838a92ad65a9886c4 --- /dev/null +++ b/pic/data330.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79fd25aacde4affad28e7af87091c563bb2e6f5d4191aaacc412a8224ae07e51 +size 1510161 diff --git a/pic/data331.png b/pic/data331.png new file mode 100644 index 0000000000000000000000000000000000000000..1506ab19e199563b6edfbc24e77ae43e7e873271 --- /dev/null +++ b/pic/data331.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d87cba6c3796057b35b4a4bd0290a6c0c0da0ebe0023f71a5696fc2e1dfe58a +size 2242890 diff --git a/pic/data332.png b/pic/data332.png new file mode 100644 index 0000000000000000000000000000000000000000..005345e8cbc466cf55b98e1721939b06a025d7a1 --- /dev/null +++ b/pic/data332.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9800da2805e6a42ff4405dba799e7ed315715128db167821d328f95b8e5cf6d9 +size 1487966 diff --git a/pic/data333.png b/pic/data333.png new file mode 100644 index 0000000000000000000000000000000000000000..b2468dfc236f80a900951f4004173ad4d1c71e68 --- /dev/null +++ b/pic/data333.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c247c1303402dd1bb426cad0fb4f2163d6c5869b1d4de8da8332f35ef741fc4 +size 1537222 diff --git a/pic/data334.png b/pic/data334.png new file mode 100644 index 0000000000000000000000000000000000000000..4c8fd207b556bc5ac396dfb2137230451273beea --- /dev/null +++ b/pic/data334.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6831b3f221d1004188fd020d067bb34c1c6fa1442c21fd944cec1faf84314d1e +size 172657 diff --git a/pic/data335.png b/pic/data335.png new file mode 100644 index 0000000000000000000000000000000000000000..54f45827793e5ed5b9292cb75dc20c690c9d116e --- /dev/null +++ b/pic/data335.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f86790ddcc9b49e0c3c8faeb34a9db02d37538b2f2e53f51ccd31d8fe2f04e0 +size 158204 diff --git a/pic/data336.png b/pic/data336.png new file mode 100644 index 0000000000000000000000000000000000000000..e0470355add960b92ef07e150ce6259cf9885171 --- /dev/null +++ b/pic/data336.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f548a5c52980b88bda398aa0b85225385d9684e0ea3d141e933cd2e7c3311f7 +size 1574316 diff --git a/pic/data337.png b/pic/data337.png new file mode 100644 index 0000000000000000000000000000000000000000..9e523f16ddf789a28644c25ec9a15e7a0191259b --- /dev/null +++ b/pic/data337.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5771ec45f543c5753036535d53be81c461c6558b594886966b92dd0d9b085086 +size 1493621 diff --git a/pic/data338.png b/pic/data338.png new file mode 100644 index 0000000000000000000000000000000000000000..283a2f43f7d07ba3454f67872dd8d3ce8713ee6d --- /dev/null +++ b/pic/data338.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28de1f1bb0f985248bf44a3eaebbc95f2ad85e0d79c0ee8a1099ce43be0c6956 +size 1184229 diff --git a/pic/data339.png b/pic/data339.png new file mode 100644 index 0000000000000000000000000000000000000000..ee9a2db39b0d2c3a66dbbff60a2955fa9dd4c52d --- /dev/null +++ b/pic/data339.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510cf29f8143b447ab6560278f666b2a38d4865970f90e06838026b40e0a12ee +size 1631716 diff --git a/pic/data34.png b/pic/data34.png new file mode 100644 index 0000000000000000000000000000000000000000..cd68a513ba717a5e0e11d9071b71b83315e5f374 --- /dev/null +++ b/pic/data34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50f938d4d2dc33b7a2d4cf6a7de52498dee4626258b51a6b846014dff9d8a88 +size 1153881 diff --git a/pic/data340.png b/pic/data340.png new file mode 100644 index 0000000000000000000000000000000000000000..1ed3afe06b6d5f2b82b6be070c46f1a543a3f1b9 --- /dev/null +++ b/pic/data340.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a9c29744ff97357273ad8e5d87b081b551c761f5b657f18c4cab08b41eed4c +size 1367802 diff --git a/pic/data341.png b/pic/data341.png new file mode 100644 index 0000000000000000000000000000000000000000..daab0f61c2764913cd22d31b39838125ef06ea0a --- /dev/null +++ b/pic/data341.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ddd2b0ef48f8a2217270220179cf1d1d0cacdaf90ea732de55068d49ef15448 +size 1438626 diff --git a/pic/data342.png b/pic/data342.png new file mode 100644 index 0000000000000000000000000000000000000000..76fcf8d4fac1084929bc807df5deba59c0e20fbd --- /dev/null +++ b/pic/data342.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a50dbafd7cc1e66b06c66f10e3fdab5835f4a3eeb87deca7282f81735b4adee +size 1502749 diff --git a/pic/data343.png b/pic/data343.png new file mode 100644 index 0000000000000000000000000000000000000000..89d7014d328e1453e83791a8f10736775d124066 --- /dev/null +++ b/pic/data343.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcce27a9bb6552f9c36a5859527e9ffdb4c0385bb10e907e20cded7b109f3e6f +size 1755730 diff --git a/pic/data344.png b/pic/data344.png new file mode 100644 index 0000000000000000000000000000000000000000..9cc47b30a3c5167b29197c0e12460463a8329e0c --- /dev/null +++ b/pic/data344.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15fa5eb66fc0490f69baf607e9debb61c7c7822ab877c4f6dde6b449a7428e88 +size 2401264 diff --git a/pic/data345.png b/pic/data345.png new file mode 100644 index 0000000000000000000000000000000000000000..e30b37440a6e559a4ca260211814ad0e50cdd3cb --- /dev/null +++ b/pic/data345.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d48e44072bf1bcaa1f73e715d7256252ea5294536e800f8d84ee864598cec0e +size 1567848 diff --git a/pic/data346.png b/pic/data346.png new file mode 100644 index 0000000000000000000000000000000000000000..12a0c28d01018a376f8eb9ef6bc322a10b81777d --- /dev/null +++ b/pic/data346.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2383961c7f04c97922826b14a2351dc1f98ec014ee2fa8f68b367ab262cbd22d +size 2223958 diff --git a/pic/data347.png b/pic/data347.png new file mode 100644 index 0000000000000000000000000000000000000000..2068a4f7c77fd267450c5cf56772fa0971108e5e --- /dev/null +++ b/pic/data347.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b774b171d8289102ce73f9fc0100f3c3f0382ca5b5ac46b2fdf4205056fd583 +size 1185485 diff --git a/pic/data348.png b/pic/data348.png new file mode 100644 index 0000000000000000000000000000000000000000..394b2a026ec77d0ca7c3be959f6fad7d7d1e4fca --- /dev/null +++ b/pic/data348.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1ed96b79f4a57b55342039743b2e373c0808bc54c2782a56613d335b611c3a +size 1011169 diff --git a/pic/data349.png b/pic/data349.png new file mode 100644 index 0000000000000000000000000000000000000000..a3a08f8a8fcadc079f57c35d44df861cb238a3ad --- /dev/null +++ b/pic/data349.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c27de00596cd1b89df09733650292c6b4a8f4cb662b0bfe311543f36d0f77a8c +size 1059460 diff --git a/pic/data35.png b/pic/data35.png new file mode 100644 index 0000000000000000000000000000000000000000..47aab8f0194a9c2bd6a3cdc72318df605f6f5040 --- /dev/null +++ b/pic/data35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef25e0335dcadb3c50caad50396170de70863fd1285dfd018ddf709dcc7aba0e +size 121515 diff --git a/pic/data350.png b/pic/data350.png new file mode 100644 index 0000000000000000000000000000000000000000..4bc56ba36c9abac357e5712d8675caf23fe79e7c --- /dev/null +++ b/pic/data350.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b6107ebb901de61606f3b232bcef308f6d3533dd79eecbd6b5403640fae41f +size 1209245 diff --git a/pic/data351.png b/pic/data351.png new file mode 100644 index 0000000000000000000000000000000000000000..4e5432b31dcaccf14daf0a651fc59c0cea3256af --- /dev/null +++ b/pic/data351.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:605b5bd3487619519f15da8cd1ca14d82ccb50e64810ce685fef2fe1ff99e663 +size 1490867 diff --git a/pic/data352.png b/pic/data352.png new file mode 100644 index 0000000000000000000000000000000000000000..2f11967eab62e4945e3bf14bde880debbbeb6b91 --- /dev/null +++ b/pic/data352.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7447895bb0c1397075258cc77623ac4ac99258a6ce228e251f9541a79f99dac2 +size 1097438 diff --git a/pic/data353.png b/pic/data353.png new file mode 100644 index 0000000000000000000000000000000000000000..ccc0025da527fa159dfe7a32b9e4fa5ab491ba36 --- /dev/null +++ b/pic/data353.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c352f0ff70fb47e4a6df92dd05da17beb40780c76b6476f606fda16ba6086e0 +size 1207334 diff --git a/pic/data354.png b/pic/data354.png new file mode 100644 index 0000000000000000000000000000000000000000..ce73f21ac5479cc1313e09968e259b41c082eae9 --- /dev/null +++ b/pic/data354.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caabb5e50e82bf466b3e55084bd3bd06c2a15d9920bae5d745dd0a32e14666ce +size 1615965 diff --git a/pic/data355.png b/pic/data355.png new file mode 100644 index 0000000000000000000000000000000000000000..d0fa487cfe52e745f2030e9be575c15ca12e4844 --- /dev/null +++ b/pic/data355.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882ce004fb655b3ced6bb5e00b8bd66c37a664c1fa29dbbc83def301884b9b16 +size 1609529 diff --git a/pic/data356.png b/pic/data356.png new file mode 100644 index 0000000000000000000000000000000000000000..4c6f9a9e464dcc647f166bcc233b0a3573fb84a2 --- /dev/null +++ b/pic/data356.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:677f7eeaf61dab048604930692128559a2976fcca94b093c0cf656b102330a51 +size 2533163 diff --git a/pic/data357.png b/pic/data357.png new file mode 100644 index 0000000000000000000000000000000000000000..67bd368be10aa1ce8893bbfa32402731b34c02f1 --- /dev/null +++ b/pic/data357.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbd316208f74d09d68c28f29ea0a841d94d02c326a7e85b6bf90b5a4c5b09c9 +size 2178166 diff --git a/pic/data358.png b/pic/data358.png new file mode 100644 index 0000000000000000000000000000000000000000..4084ca6e0cdaf749699da0f735f86c40c864f3a9 --- /dev/null +++ b/pic/data358.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c14ad529030f644128b23302a48161969c562206d86f1d28300fb5bcf31fc0c +size 1597277 diff --git a/pic/data359.png b/pic/data359.png new file mode 100644 index 0000000000000000000000000000000000000000..f1fb17c1f8e72f84fd75fd351b1b65bbe759f599 --- /dev/null +++ b/pic/data359.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c6c1f2973c0bf55837b63a7506b85b6de435f0aa1d3377f5164da747a86e3c7 +size 1576127 diff --git a/pic/data36.png b/pic/data36.png new file mode 100644 index 0000000000000000000000000000000000000000..946af319d7a9348e133cfad60586a24abc4bb623 --- /dev/null +++ b/pic/data36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b23533bede27b8b4b8be5fd082793e8cffa308653653f5e066fb5e05458e16d +size 183926 diff --git a/pic/data360.png b/pic/data360.png new file mode 100644 index 0000000000000000000000000000000000000000..42ca7cb66e0935ce006afcabce8b447346c4a4f8 --- /dev/null +++ b/pic/data360.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ee52e2956f6993f68d0f9fa73da5cd870ea3f625196472f1967490ed321b11 +size 1476731 diff --git a/pic/data361.png b/pic/data361.png new file mode 100644 index 0000000000000000000000000000000000000000..e44a270345a2739f94b582fb0d68eb1b500b2b2e --- /dev/null +++ b/pic/data361.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f128193ee31cd330f4282d10a2f820d6da28f203169aab5f11e433166b3e547 +size 1556829 diff --git a/pic/data362.png b/pic/data362.png new file mode 100644 index 0000000000000000000000000000000000000000..32d003b73e0db66c8180d11f043b79683036a452 --- /dev/null +++ b/pic/data362.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e6ac1a8952130005d3e44b58ff2db516412cd6fea2c9564b4e188a5ce3f3d6 +size 1447976 diff --git a/pic/data363.png b/pic/data363.png new file mode 100644 index 0000000000000000000000000000000000000000..fcd60f2fd9d34c74197ae2739a578c0bfdae2157 --- /dev/null +++ b/pic/data363.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9ba1a50eeda6918d8f0684f2dc845f2e21314090e1489f57f41f1d69dcfde9 +size 1430454 diff --git a/pic/data364.png b/pic/data364.png new file mode 100644 index 0000000000000000000000000000000000000000..9da48eb4ae366a3db5c7d9754c91e5bbe9b97367 --- /dev/null +++ b/pic/data364.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b723b462c21716758092edd796f1cd7e9593f408f0851b687b5ff95c427719d1 +size 1373749 diff --git a/pic/data365.png b/pic/data365.png new file mode 100644 index 0000000000000000000000000000000000000000..c824deed79be227e6d8e0b5e6c5786a48a7f986a --- /dev/null +++ b/pic/data365.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd4fb1683697cacac002904e79cb349c2479eb627003a2334d150f3b6690c1c4 +size 1107117 diff --git a/pic/data366.png b/pic/data366.png new file mode 100644 index 0000000000000000000000000000000000000000..8b068d91e30ac697da80e52b20addaa4b67ad74a --- /dev/null +++ b/pic/data366.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ccc76dcfa17aab2ba2533df8b8e6aacefa78393c5cb998ac73b2117523daf2 +size 1571699 diff --git a/pic/data367.png b/pic/data367.png new file mode 100644 index 0000000000000000000000000000000000000000..c90a298fc289c66d7e30402be291b3023012bcf5 --- /dev/null +++ b/pic/data367.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56368c80defe6fc840af9a26fcf058e8e32125090dbb264726d728393ffb0860 +size 1365715 diff --git a/pic/data368.png b/pic/data368.png new file mode 100644 index 0000000000000000000000000000000000000000..8ae21d94874b47cd467aa28722281907739db123 --- /dev/null +++ b/pic/data368.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a268ed67882abb70efdf2033d29dd0c54a4bee12f501670bcd6e2c6d0ec3ee8 +size 1242617 diff --git a/pic/data369.png b/pic/data369.png new file mode 100644 index 0000000000000000000000000000000000000000..984fb1f9fe71bb4a01e1c1ae873d406b96002a64 --- /dev/null +++ b/pic/data369.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6678c0867cb2634be969eb7c279f51b79e0de202bbb876ee5f761e435dc94043 +size 2555375 diff --git a/pic/data37.png b/pic/data37.png new file mode 100644 index 0000000000000000000000000000000000000000..1beea226646a41edbd66b22464a1375d30d06899 --- /dev/null +++ b/pic/data37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35adcb495234b33cee574d5bc6d4b9db5a327139bd20ddf10b6ea2d124218f39 +size 2259361 diff --git a/pic/data370.png b/pic/data370.png new file mode 100644 index 0000000000000000000000000000000000000000..e0de2709482cfe084058d1c963bfe28c41399c48 --- /dev/null +++ b/pic/data370.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5604d95180ea3789bf38f13f7105cce460371b251a8af94eee32ec6fcc8644f0 +size 1501548 diff --git a/pic/data371.png b/pic/data371.png new file mode 100644 index 0000000000000000000000000000000000000000..f87608924af054db5c9cd13144502e43fa54e07d --- /dev/null +++ b/pic/data371.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:027457e41a9bc8a1437ee2d9bce8ce61675e36b27e22a1bbea920e2b61cfd445 +size 1426998 diff --git a/pic/data372.png b/pic/data372.png new file mode 100644 index 0000000000000000000000000000000000000000..31ce5ad2a715f2eacaab4ca46de43cd54b2847da --- /dev/null +++ b/pic/data372.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13aa0fd3579b7cbb0022e1964d20f81a031bacab00fc7be1ab1db8fce3c2a8ad +size 1317346 diff --git a/pic/data373.png b/pic/data373.png new file mode 100644 index 0000000000000000000000000000000000000000..76ee8a407e211a62a35fa5c59a672db995cdf9b6 --- /dev/null +++ b/pic/data373.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a845b665c876d4b94f3bd6ec95465d6601a3cfcbc106ddf9399c836b3810114a +size 1378004 diff --git a/pic/data374.png b/pic/data374.png new file mode 100644 index 0000000000000000000000000000000000000000..36ae94349cc66dbb1a6247b02d9856ab73debc66 --- /dev/null +++ b/pic/data374.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b89959e17f8dcfa46dad16edc4527293bb952ac4939ab744a6ed4a1eaf0b07 +size 1355761 diff --git a/pic/data375.png b/pic/data375.png new file mode 100644 index 0000000000000000000000000000000000000000..6859a35c4c2fea2bc90ebea5d5a8e7f9283a991a --- /dev/null +++ b/pic/data375.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c91df62825a9ca09cc51ac65b0aedc31702ad82e40403e1630dbfdd7724d35 +size 1455584 diff --git a/pic/data376.png b/pic/data376.png new file mode 100644 index 0000000000000000000000000000000000000000..89bed27949dd57bbd38d9e90bd369e884aa4de57 --- /dev/null +++ b/pic/data376.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ffd43f7bb878950c12dd36970196ad747534a770b42df08587cec59fd65087e +size 1297120 diff --git a/pic/data377.png b/pic/data377.png new file mode 100644 index 0000000000000000000000000000000000000000..165bab8d164061f8da150c7adbe84ea9621d86fb --- /dev/null +++ b/pic/data377.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f20d999b0eaadebb219d65d1651c4128541de7f3be5e09f5650d79d21cf122 +size 1669756 diff --git a/pic/data378.png b/pic/data378.png new file mode 100644 index 0000000000000000000000000000000000000000..38c4a2ff5773e88c80f26dfad905209d5a9ba28f --- /dev/null +++ b/pic/data378.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368a443f4c95950cfc3464d0aefb44b0c3c8eb213cb8e5e87d01e3a9a0cbbda5 +size 1683140 diff --git a/pic/data379.png b/pic/data379.png new file mode 100644 index 0000000000000000000000000000000000000000..3cc75aa4975f23273cc2b5af7eb8c96161cce8df --- /dev/null +++ b/pic/data379.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1a545b98de3d29e35bb1c1e724c9934817297ba2dc7d619e1406f3d49200bed +size 1122485 diff --git a/pic/data38.png b/pic/data38.png new file mode 100644 index 0000000000000000000000000000000000000000..869d03f98f9f6b132404d185d05cdd3b3cfd51a8 --- /dev/null +++ b/pic/data38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45d17212dea5d98ca7a185230111375f006627c5063ceb4f6efb1601360ee308 +size 1816031 diff --git a/pic/data380.png b/pic/data380.png new file mode 100644 index 0000000000000000000000000000000000000000..146be1b7f36554f4bfff0fd4de33e6dbb8f199d0 --- /dev/null +++ b/pic/data380.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ad8122e03c2a72cf36713b5958f186c9d085cf887a2aa6d75b73bbf01c03a9 +size 1714216 diff --git a/pic/data381.png b/pic/data381.png new file mode 100644 index 0000000000000000000000000000000000000000..44e3d807f6e3215def6d3add03c5b990bef48c18 --- /dev/null +++ b/pic/data381.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:579011142f0755ca756f7512c291b984c6bb485d77dfd3adc9249530f2540faf +size 1722315 diff --git a/pic/data382.png b/pic/data382.png new file mode 100644 index 0000000000000000000000000000000000000000..b3b4ca1a3832e2e22e44e08a1ade3a4e800a5311 --- /dev/null +++ b/pic/data382.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358a921dc8b56df7a7f5ac6b0bf3fcf0c51e098d00f7d00a7cfa25bbfa4392d5 +size 1897012 diff --git a/pic/data383.png b/pic/data383.png new file mode 100644 index 0000000000000000000000000000000000000000..3ae9399b5b35fdc3631020e580721bddb90a8b1e --- /dev/null +++ b/pic/data383.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6daa121000e2cc047b6784f17aacc1c3e1b25c76e616079af9117e17f157c51 +size 1806620 diff --git a/pic/data384.png b/pic/data384.png new file mode 100644 index 0000000000000000000000000000000000000000..3db17775dc1b0687cdec44cd237db2bd09876c73 --- /dev/null +++ b/pic/data384.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99dc56c3d0dd2b47f3a5bf3c97dc1b318c97e045d1f1aca75890b0052d417666 +size 1811060 diff --git a/pic/data385.png b/pic/data385.png new file mode 100644 index 0000000000000000000000000000000000000000..2b07d1c653866c4e20765006d535c7670b39e9e3 --- /dev/null +++ b/pic/data385.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c667068e5624814eea4b94e76845ed43badae2c1a06d8d9f43c917b51a1a02e5 +size 1725744 diff --git a/pic/data386.png b/pic/data386.png new file mode 100644 index 0000000000000000000000000000000000000000..2e4172db17adff815e605f27dc5214f72e38bea4 --- /dev/null +++ b/pic/data386.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b95ff52f1c5393f63ebbd7385c6cb0c0909b04d418084f399b288bd9228ef0fe +size 1841857 diff --git a/pic/data387.png b/pic/data387.png new file mode 100644 index 0000000000000000000000000000000000000000..1f74ea058bf53791775fd5706dad10ebf1df446f --- /dev/null +++ b/pic/data387.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc85057b2381ff6f734e2a90417d04cec72cce05158fba95be3ed360bb47abf +size 1881649 diff --git a/pic/data388.png b/pic/data388.png new file mode 100644 index 0000000000000000000000000000000000000000..5aec44c328367bde59d291d687bbb3b790f54c7d --- /dev/null +++ b/pic/data388.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34d8751c1ad51eab03701ce547f04fffc0f18f24ad363f9cabc0c0335ead495 +size 1916926 diff --git a/pic/data389.png b/pic/data389.png new file mode 100644 index 0000000000000000000000000000000000000000..f0047b08ca92399c9dff3cb632fedd250d62031e --- /dev/null +++ b/pic/data389.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2f99c92ca8bc0d1631d988fbb7f883726f57c8619a67c99a177af15118632e +size 1245328 diff --git a/pic/data39.png b/pic/data39.png new file mode 100644 index 0000000000000000000000000000000000000000..f528d217e41a3254dd186da563a8a6426823018a --- /dev/null +++ b/pic/data39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a70a25d32cb25384340b664321e89904c5ba0a093b1f098c8bfb65e33d72e7a +size 2373270 diff --git a/pic/data390.png b/pic/data390.png new file mode 100644 index 0000000000000000000000000000000000000000..a145ef7045e6ab80d006f282672d4bce457cec42 --- /dev/null +++ b/pic/data390.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75f69960826a153e577932067e922e89fc238b8a3fccae86855f678968a65d36 +size 1275590 diff --git a/pic/data391.png b/pic/data391.png new file mode 100644 index 0000000000000000000000000000000000000000..c1a09f215163e7734ca6b26061395dba3042fc75 --- /dev/null +++ b/pic/data391.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4f2be25bc43140da8234c9ddb1638ae138a23d30155adafb81b3f60aef442f +size 2029977 diff --git a/pic/data392.png b/pic/data392.png new file mode 100644 index 0000000000000000000000000000000000000000..623b7ef5b9c63286f148c14c7911f2f247de91aa --- /dev/null +++ b/pic/data392.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c754bad383cf99c88060e037cc7a2114c0c02db80fdf9ff38f87755535b3bb7 +size 1897265 diff --git a/pic/data393.png b/pic/data393.png new file mode 100644 index 0000000000000000000000000000000000000000..644ee25d39aec56d12bea951e96625d1edee2ea0 --- /dev/null +++ b/pic/data393.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93bef544401d30c71be968a256bfdb7f94d8e9a47f41628c5d509c55a2134f08 +size 2576777 diff --git a/pic/data394.png b/pic/data394.png new file mode 100644 index 0000000000000000000000000000000000000000..0eae7e464ca7ca1cf3c795da185ffba670861667 --- /dev/null +++ b/pic/data394.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38cfd00d98c2712305e7eae8e443c943bafdeee2c0eab2b6aaa7f573e0b2f61a +size 1917671 diff --git a/pic/data395.png b/pic/data395.png new file mode 100644 index 0000000000000000000000000000000000000000..35fb223903d00516aefa7cada543e08fc4b866cf --- /dev/null +++ b/pic/data395.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d6767a1b1d9d57952c3e9455a4a231c801c69280a767fd0a6e19f03c4a87f77 +size 1857760 diff --git a/pic/data396.png b/pic/data396.png new file mode 100644 index 0000000000000000000000000000000000000000..f841dedb5423572f210b233f6327be67e7bd6aa1 --- /dev/null +++ b/pic/data396.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03379b82ab7296d0cae36f3b7f6ac35bbb51f80dae6201649671e753565aaad6 +size 1905337 diff --git a/pic/data397.png b/pic/data397.png new file mode 100644 index 0000000000000000000000000000000000000000..3b107b5123666b6079984d064141d467964254a2 --- /dev/null +++ b/pic/data397.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8840e64157e85c85513e859b45cac55be0da4acc977f901f4c0981c9a970dfbc +size 1928640 diff --git a/pic/data398.png b/pic/data398.png new file mode 100644 index 0000000000000000000000000000000000000000..c35b71cadba372bc9e1d1865dd9c790f994bb949 --- /dev/null +++ b/pic/data398.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc6aa3a2c56605db9af325344225a214ff241115ec8803fbf1947cae8440f3fa +size 1877465 diff --git a/pic/data399.png b/pic/data399.png new file mode 100644 index 0000000000000000000000000000000000000000..e9e2cae82c7a3ecfe8a5ad2f925dca8e63786950 --- /dev/null +++ b/pic/data399.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0402f910692e41baf46fecdefe13e899ccccb902ff98e0e1ca1c6c1806c36548 +size 1799695 diff --git a/pic/data4.png b/pic/data4.png new file mode 100644 index 0000000000000000000000000000000000000000..2f3ce0ed46c50b7b1d761bb2a50519743612915f --- /dev/null +++ b/pic/data4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43bacbc5a382d65e15aa70acf2aaaf1c058dd514bb7fad55d7ffbde34a82ed8 +size 2156074 diff --git a/pic/data40.png b/pic/data40.png new file mode 100644 index 0000000000000000000000000000000000000000..78f9242084af61b38308a444d6de33d7cf73c95d --- /dev/null +++ b/pic/data40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e570d1e04d84b29b70e697c88ec17d590333cada57f516241d299c188e0195 +size 2627136 diff --git a/pic/data400.png b/pic/data400.png new file mode 100644 index 0000000000000000000000000000000000000000..09c948a3e9f8965556513c0162c0df85a7928582 --- /dev/null +++ b/pic/data400.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0680eda0b8d8352153d155c3b152d730e9c6f7ece2406cf4577aff17ebd0ed9 +size 1795959 diff --git a/pic/data401.png b/pic/data401.png new file mode 100644 index 0000000000000000000000000000000000000000..a69c3cc42aec08847ee6c785a00703fbee42b6b0 --- /dev/null +++ b/pic/data401.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9645ae39624fa30f5be9a1d318ffcaecc94bbef38dc74c2327ace1392a953dca +size 1660012 diff --git a/pic/data402.png b/pic/data402.png new file mode 100644 index 0000000000000000000000000000000000000000..3edb224fc7416b0a7c71ca235c85c0347fbddad4 --- /dev/null +++ b/pic/data402.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eac46f0defeaa0c63e45f6425c4d5f98b764a591421ab627639d9e8745186ca +size 1309238 diff --git a/pic/data403.png b/pic/data403.png new file mode 100644 index 0000000000000000000000000000000000000000..3441eae6759a2405ebb76f24e9a7b3d6b24e6a1a --- /dev/null +++ b/pic/data403.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:268c4aa114fac196f4a33e1e4bf2e944a896d2e84848da2a5669de2bafb868bf +size 2557264 diff --git a/pic/data404.png b/pic/data404.png new file mode 100644 index 0000000000000000000000000000000000000000..f13fb07f5ebdac4c347a7926db4584162693a0e1 --- /dev/null +++ b/pic/data404.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c3913efe471c7b9b9993e75eb072ed03ebafe43c6b99ba8dfd23623ed13d7d9 +size 2488190 diff --git a/pic/data405.png b/pic/data405.png new file mode 100644 index 0000000000000000000000000000000000000000..95dd67210c9b7d6dd60d24ac5c88472397ad75f6 --- /dev/null +++ b/pic/data405.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846e0842495b5b7a75b1cfe6fb7e3c0780f0948d9d6bd60a5881fd2c989b6e9a +size 2216959 diff --git a/pic/data406.png b/pic/data406.png new file mode 100644 index 0000000000000000000000000000000000000000..139ccdb9a8ef77e40d2dfd9b4226f87a6edc3581 --- /dev/null +++ b/pic/data406.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e6078e1a9407e9c787b3241186479038aaab5a1dd9f4a0eada456268b03a85 +size 2328617 diff --git a/pic/data407.png b/pic/data407.png new file mode 100644 index 0000000000000000000000000000000000000000..f005fa3efbb181853dfdc4603e10000788dbb798 --- /dev/null +++ b/pic/data407.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be797ad4bb692fa8ba181c438973c24bbd92c4c24059cdf6c583cd1e9b16023 +size 2594570 diff --git a/pic/data408.png b/pic/data408.png new file mode 100644 index 0000000000000000000000000000000000000000..5a9882cbf2c3a1de445f6dc88f2430507aa67726 --- /dev/null +++ b/pic/data408.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a85a3604a146ef8274e2656fa236d0065c7bcbee543e77c7b37a95f5a6b9787c +size 1275119 diff --git a/pic/data409.png b/pic/data409.png new file mode 100644 index 0000000000000000000000000000000000000000..9d9294b3a7b29e20849ec25c58b8b9dc6a72c577 --- /dev/null +++ b/pic/data409.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15dc2195ea80221e79ae63bd38c446272cef239a1ff3b81190630f03903d78b8 +size 2000193 diff --git a/pic/data41.png b/pic/data41.png new file mode 100644 index 0000000000000000000000000000000000000000..d4f7cf8a366880b27050182921f6284d26b46de0 --- /dev/null +++ b/pic/data41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b71604c2f4f6efa78d9491eeb943d024664e49e6159f71780e1fd32784f7c9 +size 2527087 diff --git a/pic/data410.png b/pic/data410.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6aa7d8ad3b5d3e4181a3ef4da185f9a1ed2e75 --- /dev/null +++ b/pic/data410.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79224c11401f3ee3a64acbbf03343f2b95c244ed502ef701730c1e806565d36c +size 2339272 diff --git a/pic/data411.png b/pic/data411.png new file mode 100644 index 0000000000000000000000000000000000000000..9f3ba061cddb0b3266e139388d0879966b891fb8 --- /dev/null +++ b/pic/data411.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9ea935a74bde7901d68f25a8880855ebb8379f23a51756f0dd7fc3bb2df2e3d +size 2024425 diff --git a/pic/data412.png b/pic/data412.png new file mode 100644 index 0000000000000000000000000000000000000000..a161140c634ddb3c89230ba62418d445d7884c87 --- /dev/null +++ b/pic/data412.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c46d7c08279f7c0c714006b3e22408b2ce0a668d02ce066d9260594bb42c0259 +size 1147706 diff --git a/pic/data413.png b/pic/data413.png new file mode 100644 index 0000000000000000000000000000000000000000..dcd2e9a18e9e9b2e87678a4bc239c2e6085fd00d --- /dev/null +++ b/pic/data413.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eefb5a211cee893a37c562368af8cf0725aaed796f8c5a14a353b7a476f46a41 +size 1259319 diff --git a/pic/data414.png b/pic/data414.png new file mode 100644 index 0000000000000000000000000000000000000000..4f68c1afa23cb6dd0a8035d21c34c9d5eefd8ec7 --- /dev/null +++ b/pic/data414.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d95770d3cda8c24a699a72c25a3076f858609c7ab235008b01003858a2b02b +size 1195074 diff --git a/pic/data415.png b/pic/data415.png new file mode 100644 index 0000000000000000000000000000000000000000..810f4b2c5724ab2574fa6b89359598daadf8776a --- /dev/null +++ b/pic/data415.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0a44d6b525b54d9310516069c7ca7776abfd6ce703f9e92b432e2d5ecca706 +size 1708924 diff --git a/pic/data416.png b/pic/data416.png new file mode 100644 index 0000000000000000000000000000000000000000..b0c0ad64560df6b53233d849c9c97f7f03e0e5ab --- /dev/null +++ b/pic/data416.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a77e2fbe543e329f0a8c31739f72a5d12ee373e3b0bd66156af78917003b38 +size 1441609 diff --git a/pic/data417.png b/pic/data417.png new file mode 100644 index 0000000000000000000000000000000000000000..95b8453869e599d5d6610fc3caf038d56d7bb9ef --- /dev/null +++ b/pic/data417.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aaa20e6c22b992840bf7ba7a166efc11aa985cf9a0b550dab0cd3f0afa0c3b2 +size 1730296 diff --git a/pic/data418.png b/pic/data418.png new file mode 100644 index 0000000000000000000000000000000000000000..d0b82bfb44e9ea7c3532bf30ac6df1872a0651f0 --- /dev/null +++ b/pic/data418.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbc5a62aa4f88d9fa46b7f0e984737c4cfc4f0becc68b80f47b91a2a6f474fdd +size 1396872 diff --git a/pic/data419.png b/pic/data419.png new file mode 100644 index 0000000000000000000000000000000000000000..ad562fce94f10f028a71661f3a9d32b48fa277d1 --- /dev/null +++ b/pic/data419.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ef145468fbce23a22ed5bf7ca30bab9c845866efa11db746539d3e52763e32 +size 1727475 diff --git a/pic/data42.png b/pic/data42.png new file mode 100644 index 0000000000000000000000000000000000000000..afbc232b2678a07eb742f10585e3072ebaa75f6a --- /dev/null +++ b/pic/data42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fcecbf4cafeb23f6c6e49f808118d21b5cfc8078ffc5a527dd75ba6b23efb31 +size 2647932 diff --git a/pic/data420.png b/pic/data420.png new file mode 100644 index 0000000000000000000000000000000000000000..71412d0af286aefba568454d7a074525ea94d2e7 --- /dev/null +++ b/pic/data420.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac644eec5aa6adbd925e7f5901d09bd942a733d1af74891cb0b465d99f05398 +size 2619040 diff --git a/pic/data421.png b/pic/data421.png new file mode 100644 index 0000000000000000000000000000000000000000..65a72e8c7a3b2d246beced6903f8dd5d0f2e247f --- /dev/null +++ b/pic/data421.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed16666988891354a778141774f5787b9aa3ab82ce12f55dccd277996ff29dbd +size 1547046 diff --git a/pic/data422.png b/pic/data422.png new file mode 100644 index 0000000000000000000000000000000000000000..b264108abdeb733c1a2d8dcebb7e477d3ef695cc --- /dev/null +++ b/pic/data422.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b3e09b66d9f102b3cd94995493e7bf2c2777da11f3a993794be61149582f5c +size 1757995 diff --git a/pic/data423.png b/pic/data423.png new file mode 100644 index 0000000000000000000000000000000000000000..02fbabce1e518a0daac6a9f9b370675a396c8f2e --- /dev/null +++ b/pic/data423.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a2c7ae4aeba4cafa9ba0d1b673adaac437c8f339931a1080db277dd430e049c +size 1063102 diff --git a/pic/data424.png b/pic/data424.png new file mode 100644 index 0000000000000000000000000000000000000000..d87068716828042043d3418694d664d382a08ff5 --- /dev/null +++ b/pic/data424.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3703012ac8e220d600f036d9ba297612ff2e7e4a02fdffc747771cbe646b2d +size 1639976 diff --git a/pic/data425.png b/pic/data425.png new file mode 100644 index 0000000000000000000000000000000000000000..9ce83fa2297f146bc28ba99bf886cd70bce6c0db --- /dev/null +++ b/pic/data425.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab64aefdcc38194dc643da12f1f92cfbcf4962c508ffb37177295787da6d1396 +size 1695271 diff --git a/pic/data426.png b/pic/data426.png new file mode 100644 index 0000000000000000000000000000000000000000..886c71d13aeb690b17f47eec09f329779d6ff7fe --- /dev/null +++ b/pic/data426.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df2614abc0b401d58316809d7592ddcda89036ce0ceae0fd3444fb726ed72350 +size 1938605 diff --git a/pic/data427.png b/pic/data427.png new file mode 100644 index 0000000000000000000000000000000000000000..d20f73007902203fe0bf461fead59cf25f46af9d --- /dev/null +++ b/pic/data427.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00a301971b27782e72bc60658b2746a61b36b6fc92c92111beaebb3089a542b8 +size 1192755 diff --git a/pic/data428.png b/pic/data428.png new file mode 100644 index 0000000000000000000000000000000000000000..652e205108976158784702865458e80fa73f526d --- /dev/null +++ b/pic/data428.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4a332215e534843c514ba09054038abe7109ccb6700e1ee2282f038901c922 +size 1934200 diff --git a/pic/data429.png b/pic/data429.png new file mode 100644 index 0000000000000000000000000000000000000000..7b7b3660e3650793e3bb2fb3bcc9eb9aa1bb539e --- /dev/null +++ b/pic/data429.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96d8011d8dbab8577126c111457c208b29adeef362d55610c82d52c7137cc699 +size 2285888 diff --git a/pic/data43.png b/pic/data43.png new file mode 100644 index 0000000000000000000000000000000000000000..cfad50d3e23d91c845e1fc81829d64c392b98116 --- /dev/null +++ b/pic/data43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78525ea17d656b79d187f2769cc76629f831f0cd79e822cc17bd3d5fae8a9a0b +size 2309344 diff --git a/pic/data430.png b/pic/data430.png new file mode 100644 index 0000000000000000000000000000000000000000..9e0677e4f0ea91dc2b1900f37e009ad2ee079997 --- /dev/null +++ b/pic/data430.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162ff27fdaaedf83187eb548969cd84e5b3954194aeb479c8f9a3effe4dec43d +size 2522090 diff --git a/pic/data431.png b/pic/data431.png new file mode 100644 index 0000000000000000000000000000000000000000..413f4934daea2159d8698f40edd04206a600e88b --- /dev/null +++ b/pic/data431.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da0b90d795bd8fdc90d6bf419158be969efa7dbd8ff12c4a04f3fa86115d4e31 +size 2366036 diff --git a/pic/data432.png b/pic/data432.png new file mode 100644 index 0000000000000000000000000000000000000000..1379a144d22feab9a4445e74088dd3d9cf1271c5 --- /dev/null +++ b/pic/data432.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e3581078fb827397c5ccd96870e82732da872b928d2d3af8a0ac777f30b6dce +size 2167689 diff --git a/pic/data433.png b/pic/data433.png new file mode 100644 index 0000000000000000000000000000000000000000..1342021c0c6797a7b241226b7d047464feac8cac --- /dev/null +++ b/pic/data433.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2fd1ab51f0feb1014dbdaf1f508de7f0812eadae795c1330d98702e94c7bedc +size 2085987 diff --git a/pic/data434.png b/pic/data434.png new file mode 100644 index 0000000000000000000000000000000000000000..4bfeaf4f833f0b6f813987032d2aaeb2e88055ea --- /dev/null +++ b/pic/data434.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d153946156f27001249b4ad1701a32c1086b5d234dea20002e0cfaa6ff6221b1 +size 1280264 diff --git a/pic/data435.png b/pic/data435.png new file mode 100644 index 0000000000000000000000000000000000000000..b480987dff9e3bb5779ca4abb5fdf22e60aa2900 --- /dev/null +++ b/pic/data435.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f110e04ebe02e94eaa554e993b576ef685f69e11c9a94881226872cafe31ba41 +size 2462903 diff --git a/pic/data436.png b/pic/data436.png new file mode 100644 index 0000000000000000000000000000000000000000..5ac25b08a64a5690e6f9d0df7c77a4f164554936 --- /dev/null +++ b/pic/data436.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b15e8b2db4bfb64a1cc78c8846e7e23045ffa8444185a4eddc7ea2a0870649 +size 2219132 diff --git a/pic/data437.png b/pic/data437.png new file mode 100644 index 0000000000000000000000000000000000000000..89024c278de77443a5fc3954206946768ef00bf8 --- /dev/null +++ b/pic/data437.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351d2daffd7fccd6fdcfa308535b93f5b4b47dc876d36a5b914e186c2df54039 +size 2325608 diff --git a/pic/data438.png b/pic/data438.png new file mode 100644 index 0000000000000000000000000000000000000000..d23849ef39cf465009ec43870b3f0512ad756cd5 --- /dev/null +++ b/pic/data438.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82be83fdfd00cc6f03cf3ffcb304e0375a7aca287551b49c9c7acedf579814d7 +size 2235941 diff --git a/pic/data439.png b/pic/data439.png new file mode 100644 index 0000000000000000000000000000000000000000..24f029e8ba783983be286cbf3761d4ae4d24e514 --- /dev/null +++ b/pic/data439.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f959fc2ed8981a42e25f85579b1600a4b7832166daa6807f86f5b08bb5d87f6d +size 2559856 diff --git a/pic/data44.png b/pic/data44.png new file mode 100644 index 0000000000000000000000000000000000000000..e3790d8a071c7b09a0e57c7bfcca67bbf2291cbb --- /dev/null +++ b/pic/data44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef9ee55f7829508715c0c4d4de9c07ef4631cd3410e3f8de10bfbc70dd27d1d3 +size 2298494 diff --git a/pic/data440.png b/pic/data440.png new file mode 100644 index 0000000000000000000000000000000000000000..48bd01a77424310c327841c6a0b765f3bcdcb814 --- /dev/null +++ b/pic/data440.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26b582d74ebf2c980bb4dcf07d7f3302901dc8047b68ae6cacfa23324d25ca06 +size 1285566 diff --git a/pic/data441.png b/pic/data441.png new file mode 100644 index 0000000000000000000000000000000000000000..d45d2f573786b73de5e162d43dab27d787edfc5f --- /dev/null +++ b/pic/data441.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7f31b88c3f16e29a3c02c05228b9a9fd3a9c6647549b6b04523d33ccdbd9c0 +size 2446339 diff --git a/pic/data442.png b/pic/data442.png new file mode 100644 index 0000000000000000000000000000000000000000..c4008e4402cc26ef4f43a117a5a5f81715753c92 --- /dev/null +++ b/pic/data442.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d853d4ba56629464273c6f8bcd5a118ffb5284638b47a4d5de33f0586d0761e4 +size 1755465 diff --git a/pic/data443.png b/pic/data443.png new file mode 100644 index 0000000000000000000000000000000000000000..8ef5f95890ca8883501b411d65f0fa2c40c28ca0 --- /dev/null +++ b/pic/data443.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2679b377f49371394a8c4705c4fd5f88c53cd02c7560f183d4cb9c93497de19b +size 2405850 diff --git a/pic/data444.png b/pic/data444.png new file mode 100644 index 0000000000000000000000000000000000000000..7688b35195abd0999a69d2d793c80a7ad8eafcf4 --- /dev/null +++ b/pic/data444.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d52781cdbf4f8a8282f0e88471bcc3740b5d79887e2dc2b50b0dc8a1f77215 +size 2501449 diff --git a/pic/data445.png b/pic/data445.png new file mode 100644 index 0000000000000000000000000000000000000000..f28f80ee4f73901b777ed8548fa9aee235bdf89c --- /dev/null +++ b/pic/data445.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c39c9845b08607fe8f7a19e3daf35fe528789a326c98045fc21251f2aae85ad +size 203669 diff --git a/pic/data446.png b/pic/data446.png new file mode 100644 index 0000000000000000000000000000000000000000..bb7f61a3b9c585103e2bcb6590aea68cba0a3ea0 --- /dev/null +++ b/pic/data446.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaa29cfd3cea8739037918ac1fa285d6ae6237a5166cae596cd27b3c00fbf3be +size 1041438 diff --git a/pic/data447.png b/pic/data447.png new file mode 100644 index 0000000000000000000000000000000000000000..c0ba12820195187f713d07c3d9df2b8825eb2f0e --- /dev/null +++ b/pic/data447.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c73687416176b8eac8209f2aaec5c058df6cd879ccbf5f0702546b565a31d9 +size 2222264 diff --git a/pic/data448.png b/pic/data448.png new file mode 100644 index 0000000000000000000000000000000000000000..96aa13a0db100c250975ca7a9cbc7bca27af6443 --- /dev/null +++ b/pic/data448.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a4e498d45c62735652e720869aa1751fbf2764c5adf1b16bee4d70b255438d +size 2648683 diff --git a/pic/data449.png b/pic/data449.png new file mode 100644 index 0000000000000000000000000000000000000000..2ddbf2318008ceead0d52a62e1a58a701e4926bb --- /dev/null +++ b/pic/data449.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910997d60df7d46058a1d54a2dd8c5888d8b9b4ea77766c3031984cc7946274c +size 2408105 diff --git a/pic/data45.png b/pic/data45.png new file mode 100644 index 0000000000000000000000000000000000000000..14b99d5863a68b987787402d0e22a8112a9c5786 --- /dev/null +++ b/pic/data45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6d9d8108dfa9f0c808903767a641850ad51077654046b596faebc78c5cbbf9 +size 2367150 diff --git a/pic/data450.png b/pic/data450.png new file mode 100644 index 0000000000000000000000000000000000000000..4e95609345d5f6021098196bed5870f320a89083 --- /dev/null +++ b/pic/data450.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3002cbdf80dad64be79487134dc7cc5fbae074403bd1d69bf0eea5c0b49ce3c +size 1919078 diff --git a/pic/data451.png b/pic/data451.png new file mode 100644 index 0000000000000000000000000000000000000000..0a46b61e5fcf9671734ba76817bd12a4b0e99034 --- /dev/null +++ b/pic/data451.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:951a97be388e8062edfe8027028d47cbc13badd9d75f7ba3323d1cd51718d514 +size 2351868 diff --git a/pic/data452.png b/pic/data452.png new file mode 100644 index 0000000000000000000000000000000000000000..da395e413e6780f1c81874d8fde5ad240e59dc1a --- /dev/null +++ b/pic/data452.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:770ca149597d48d564d18ec394b8db03ab9f17e27396a2dcf9af82072488ae80 +size 2088843 diff --git a/pic/data453.png b/pic/data453.png new file mode 100644 index 0000000000000000000000000000000000000000..3c0ed6ed3ebc855388a74ca420c765dfb4da7f23 --- /dev/null +++ b/pic/data453.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af6c51135341cc93c737848804a018621db447b0cc338b8c31b031ed41e9379 +size 1315622 diff --git a/pic/data454.png b/pic/data454.png new file mode 100644 index 0000000000000000000000000000000000000000..0231a75624e6221b497537c18bcd8dc8df5e82fb --- /dev/null +++ b/pic/data454.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed67086a8ba04ddbb16b3b34dbedcca9005ef21cf24fa0321c1afb06d396b62a +size 2205115 diff --git a/pic/data455.png b/pic/data455.png new file mode 100644 index 0000000000000000000000000000000000000000..b7acf759ef2a64a47c9cc3f72a5a05867c32ef0b --- /dev/null +++ b/pic/data455.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5006fe8b55b37add60e14e5bc536bcc04e8a238de2625be176f718ba7d7f4854 +size 1138135 diff --git a/pic/data456.png b/pic/data456.png new file mode 100644 index 0000000000000000000000000000000000000000..3c4b1431ef410ff9b1333c8d4cb1c16cf8af085d --- /dev/null +++ b/pic/data456.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd05941c1dee560008993897db8b5bd4b5f7ecc52c238aaf51432142a27127dd +size 2118702 diff --git a/pic/data457.png b/pic/data457.png new file mode 100644 index 0000000000000000000000000000000000000000..b84d52ad9173225b5541954e788b3cdcaa7f711e --- /dev/null +++ b/pic/data457.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c1f1c8dd941c23376551cc7551c86bb1d578169161834fc0e6eeb1dd1785fe +size 2152599 diff --git a/pic/data458.png b/pic/data458.png new file mode 100644 index 0000000000000000000000000000000000000000..0260f20362796d6595fdfda1fdb86b4a3a1c8c9d --- /dev/null +++ b/pic/data458.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc876eb7943858ba498b08ea5a742aa51959dd03d6e09130f3ebfae76e69437 +size 1146637 diff --git a/pic/data459.png b/pic/data459.png new file mode 100644 index 0000000000000000000000000000000000000000..412550deb7c873863451c9ad531a20be2a9545bc --- /dev/null +++ b/pic/data459.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:711813196821634eb6338098cce78db45d26ca0c0423d82b9532fcb1fddecac6 +size 1056175 diff --git a/pic/data46.png b/pic/data46.png new file mode 100644 index 0000000000000000000000000000000000000000..a4ccfa660e94f9826b48a55c1374be38b8f1968f --- /dev/null +++ b/pic/data46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a7d51f176be54f76209d914af118b05186974cb2308050e07ccbc7a1c89391 +size 124810 diff --git a/pic/data460.png b/pic/data460.png new file mode 100644 index 0000000000000000000000000000000000000000..7b05b92f4c1b518aba19f3bc29d885396433aac4 --- /dev/null +++ b/pic/data460.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ded4b026dcbf4550ea74d6d42027934165bfca4ad929c1567600e2a89e70709 +size 1257905 diff --git a/pic/data461.png b/pic/data461.png new file mode 100644 index 0000000000000000000000000000000000000000..54f6346bf45e96c7cc6c011c5642733d89791a4e --- /dev/null +++ b/pic/data461.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97a9eae91054ffe8fe04234c8d2d59e6406d09715fc5d0f4a1918d4d63cbc723 +size 1152267 diff --git a/pic/data462.png b/pic/data462.png new file mode 100644 index 0000000000000000000000000000000000000000..9ac85bc1b9c396e38c87b66200bb0511fedcabd9 --- /dev/null +++ b/pic/data462.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cb43803c7771190066a95a0e85191baa21d72194cfb191401079758e2390da8 +size 1310910 diff --git a/pic/data463.png b/pic/data463.png new file mode 100644 index 0000000000000000000000000000000000000000..15f63bba4bc6e16f01d4a137f2a07e7c2c16ad79 --- /dev/null +++ b/pic/data463.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddad7ecf13b7be579f406ee3282f35f85da7bd335122e5b7090cf266b1a7ea52 +size 2254723 diff --git a/pic/data464.png b/pic/data464.png new file mode 100644 index 0000000000000000000000000000000000000000..b815d7103290abad15ec8693ac296fd40805d47e --- /dev/null +++ b/pic/data464.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba8a816419f95946bad35676f15212f62f7ea078c48cbec658d32c1652f2a760 +size 1155979 diff --git a/pic/data465.png b/pic/data465.png new file mode 100644 index 0000000000000000000000000000000000000000..5b2446fcac24f5493e80a50b35b4e3c6f90a1851 --- /dev/null +++ b/pic/data465.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec721f10ec1787173f2e9670289c2d31ff1bfe272d4824d4301fd3df5df0c77a +size 1030436 diff --git a/pic/data466.png b/pic/data466.png new file mode 100644 index 0000000000000000000000000000000000000000..395733b0cae203fc3a592a9047d08dd299b22d5d --- /dev/null +++ b/pic/data466.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff569c9f9e24b256a4c63d844c8572e8f963543696c0e3b857bf4c058e080629 +size 2436824 diff --git a/pic/data467.png b/pic/data467.png new file mode 100644 index 0000000000000000000000000000000000000000..6d6d325a7fdef625f55f8f9cd4c91a2711b522ad --- /dev/null +++ b/pic/data467.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5288ab19a4cec7f141a6d553dbbc04ee486e0b5967e21d04787948b2226ef243 +size 186513 diff --git a/pic/data468.png b/pic/data468.png new file mode 100644 index 0000000000000000000000000000000000000000..de33545e7d403881895a9b62e6fda439507fbaa5 --- /dev/null +++ b/pic/data468.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aae66f802b3a2623450034471055bcf5b0292aa3484988ceabc966c0b438b83 +size 2650619 diff --git a/pic/data469.png b/pic/data469.png new file mode 100644 index 0000000000000000000000000000000000000000..6e252387ac83b18e18f011536093b1eff69b2333 --- /dev/null +++ b/pic/data469.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4bb4c365b41047f17d4e01067b58cb49b8dd418536e6a9a0aa8db1455a8a161 +size 1798448 diff --git a/pic/data47.png b/pic/data47.png new file mode 100644 index 0000000000000000000000000000000000000000..9ba0cfd1c9e6e0b97559da68eaa389a5859567fa --- /dev/null +++ b/pic/data47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e6144a9aad4b9dba7add5e0ea199260971afb5ee0242ae084fab42fe82fb78c +size 1337868 diff --git a/pic/data470.png b/pic/data470.png new file mode 100644 index 0000000000000000000000000000000000000000..f80f79709765549bc177290e63062fd30496fade --- /dev/null +++ b/pic/data470.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf3925862b34f0d3b41f02b7773018e9216f2b937a54de74fa380691b0a3318 +size 1565389 diff --git a/pic/data471.png b/pic/data471.png new file mode 100644 index 0000000000000000000000000000000000000000..d121314a88e800a98d73dcc533148b5238129bf1 --- /dev/null +++ b/pic/data471.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60c591f2950ba488dbfb0f0e4a0327dfa21c7fd337cff50f4f2e3068aa1f45e +size 1137000 diff --git a/pic/data472.png b/pic/data472.png new file mode 100644 index 0000000000000000000000000000000000000000..e5fb63f0c51cae2d72bffa41dfa46a6cb4326663 --- /dev/null +++ b/pic/data472.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acec491a13a7243e8e948eca5c016c379b3d01608004e15c1075510a66a37bda +size 2395107 diff --git a/pic/data473.png b/pic/data473.png new file mode 100644 index 0000000000000000000000000000000000000000..0cc62ee7f846ab3fdff8799c10b90de4b8a126a2 --- /dev/null +++ b/pic/data473.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aaa727a4e71d830fa179a86d11087b178dc2cae4978fe68ad0cb8c28efc36c7 +size 1905475 diff --git a/pic/data474.png b/pic/data474.png new file mode 100644 index 0000000000000000000000000000000000000000..27ecb8bbdf283d78b07a75eb03e88eed50d9f385 --- /dev/null +++ b/pic/data474.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46746c7418a6965aa62a0fb3071c4fd13d309e6b30e4f0293c54d55b00dea849 +size 202379 diff --git a/pic/data475.png b/pic/data475.png new file mode 100644 index 0000000000000000000000000000000000000000..22de1a9b27ff2a22042bdadb267187586004fecd --- /dev/null +++ b/pic/data475.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf8657d2e206f59540dd8f251918b7a00674784b7eeb56c3988a8ec0f594336 +size 2001003 diff --git a/pic/data476.png b/pic/data476.png new file mode 100644 index 0000000000000000000000000000000000000000..788440be7589497586689971176f5e9eb08c7944 --- /dev/null +++ b/pic/data476.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:090c505f633ef16318402eef1b67ecf4de12fee6554a998f26e46d0f7b3eb033 +size 1226911 diff --git a/pic/data477.png b/pic/data477.png new file mode 100644 index 0000000000000000000000000000000000000000..6112ea92f57e9f0fdb041a4633d8c5c04ce82076 --- /dev/null +++ b/pic/data477.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc36c5fbeddaa2cc07cc571aced6a5b985abe778005b94e06376fff7d5861fe +size 1165352 diff --git a/pic/data478.png b/pic/data478.png new file mode 100644 index 0000000000000000000000000000000000000000..96ae4ee49a9d23a3c3ab0d4162620beb15ca55da --- /dev/null +++ b/pic/data478.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6abce2509ae141d379d9db2857c9c0277180119b621397c0cd256aa97afd557 +size 2187107 diff --git a/pic/data479.png b/pic/data479.png new file mode 100644 index 0000000000000000000000000000000000000000..14b3f041f85a6f1e59817c49e785d694c04584c7 --- /dev/null +++ b/pic/data479.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c499f5c8c28a349f2edb8991ffaa40b0685866f963ba3f3867f0339ade897e9 +size 2439871 diff --git a/pic/data48.png b/pic/data48.png new file mode 100644 index 0000000000000000000000000000000000000000..41406b03537203f5d6fb8c43cbd7930fbfcae9e9 --- /dev/null +++ b/pic/data48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c33ece0efbad123e35aa65cc8d5b2069c4dc28bf7620c13735718c1d8c41f58a +size 249185 diff --git a/pic/data480.png b/pic/data480.png new file mode 100644 index 0000000000000000000000000000000000000000..cf688cf85e33b828d948c68190ef95624c8b8f5d --- /dev/null +++ b/pic/data480.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:028895cd726f663cc7c4a2408f4033744076f34ad5df12290560946787d3cba7 +size 2043279 diff --git a/pic/data481.png b/pic/data481.png new file mode 100644 index 0000000000000000000000000000000000000000..e58ae446b66650bb354a3dcff7acf8f074557ae9 --- /dev/null +++ b/pic/data481.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f08fef0975f27dc13739c40263c4ea853d965aac32e6d8492897b3aca5bba4c +size 1866537 diff --git a/pic/data482.png b/pic/data482.png new file mode 100644 index 0000000000000000000000000000000000000000..1c0cf2930962b4935ffd5e68f8f8d43a0e81629f --- /dev/null +++ b/pic/data482.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8211d419318a49cbfa758a3fcf607c6d5cc86ef39e785e9d0bc9e877f42ed63a +size 2424969 diff --git a/pic/data483.png b/pic/data483.png new file mode 100644 index 0000000000000000000000000000000000000000..def9acbe1a15f1734bd0dd25ea065bf46cd68b78 --- /dev/null +++ b/pic/data483.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b93391f20990496d55769f89bbcfab25b984afbc3e36d8eb53fd693cc0915d +size 2033706 diff --git a/pic/data484.png b/pic/data484.png new file mode 100644 index 0000000000000000000000000000000000000000..14e4b17d525c1d8a51c13714bfffb44d21799871 --- /dev/null +++ b/pic/data484.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dba948da56c70c15252fa03a2403a08b7897604d3de83ba45a967ea9b68caf37 +size 1127139 diff --git a/pic/data485.png b/pic/data485.png new file mode 100644 index 0000000000000000000000000000000000000000..e8cc05d0365645ca6d9df2d1b0b65aad1dd16ad9 --- /dev/null +++ b/pic/data485.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71b83d0dadce6d52c710e2361abddae91fda4466e1dbdfdac1d9bc7e3674e02 +size 182630 diff --git a/pic/data486.png b/pic/data486.png new file mode 100644 index 0000000000000000000000000000000000000000..c75902bc65c7d634e3122c591fefc56685873cd1 --- /dev/null +++ b/pic/data486.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91964dacf3c69dfc6927c32fc56bf91a3a18e9d98dca4790baf9e47180e43c65 +size 1849179 diff --git a/pic/data487.png b/pic/data487.png new file mode 100644 index 0000000000000000000000000000000000000000..c30f41ac0857865b8ac1fc4c601a3f3a581ace17 --- /dev/null +++ b/pic/data487.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c12d6c4afdc4932c25d12d9306228bf2d6fe7564dd4e90859bb804a9b54ff0e +size 1978619 diff --git a/pic/data488.png b/pic/data488.png new file mode 100644 index 0000000000000000000000000000000000000000..c82bbc6954bf5ee4ce91eedea87557ce8b92ef45 --- /dev/null +++ b/pic/data488.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d3db179fd09d019806f28e3cbeaf4e242b3cff7756feac89e8ffd4981b9dd6 +size 1895708 diff --git a/pic/data489.png b/pic/data489.png new file mode 100644 index 0000000000000000000000000000000000000000..747e84df84eec0e823121246a662a1ffd26f50d1 --- /dev/null +++ b/pic/data489.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b417ce1ff40527c003024246429de920075abd0ddbfbe4415eaca0dfe2a06838 +size 2266613 diff --git a/pic/data49.png b/pic/data49.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d7e321a8ee193822f09d9e6d71cd1823f2430f --- /dev/null +++ b/pic/data49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678d790a5d4b7494b1e5522229a70994b0ea17a13a9d5de5126cfcb0b967b753 +size 1398531 diff --git a/pic/data490.png b/pic/data490.png new file mode 100644 index 0000000000000000000000000000000000000000..010fdb8961812980e48b02e2f5784d54ee961dd8 --- /dev/null +++ b/pic/data490.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cbcf46012dccc7c8dc3f688937c8b6db2a0d331436597baea437920c14552a7 +size 2027893 diff --git a/pic/data491.png b/pic/data491.png new file mode 100644 index 0000000000000000000000000000000000000000..684ab5482a5726ef0885cf506fd1714b34ca7b37 --- /dev/null +++ b/pic/data491.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc800480dc0417ebd89af466f72e8addb7bdc166b567557c00ec7d87e105f00 +size 1676185 diff --git a/pic/data492.png b/pic/data492.png new file mode 100644 index 0000000000000000000000000000000000000000..75e9d74324e5f919aee7608506a7e03e7c8356ac --- /dev/null +++ b/pic/data492.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9c207f87ff763812278a45a1aa0a9a7222ca8803f458e7d273bbb43c273a7fe +size 2059871 diff --git a/pic/data493.png b/pic/data493.png new file mode 100644 index 0000000000000000000000000000000000000000..c37c6daea8b1223d58cc3304b371323c92f272ce --- /dev/null +++ b/pic/data493.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb95c6bdbc3b099b6b2cc5ab67912049a741bd3db0064f9e5db3ec4751007de5 +size 2923150 diff --git a/pic/data494.png b/pic/data494.png new file mode 100644 index 0000000000000000000000000000000000000000..9797157c50801f96c7d3ecb3fc4bb041a51c1440 --- /dev/null +++ b/pic/data494.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c0b9d5ffd0d4d74287acca14cdf7059acb90fc3824e0a6f5b38a13d2819cc6 +size 2923150 diff --git a/pic/data495.png b/pic/data495.png new file mode 100644 index 0000000000000000000000000000000000000000..db73d9266dfcd22994f723ad25125b8e506168c2 --- /dev/null +++ b/pic/data495.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc6237cf5b1509daa71143f5c71c8d4b42ec542304b4cc5ea2310a34bc331e0 +size 2927559 diff --git a/pic/data496.png b/pic/data496.png new file mode 100644 index 0000000000000000000000000000000000000000..da2470eddef3e03dc1744b7d0000e17bd04e06c4 --- /dev/null +++ b/pic/data496.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c097ce8d501afafe8a2249da0b26b605cafc80ae662f1f6bb44c24a9f7697b36 +size 59135 diff --git a/pic/data497.png b/pic/data497.png new file mode 100644 index 0000000000000000000000000000000000000000..feca411522a5631d53be345a0a7feeac9d5c943e --- /dev/null +++ b/pic/data497.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4347253bc725861a2d8900f290adf000f7a2ec414d44e60894a4f70d61326a27 +size 2918734 diff --git a/pic/data498.png b/pic/data498.png new file mode 100644 index 0000000000000000000000000000000000000000..46274e1fa427e6c35d4df90507dd28dd9154f662 --- /dev/null +++ b/pic/data498.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f6d3ae8fe4d2bb41166b0a9a451e8bf4eece233aab786bea72a0a63e832a2e +size 1144996 diff --git a/pic/data499.png b/pic/data499.png new file mode 100644 index 0000000000000000000000000000000000000000..4fa4926c770bc79a5bc35bde6782860ed53c1b7c --- /dev/null +++ b/pic/data499.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa34c1f7fdfabe2115bac8afe935a62f10d58428d3d01e8efdfe80047a058d30 +size 2927559 diff --git a/pic/data5.png b/pic/data5.png new file mode 100644 index 0000000000000000000000000000000000000000..4817209608438c21d3100074d84609b4b5b3cdd1 --- /dev/null +++ b/pic/data5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b808e55eea2b00a7275d62197f4d90711e73c33af05d717a9e7fee7e4e6697d2 +size 1739341 diff --git a/pic/data50.png b/pic/data50.png new file mode 100644 index 0000000000000000000000000000000000000000..dec19a472cb752a5e15edc16da0853cb59deb54d --- /dev/null +++ b/pic/data50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d662e9ea70ab4d5626dbb9515f69bf709e635d4279ef24ddd7257a82d25f8a31 +size 2407943 diff --git a/pic/data500.png b/pic/data500.png new file mode 100644 index 0000000000000000000000000000000000000000..be5a291e64dab700d24a4c1e76a45f781a9b6471 --- /dev/null +++ b/pic/data500.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29994f592e4bc0de347cd94b7c1c709f2d4e4f8a3021c3329539da89df69cb05 +size 2914330 diff --git a/pic/data501.png b/pic/data501.png new file mode 100644 index 0000000000000000000000000000000000000000..f8e3f3bfc76bc1ccd2f6a371d55740c528c2421c --- /dev/null +++ b/pic/data501.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf57506f3c2a9becad2f59277c692cbd93a48dfdd9ef995d2331add4b2c445d0 +size 2509954 diff --git a/pic/data502.png b/pic/data502.png new file mode 100644 index 0000000000000000000000000000000000000000..3750152e83dedc41c9fdd5f7d9ea51d7f53038da --- /dev/null +++ b/pic/data502.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45712223f77fdccef7bf8ab5dd1346e640ad28e3042a321c26593cffd7a393a9 +size 2914330 diff --git a/pic/data503.png b/pic/data503.png new file mode 100644 index 0000000000000000000000000000000000000000..0633f7debaa35df49ee0bc0fa1997a31a73e43d3 --- /dev/null +++ b/pic/data503.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd8e55d14c4f981ecc076a2ab2d40b8fb718e60351ff78cae2f49c0e07210b8 +size 225177 diff --git a/pic/data504.png b/pic/data504.png new file mode 100644 index 0000000000000000000000000000000000000000..4c993398d2d56716b7a8edfe25db33bfd05f947c --- /dev/null +++ b/pic/data504.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad3d7a6f6087f446fb9a22c458df44b00d56d84da34bf0db7af179f4041f63b +size 2448455 diff --git a/pic/data505.png b/pic/data505.png new file mode 100644 index 0000000000000000000000000000000000000000..fd93b99c184460ca0e6a0b7994a7a5ae43240e9b --- /dev/null +++ b/pic/data505.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b23fc6732da431e691d1b2a6ac3531295f97706a9dda6de42e131c84e38a6eb2 +size 1994995 diff --git a/pic/data506.png b/pic/data506.png new file mode 100644 index 0000000000000000000000000000000000000000..474450ab2cc16813fccc10757f1ffd3cf9fe6089 --- /dev/null +++ b/pic/data506.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6e488e7672d9ed1b0db1dc0851905b1fdb39adc26d71feb818ffecaa05509dd +size 2425698 diff --git a/pic/data507.png b/pic/data507.png new file mode 100644 index 0000000000000000000000000000000000000000..1f20839c47e3fb0e85810aa862bb0c62951deb7a --- /dev/null +++ b/pic/data507.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b8513c0c26a73c31f9619655147235a697ff919dc6e772e0ec943a908399c80 +size 72608 diff --git a/pic/data508.png b/pic/data508.png new file mode 100644 index 0000000000000000000000000000000000000000..db8e70c6a600aee092074233b5dc298285520c7b --- /dev/null +++ b/pic/data508.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d3cb4d613c23193abbebbc6f7892efa25bfb28c100b4bd495f748ff2cfe75c +size 2322955 diff --git a/pic/data509.png b/pic/data509.png new file mode 100644 index 0000000000000000000000000000000000000000..f99bd260d668bb8d45992b364cfd463294a0c458 --- /dev/null +++ b/pic/data509.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71292b60dccaee37ccd21568c5386e550faf29b3a984e49f308ffd1b827616a1 +size 2346885 diff --git a/pic/data51.png b/pic/data51.png new file mode 100644 index 0000000000000000000000000000000000000000..4a2f967d66771f42b75c5ce53e2f2b3f54da0520 --- /dev/null +++ b/pic/data51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d17c3dd7665093ed452c3fff8c98fbae489a02d6d9df8c77bd572544f67ebd9d +size 2482876 diff --git a/pic/data510.png b/pic/data510.png new file mode 100644 index 0000000000000000000000000000000000000000..10647f9333a1c32197305fad505d84b7d0f07e90 --- /dev/null +++ b/pic/data510.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c420bf27dc9ac540fc99b23ae371fde79b56dfc3a08d53eae8901952b5a3533 +size 2152123 diff --git a/pic/data511.png b/pic/data511.png new file mode 100644 index 0000000000000000000000000000000000000000..393a0f47468be09ca526c0aab6a15a39ee4de021 --- /dev/null +++ b/pic/data511.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9702e4d20facdf957c79550b40c5c2ad78b728c67cb15381338e4048ed9757c0 +size 1117453 diff --git a/pic/data512.png b/pic/data512.png new file mode 100644 index 0000000000000000000000000000000000000000..efaa0317eb422fd2966a9777d42a0eeaadf874af --- /dev/null +++ b/pic/data512.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb4a8752e784513f2707e657e81f19b73008a136214b56c0eebbeabec33c51b9 +size 2401070 diff --git a/pic/data513.png b/pic/data513.png new file mode 100644 index 0000000000000000000000000000000000000000..490f928a78afaf24cd66d5d4411a392c894f163f --- /dev/null +++ b/pic/data513.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:190fbaf94bfdc4b4911ccb32f5c84897531ef7d7a261e93ba78cf6d3bc2d84f9 +size 2224650 diff --git a/pic/data514.png b/pic/data514.png new file mode 100644 index 0000000000000000000000000000000000000000..41ce8237d00321c1a75cf9c2e3691cbf2056d483 --- /dev/null +++ b/pic/data514.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0b3e408de2db48e75df1fc818d56cc61d3fe765784b7ce08ef631c32e4315e +size 2767825 diff --git a/pic/data515.png b/pic/data515.png new file mode 100644 index 0000000000000000000000000000000000000000..9cb630c22980c987982ca0943e22d97ca2a14da6 --- /dev/null +++ b/pic/data515.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5bc6cafaffdba3e0504d85e2390cfcb98da97739ed12e7a8d13cd4637c0a6ac +size 227079 diff --git a/pic/data516.png b/pic/data516.png new file mode 100644 index 0000000000000000000000000000000000000000..dce9843dcc809526ba15295ec3613ae8f31d9989 --- /dev/null +++ b/pic/data516.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:967841e9dce00c22fbd45ebd49541ac97c61a0ebbd5de390e4dc34c76e09308c +size 2729254 diff --git a/pic/data517.png b/pic/data517.png new file mode 100644 index 0000000000000000000000000000000000000000..31a6c3efd7a3456360ce0e415007c0cec30ec430 --- /dev/null +++ b/pic/data517.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bcd0ad1beb6610c29ce21018f3cd6f7d971918ec4b1b5f5ee5148edd546d0e3 +size 2980319 diff --git a/pic/data518.png b/pic/data518.png new file mode 100644 index 0000000000000000000000000000000000000000..b8e917eb4479e1d153bb599df12cdc91a4694cb4 --- /dev/null +++ b/pic/data518.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a1c15181fa8b8b4ab4fc391c48918d3293e9e4d4a371b76fa5a19f77e7acbc5 +size 73045 diff --git a/pic/data519.png b/pic/data519.png new file mode 100644 index 0000000000000000000000000000000000000000..ca91fc4cb5d8332b5e38256be57b4171d33bd4c9 --- /dev/null +++ b/pic/data519.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f3fd7f535d0b8b8f92dde091d7f3c151f54d2a33945391d6053b916f890c9d3 +size 114327 diff --git a/pic/data52.png b/pic/data52.png new file mode 100644 index 0000000000000000000000000000000000000000..0baa12f3d08e8d675008a99547af0d25646d8bac --- /dev/null +++ b/pic/data52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b0dfc9adee6ea9d5a53e61dc0bdd3b61a6104366b43edcc37f92f0d4ed1b5f +size 1821589 diff --git a/pic/data520.png b/pic/data520.png new file mode 100644 index 0000000000000000000000000000000000000000..ed62f768f9905093d71093a7389b59a43d253fae --- /dev/null +++ b/pic/data520.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9ecfa5ae8df5cd1ef895b9bcef17bf290a48e9dc67f4244c40a8c0566acd8a +size 184781 diff --git a/pic/data521.png b/pic/data521.png new file mode 100644 index 0000000000000000000000000000000000000000..287aa45c665185e42449277cfe5475dade58745d --- /dev/null +++ b/pic/data521.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9600007944def40942489becb9ad16609f7c59f9342e2d58cda394561aa531 +size 152011 diff --git a/pic/data522.png b/pic/data522.png new file mode 100644 index 0000000000000000000000000000000000000000..cece1b8db54c8cfab7da53bdf99ae54ba33b11b5 --- /dev/null +++ b/pic/data522.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0cc1e569ffa6010773a7c607755658ed1ce2ca6cdf4763fb0ae444e067b1a46 +size 174951 diff --git a/pic/data523.png b/pic/data523.png new file mode 100644 index 0000000000000000000000000000000000000000..b0f67e1c5d9fa1a7e805a5aedfddf85b3fcceaa1 --- /dev/null +++ b/pic/data523.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4a0ae3d6a3c21d651bac5a7eb96e343f1d2900313258aa7eecdab3018523ca1 +size 152877 diff --git a/pic/data524.png b/pic/data524.png new file mode 100644 index 0000000000000000000000000000000000000000..65c734418c2aab64225d007839c1fa8f93674024 --- /dev/null +++ b/pic/data524.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985bbba63e36db7209ccbd48386b94965cea1a5623af0e183864bbbb644a804f +size 133226 diff --git a/pic/data525.png b/pic/data525.png new file mode 100644 index 0000000000000000000000000000000000000000..a20df6cc2164606932f995cb89aa81fbd37f3727 --- /dev/null +++ b/pic/data525.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fedd57bad424600146c379405d3f60ae79b24c860b189a7ecb68743cf5d312 +size 80161 diff --git a/pic/data526.png b/pic/data526.png new file mode 100644 index 0000000000000000000000000000000000000000..4a20841bddbfc359defd1d63438aca0f9152dfb1 --- /dev/null +++ b/pic/data526.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f7c30be407ee8e8f5ead167c59855b01d44829cd10ee02354644875303d52d +size 194799 diff --git a/pic/data527.png b/pic/data527.png new file mode 100644 index 0000000000000000000000000000000000000000..6dfd038536b238fd294e345a4bfb7beff40d5dc0 --- /dev/null +++ b/pic/data527.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7fde6677d03713e00c51245c0e59569f6791e2c91b36036ae097efd5a0ca54 +size 59169 diff --git a/pic/data528.png b/pic/data528.png new file mode 100644 index 0000000000000000000000000000000000000000..ad9bc27a70d1ced67302531f19bd73c00c8c436a --- /dev/null +++ b/pic/data528.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d5be82b6fafc0496b8bb710250af10d84fbc3e858c04b890a002bd467a4be8 +size 61789 diff --git a/pic/data529.png b/pic/data529.png new file mode 100644 index 0000000000000000000000000000000000000000..ae1ecbdb631eb6b0b7791afbfe002b75cd0c90e7 --- /dev/null +++ b/pic/data529.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fed9327e6079e443e0cd248c084d2928c2011cef3207ecc28ce5d1344cdc8265 +size 198853 diff --git a/pic/data53.png b/pic/data53.png new file mode 100644 index 0000000000000000000000000000000000000000..f49c65f5d880a0c8a8423de77d981dc45337fed8 --- /dev/null +++ b/pic/data53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0485e90fd0e6323deef05c127f8c8d4665864af98424de2bae1e24b68d0cdca +size 2375409 diff --git a/pic/data530.png b/pic/data530.png new file mode 100644 index 0000000000000000000000000000000000000000..9c2aacaab2d306ecd91775a9411ca83a0f72a1f2 --- /dev/null +++ b/pic/data530.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93efffcdb0583a209bd41f1c22b6a5cd84201d037ecdb53d6621bfd80bbcdfb5 +size 156205 diff --git a/pic/data531.png b/pic/data531.png new file mode 100644 index 0000000000000000000000000000000000000000..2fbd1d7c86cb11765729ac2f56698fcd52beb1a2 --- /dev/null +++ b/pic/data531.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961ccbe1bc6616f71019c1088081d0260ac9dd9e5e0c8c74d5119ad513b07006 +size 270969 diff --git a/pic/data532.png b/pic/data532.png new file mode 100644 index 0000000000000000000000000000000000000000..59d5dfa57f5077d6b6729ffcc49dc2c11d374a59 --- /dev/null +++ b/pic/data532.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83f0ae37459b03857e4d740732d9623789ba087c555b35b8061269814ff84be +size 248456 diff --git a/pic/data533.png b/pic/data533.png new file mode 100644 index 0000000000000000000000000000000000000000..0633f7debaa35df49ee0bc0fa1997a31a73e43d3 --- /dev/null +++ b/pic/data533.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd8e55d14c4f981ecc076a2ab2d40b8fb718e60351ff78cae2f49c0e07210b8 +size 225177 diff --git a/pic/data534.png b/pic/data534.png new file mode 100644 index 0000000000000000000000000000000000000000..e46c8634191566f03f8cd73b68c55182a5742c0d --- /dev/null +++ b/pic/data534.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d535bdfe296c3f21014adce6fe3387cee990d1b659f6143f8eacf82aa04cb155 +size 147275 diff --git a/pic/data535.png b/pic/data535.png new file mode 100644 index 0000000000000000000000000000000000000000..efc67c3b4bf2a96dc06f11b7b8a10680664445a6 --- /dev/null +++ b/pic/data535.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbdf4348daa3da86505e59abf0d57b297fd1be8c978d961a03b254e744b856e +size 1868841 diff --git a/pic/data536.png b/pic/data536.png new file mode 100644 index 0000000000000000000000000000000000000000..c67b6841ff958c98e5e74eb1a290badbafca8679 --- /dev/null +++ b/pic/data536.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9da4e3c78f9774352fe3bff80405ea905c3a66ceca157ea8ad015f9316177df1 +size 1535365 diff --git a/pic/data537.png b/pic/data537.png new file mode 100644 index 0000000000000000000000000000000000000000..ad5c3fc8a9a40ec587e12d665ef95decea09f9ea --- /dev/null +++ b/pic/data537.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46fcaddf762bc29dac43697e8222d8eac04de22af5aa70a485066e4bc16ae50e +size 1688406 diff --git a/pic/data538.png b/pic/data538.png new file mode 100644 index 0000000000000000000000000000000000000000..5f3f924f7cfe17a85a0d6a4e86d92d0fb0eb65e3 --- /dev/null +++ b/pic/data538.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bfeb4908d8e75d93de4c482adac61bc6df6dd5b353a751a492bef25d7fd1acb +size 1608458 diff --git a/pic/data539.png b/pic/data539.png new file mode 100644 index 0000000000000000000000000000000000000000..689c51242ef05a78d1555f9b2adc99fd33ec2d74 --- /dev/null +++ b/pic/data539.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63799ccab9f1a8eaf876d756bc951141d0403beb1c83e591a5db2d97c69897c0 +size 1473260 diff --git a/pic/data54.png b/pic/data54.png new file mode 100644 index 0000000000000000000000000000000000000000..5fb0b537edd5a76217b36074ae1aeacdfaa93925 --- /dev/null +++ b/pic/data54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b15164995918b263a2a01f84a56d354c7d0431bae020189556151f9aed3d9e +size 2286788 diff --git a/pic/data540.png b/pic/data540.png new file mode 100644 index 0000000000000000000000000000000000000000..32b67c7291c29a92951cae33b82818101fd62fa3 --- /dev/null +++ b/pic/data540.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34cff4c3ffcd40a1c16ffe66bcb36814a39ec151741756c5f4b3da55222b0116 +size 1828022 diff --git a/pic/data541.png b/pic/data541.png new file mode 100644 index 0000000000000000000000000000000000000000..926cb9b977cb00f593681f3084974e70e918e1c1 --- /dev/null +++ b/pic/data541.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a31ce4906e2b173b2b833b3a9dd0883d5aadf464e09415e70292ba03b8126d4 +size 1250547 diff --git a/pic/data542.png b/pic/data542.png new file mode 100644 index 0000000000000000000000000000000000000000..f8b0dfbb56e1c67f8f6f95019d85d366b43bc32f --- /dev/null +++ b/pic/data542.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122e35b8528410012d114db5b73698bbc8ae4c8537b531c6e46f968fb925d585 +size 1366230 diff --git a/pic/data543.png b/pic/data543.png new file mode 100644 index 0000000000000000000000000000000000000000..4b9e38dafca3d49dc42226dd3f5222e9962052b7 --- /dev/null +++ b/pic/data543.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173a2fb88c9900fa3b7c61c2f8cbcc6d8a57547dcca8d6a79e010398852b1e7b +size 1114005 diff --git a/pic/data544.png b/pic/data544.png new file mode 100644 index 0000000000000000000000000000000000000000..fa153ff6918389ebcb1b663f1efc6167b3c6f8c1 --- /dev/null +++ b/pic/data544.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ada7e66c96507efbf574d24617277605c8807ff20fb16a6f834eebe609e62a2 +size 1205230 diff --git a/pic/data545.png b/pic/data545.png new file mode 100644 index 0000000000000000000000000000000000000000..44a531901a2249726856d1072ec4eeeb07f1f451 --- /dev/null +++ b/pic/data545.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c5b659c48f757c6b13ed3a71cd83a2e52c1b12c209bd4cc4087c6c4ae524c8 +size 1930193 diff --git a/pic/data546.png b/pic/data546.png new file mode 100644 index 0000000000000000000000000000000000000000..5a01659113a30890870723af6f9c2d665ed11235 --- /dev/null +++ b/pic/data546.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cac956b75ab29437b84fae7b71a889d5472f86718e6c96dad267b820dd8c8bc7 +size 2092384 diff --git a/pic/data547.png b/pic/data547.png new file mode 100644 index 0000000000000000000000000000000000000000..4ec4413c54fa2aab39aa0a4abb5fa985b953a6d4 --- /dev/null +++ b/pic/data547.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:738cf5a61b858d090dbf49bb5dd36ac56ead3f344289dd417af8bd58c8a9d85d +size 2161887 diff --git a/pic/data548.png b/pic/data548.png new file mode 100644 index 0000000000000000000000000000000000000000..7622b16a4632f745b4f6a7ed6e77e87ed6ed34d0 --- /dev/null +++ b/pic/data548.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1806d9f7a804186404a847918fed940511824c435b86cd3f67b14dff5d9330a5 +size 1945797 diff --git a/pic/data549.png b/pic/data549.png new file mode 100644 index 0000000000000000000000000000000000000000..2d583717ea073ad7961f854dda2733b2e19836cc --- /dev/null +++ b/pic/data549.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92cbaa9642498802a95230270d7c390c066ce8a29fbbb7188d36533647c0b9b +size 1767553 diff --git a/pic/data55.png b/pic/data55.png new file mode 100644 index 0000000000000000000000000000000000000000..3d279c52b7035613e5b2906873e859c6571038a7 --- /dev/null +++ b/pic/data55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:980aec78c4c4de6ba7e3f4fa8a911b66241afe953700e6b23b7f2f6f619587b1 +size 2213948 diff --git a/pic/data550.png b/pic/data550.png new file mode 100644 index 0000000000000000000000000000000000000000..67c93d00247120572e788e81bf7f8a461459ce0c --- /dev/null +++ b/pic/data550.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0030bd31c2927f573b7d54aed8fabf3c6db6b4f14e8623459f2c54cee569ff6b +size 1750513 diff --git a/pic/data56.png b/pic/data56.png new file mode 100644 index 0000000000000000000000000000000000000000..36d3da293b1cde3310624abc59d0029da4f94f80 --- /dev/null +++ b/pic/data56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9334c10ce95b5bee72b116acef5ea1f372da9cda3c2ebfc8a34918ab84ed2c +size 2083310 diff --git a/pic/data57.png b/pic/data57.png new file mode 100644 index 0000000000000000000000000000000000000000..7ac13b1ce178f30c609594e38eb91cb4b1a739e9 --- /dev/null +++ b/pic/data57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aba492309e6d512bba6a87aed9bd347003c3259ebbb19d2ee1bb857432c018f +size 149070 diff --git a/pic/data58.png b/pic/data58.png new file mode 100644 index 0000000000000000000000000000000000000000..036f513fd017c5e6810cdc75ec0ca79800092704 --- /dev/null +++ b/pic/data58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a1c14bfd377f6c3950a96a02d26b8a50b2e3d9ed606698554c06b3bff49da0f +size 1112704 diff --git a/pic/data59.png b/pic/data59.png new file mode 100644 index 0000000000000000000000000000000000000000..3adc4fd09269f519ee0f034206688f15599687da --- /dev/null +++ b/pic/data59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e6dab09ca041ca68517c8618ce6265ff5bc0be40a62ef5eadfaf88fac9e99a9 +size 1192075 diff --git a/pic/data6.png b/pic/data6.png new file mode 100644 index 0000000000000000000000000000000000000000..fe96a6238e9f0aa4c63c567b2cc2829d15ac4f40 --- /dev/null +++ b/pic/data6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101cd73feb45e9f401b6061e7fa6dcb70b60c0ceb39591aac268caf41dd53ec4 +size 117344 diff --git a/pic/data60.png b/pic/data60.png new file mode 100644 index 0000000000000000000000000000000000000000..b23e48d399be5d63c60eafef76f8bcfe12c1cbe5 --- /dev/null +++ b/pic/data60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf37f9d90391535f19c7d9899bb8a116e1ad97bae332b5c0724a1133b3061127 +size 1625083 diff --git a/pic/data61.png b/pic/data61.png new file mode 100644 index 0000000000000000000000000000000000000000..e683a6bdab5eb7e96a200d9f022620716aa88b24 --- /dev/null +++ b/pic/data61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16bc90862fa91fe2dbba4f5c671ba7e075358ddaa4a582de53c992aa12eba869 +size 221341 diff --git a/pic/data62.png b/pic/data62.png new file mode 100644 index 0000000000000000000000000000000000000000..9fa7a1a6dbebd4fd12a05a3d0f5c1c86443d9314 --- /dev/null +++ b/pic/data62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14147670899ff0849a77059bb4c5c61cdfd018717660a287e9c350de41efca26 +size 1130904 diff --git a/pic/data63.png b/pic/data63.png new file mode 100644 index 0000000000000000000000000000000000000000..d154c3efea980903649e17ad7ea1a347865df596 --- /dev/null +++ b/pic/data63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7213254f704a6f07c46cc4ef43e203c875e47f63a3173923a24851f3f0b9b487 +size 1221521 diff --git a/pic/data64.png b/pic/data64.png new file mode 100644 index 0000000000000000000000000000000000000000..2622587a91a8b61dd8daa43978d4e232acd51b1d --- /dev/null +++ b/pic/data64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a330548ffa9de544ac0c09d6261b88167f4b0dbb775d3123d31b18e18b1a3e25 +size 1455992 diff --git a/pic/data65.png b/pic/data65.png new file mode 100644 index 0000000000000000000000000000000000000000..60ca4df4149c0b1e5cc4b7f267c424b90d6ab5b3 --- /dev/null +++ b/pic/data65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d54206e5ca1b47ea62231e7358c2465f5541ac6f681b7667013cc3fc017946b +size 1262137 diff --git a/pic/data66.png b/pic/data66.png new file mode 100644 index 0000000000000000000000000000000000000000..ed63d70a6047112aea806d5aa55c554384c999fe --- /dev/null +++ b/pic/data66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3898089e3e7d5d678e5284b8606dcb636f3706dd5249d8627ed89ccb9951424 +size 1176141 diff --git a/pic/data67.png b/pic/data67.png new file mode 100644 index 0000000000000000000000000000000000000000..fbac2c8b13b3cc709736103b1114eb5dcea26cba --- /dev/null +++ b/pic/data67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e3b67fa3514b410f128b686ed77045d5acf0d6d75f1592c3c1382df403bafef +size 1239595 diff --git a/pic/data68.png b/pic/data68.png new file mode 100644 index 0000000000000000000000000000000000000000..04e2fceb9925cc0b360449ab95381e86a2dbd747 --- /dev/null +++ b/pic/data68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2828b504efb40174c04e71f1bc9c3fa425a0e5b75ef00fc8d0f38844e27785c9 +size 166251 diff --git a/pic/data69.png b/pic/data69.png new file mode 100644 index 0000000000000000000000000000000000000000..d945907c47e9080c5e4f3290049d8ef14fee5786 --- /dev/null +++ b/pic/data69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b80530907d74a6f91116ae40430166d6108d5b7b23e5cfc3e88e085d1d003fd2 +size 1852805 diff --git a/pic/data7.png b/pic/data7.png new file mode 100644 index 0000000000000000000000000000000000000000..125999888df1517f35642262a7eb7d0c4292e6c1 --- /dev/null +++ b/pic/data7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bb4a3658b2d9d3d12ee2020e3552b8e3e3ac992511532632aa881d2e7d863d1 +size 2885362 diff --git a/pic/data70.png b/pic/data70.png new file mode 100644 index 0000000000000000000000000000000000000000..ef9012e06fedfcdd329abd2de24d7b28f26eaf52 --- /dev/null +++ b/pic/data70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5930f7482335488dc5664e1ab8d41e31918f174822aa7091b6a9b521ac5e075b +size 1285016 diff --git a/pic/data71.png b/pic/data71.png new file mode 100644 index 0000000000000000000000000000000000000000..8add159ff611e88d22898d4704fcc8e6e057d472 --- /dev/null +++ b/pic/data71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b837bd123ab77f3a1c2a56f366699c0c7d579bc06fb10c31d3f7a774aea284 +size 2055475 diff --git a/pic/data72.png b/pic/data72.png new file mode 100644 index 0000000000000000000000000000000000000000..1e39b056b3b2c7ec849adab2d6c26705a2e1fdd5 --- /dev/null +++ b/pic/data72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0541bd2afff012cb2b27ef14144830ef2e1ccab5ae23ea676c05c482a6b6ffdb +size 2195436 diff --git a/pic/data73.png b/pic/data73.png new file mode 100644 index 0000000000000000000000000000000000000000..14976d2994be80663c24a598fcf46555872b0894 --- /dev/null +++ b/pic/data73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9473672d2edbe340c96e8d71f2a2670d3a5c92829b506059ee56638b13352b6 +size 2286237 diff --git a/pic/data74.png b/pic/data74.png new file mode 100644 index 0000000000000000000000000000000000000000..fb3dd20873b5c17cc6f4fe331f8422c297599be3 --- /dev/null +++ b/pic/data74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac63308ec1361363bb851f31d239f52129d5fa5ab4a3786d90eb7697147e54b +size 2469059 diff --git a/pic/data75.png b/pic/data75.png new file mode 100644 index 0000000000000000000000000000000000000000..a4056a0c49d5e321a478f3a32b7c25599f884a66 --- /dev/null +++ b/pic/data75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee026c96c4822c8175d04b60d4a0a5279009a1336173a301d977317cd3d27df4 +size 2364462 diff --git a/pic/data76.png b/pic/data76.png new file mode 100644 index 0000000000000000000000000000000000000000..9e8c0539a99bdd72ea2380d5ea0ee515653ac56b --- /dev/null +++ b/pic/data76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f34abd464c7c8269e44933ddeda30f79b34ed9d74355c3df7ab20dc0bccbb0 +size 1242067 diff --git a/pic/data77.png b/pic/data77.png new file mode 100644 index 0000000000000000000000000000000000000000..76feb3e1e2a86d4402060e07bd23973309351445 --- /dev/null +++ b/pic/data77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c62273838a8c2f7ecf26d4a2dd9b442ff46e9267d8733d5835de0dd4be967a78 +size 2251253 diff --git a/pic/data78.png b/pic/data78.png new file mode 100644 index 0000000000000000000000000000000000000000..3b5efbe4728f79b4510095a483225e568868ba4c --- /dev/null +++ b/pic/data78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b9f2e912cfcc27468f296b66660107596e4d1305e151c7204ac1f4a040c3872 +size 2388796 diff --git a/pic/data79.png b/pic/data79.png new file mode 100644 index 0000000000000000000000000000000000000000..836e1da6c8c9abdcf20940207484c160940074ee --- /dev/null +++ b/pic/data79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:268057053eb55dd5f35d0c4e1fa27dc00762622bd58cf01abe4b31f2e45f0187 +size 148799 diff --git a/pic/data8.png b/pic/data8.png new file mode 100644 index 0000000000000000000000000000000000000000..d176a20d557dbf1975dce727db2c366bedf6cceb --- /dev/null +++ b/pic/data8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca9d4b044e7fc6459fcf30397cc0e8ecf4756d25bf83707aea53d9678b440a56 +size 1211078 diff --git a/pic/data80.png b/pic/data80.png new file mode 100644 index 0000000000000000000000000000000000000000..4b2ec6d858f0d97b4caf2289ea443501e54e9be4 --- /dev/null +++ b/pic/data80.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72bf4d80211de66f47dff775471f0a4c1dd63c7c5398f84ac3e1a682eb899305 +size 2446938 diff --git a/pic/data81.png b/pic/data81.png new file mode 100644 index 0000000000000000000000000000000000000000..56712124293f339b0fc2771b27860b13dbfc483e --- /dev/null +++ b/pic/data81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7596926795f565b7b6ea79ad2f03360b9b7c4fee58db17c9a04cd259cfd8cf5 +size 2252804 diff --git a/pic/data82.png b/pic/data82.png new file mode 100644 index 0000000000000000000000000000000000000000..cb47e0aa18a6640389fb47d270d1f440c47fdbca --- /dev/null +++ b/pic/data82.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd346d303cb6dc0a5f0c189e7a63f871000f85dd241fd9e968472ea8de131441 +size 2487466 diff --git a/pic/data83.png b/pic/data83.png new file mode 100644 index 0000000000000000000000000000000000000000..e705bca0a152e8ba6337019ecf42485b052379e0 --- /dev/null +++ b/pic/data83.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09dfcd59f175319321accd66d5770d469902ee8e9a5454cf0e8bbb5d7d0df2a9 +size 1951751 diff --git a/pic/data84.png b/pic/data84.png new file mode 100644 index 0000000000000000000000000000000000000000..bd2579e3b6132b96476c3b4d52df4f4ed51a5888 --- /dev/null +++ b/pic/data84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7d9085edc1837e0eccef0ccd803d89e4c1a13a68fc06d43c5a4a83c7329605 +size 2231997 diff --git a/pic/data85.png b/pic/data85.png new file mode 100644 index 0000000000000000000000000000000000000000..7109f8ddfc13b1e26e43333b11e52ace099c4639 --- /dev/null +++ b/pic/data85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd563d1545c550a1159d764d6898da8d37c452b0efeb9004939c88f330d134f3 +size 122775 diff --git a/pic/data86.png b/pic/data86.png new file mode 100644 index 0000000000000000000000000000000000000000..e34be52cccc7b694f65efafe8f5d02a0f627701b --- /dev/null +++ b/pic/data86.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b64ccdb5894aa01eb8cee9307f768f8d1cc621957c003b022a37740e5ea945 +size 1516911 diff --git a/pic/data87.png b/pic/data87.png new file mode 100644 index 0000000000000000000000000000000000000000..8510cad73fa198e93a62df6a2cb13322062fc190 --- /dev/null +++ b/pic/data87.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537bc6808d32c403c8588c0a2e9e358334e7782693cc8f3d0fcd970e6cb6c8e8 +size 2317484 diff --git a/pic/data88.png b/pic/data88.png new file mode 100644 index 0000000000000000000000000000000000000000..aa052bda1b48594b0e113a62ecc8d0f9e507dfcd --- /dev/null +++ b/pic/data88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40b2761f189c5b2c921619d19e1c95056f002070e63ccbb1fe10f06d167fa64f +size 2103340 diff --git a/pic/data89.png b/pic/data89.png new file mode 100644 index 0000000000000000000000000000000000000000..348000c37aacb80ad069e3081e69a6d2020d72be --- /dev/null +++ b/pic/data89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eda4e8c7490cdc8afeacc43d8b95fbf466d2d84ffee7a0a34107abcef194b33 +size 1259577 diff --git a/pic/data9.png b/pic/data9.png new file mode 100644 index 0000000000000000000000000000000000000000..e2a45e7d1f7dfef5e150dd7f8002f719634f99f7 --- /dev/null +++ b/pic/data9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a020d6a82db018e24eff90913eda5e473b64574d6e6242b71bdc08b50f3ed11e +size 2461539 diff --git a/pic/data90.png b/pic/data90.png new file mode 100644 index 0000000000000000000000000000000000000000..3cdb62a82cdb022245c786ec60678c66772ba852 --- /dev/null +++ b/pic/data90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fff225ff055f974487ee40a89561debf09a0dde7ac60b7d23e872775512a89ff +size 150413 diff --git a/pic/data91.png b/pic/data91.png new file mode 100644 index 0000000000000000000000000000000000000000..d115d8633c80284a3d78292fb9e9648acf8e7f9c --- /dev/null +++ b/pic/data91.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2311826c82f116f46f2736a551282d86c8a48e907c7ad274798c974661c678fe +size 2535243 diff --git a/pic/data92.png b/pic/data92.png new file mode 100644 index 0000000000000000000000000000000000000000..bd2a43a9a2e74e1072a0f98dee8487c3f9d33fa1 --- /dev/null +++ b/pic/data92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:535f4f2b2a22bef5f33ee5fab5c264db436cee83ec9f0d3dd6c30b62eb973528 +size 2277661 diff --git a/pic/data93.png b/pic/data93.png new file mode 100644 index 0000000000000000000000000000000000000000..df2c44cbc84fac3dd03f76ba3bec5bcfa697daa0 --- /dev/null +++ b/pic/data93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94447420b2904434b994de51eea179a875cf190ff569a5925e41bc76f4b5e593 +size 1540901 diff --git a/pic/data94.png b/pic/data94.png new file mode 100644 index 0000000000000000000000000000000000000000..fde949ac9dea9e6a27c6a440539936eaf1252acd --- /dev/null +++ b/pic/data94.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd4a0a26cf556246c95f41f738976fc5b4cb87b60e869d169e9953c04a84efd +size 1431940 diff --git a/pic/data95.png b/pic/data95.png new file mode 100644 index 0000000000000000000000000000000000000000..43229662262c38ce8bac6c861edbb0ebf14aa913 --- /dev/null +++ b/pic/data95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b3a7f76371019889b1712fe6dc9ecfe14809d5962ad3f2bda58d06c7eb1db04 +size 1228675 diff --git a/pic/data96.png b/pic/data96.png new file mode 100644 index 0000000000000000000000000000000000000000..7b012bb0fafb8d4ebd261c95d16e2cbaff44885b --- /dev/null +++ b/pic/data96.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf8a16c7a871a0df18a7fe2fbda573380a3e830bdb6fc3770ae83afa9e2b94fe +size 1156290 diff --git a/pic/data97.png b/pic/data97.png new file mode 100644 index 0000000000000000000000000000000000000000..6ebf77131e0f47fdf5b4d81610a1381257d1a325 --- /dev/null +++ b/pic/data97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd424d99088b37c93de5dccdc9b182fc3788895e8376a30a1172dbde6966618 +size 201357 diff --git a/pic/data98.png b/pic/data98.png new file mode 100644 index 0000000000000000000000000000000000000000..9be5a504447942fb1a707a849ce64a121a333783 --- /dev/null +++ b/pic/data98.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ea6dfb909109e2566ee6382d2859ed3291c258927bc13cf804438fc23141d0 +size 1735299 diff --git a/pic/data99.png b/pic/data99.png new file mode 100644 index 0000000000000000000000000000000000000000..cf79c457d07538dbd2bd4a51ed90ac9842ec5087 --- /dev/null +++ b/pic/data99.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2530d1216d3e92a59d519df2777bbe49e9fc37b31ea294f63159ff2cbd2532e6 +size 1233654