-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Baptiste O'Jeanson
committed
Aug 11, 2023
1 parent
7ff8d49
commit b49ccae
Showing
51 changed files
with
592 additions
and
608 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"infra": { | ||
"binary_storage": { | ||
"type": "filesystem", | ||
"params": { | ||
"src_directory": "/tmp/vio/edge_orchestrator/data/storage" | ||
} | ||
}, | ||
"metadata_storage": { | ||
"type": "filesystem" | ||
}, | ||
"mode1_forward": { | ||
"type": "fake" | ||
}, | ||
"telemetry_sink": { | ||
"type": "fake" | ||
}, | ||
"cameras": [ | ||
{ | ||
"name": "camera_#1", | ||
"type": "fake", | ||
"source": "marker_images", | ||
"position": "back", | ||
"exposition": 100 | ||
} | ||
] | ||
}, | ||
"domain": { | ||
"camera_rules": [ | ||
{ | ||
"name": "camera_#1", | ||
"models_graph": [ | ||
{ | ||
"name": "marker_quality_control", | ||
"category": "classification", | ||
"version": "1", | ||
"class_names": [ | ||
"OK", | ||
"KO" | ||
], | ||
"image_resolution": [ | ||
224, | ||
224 | ||
], | ||
"depends_on": [] | ||
} | ||
], | ||
"rule": { | ||
"name": "expected_label_rule", | ||
"parameters": { | ||
"expected_label": [ | ||
"OK" | ||
] | ||
} | ||
} | ||
} | ||
], | ||
"item_rule": { | ||
"name": "min_threshold_KO_rule", | ||
"params": { | ||
"threshold": 1 | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
92 changes: 55 additions & 37 deletions
92
edge_orchestrator/config/station_configs/marker_classification_with_1_fake_camera.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,63 @@ | ||
{ | ||
"binary_storage": { | ||
"type": "filesystem", | ||
"params": { | ||
"src_directory": "/tmp/vio/edge_orchestrator/data/storage" | ||
"infra": { | ||
"binary_storage": { | ||
"type": "filesystem", | ||
"params": { | ||
"src_directory": "/tmp/vio/edge_orchestrator/data/storage" | ||
} | ||
}, | ||
"metadata_storage": { | ||
"type": "filesystem" | ||
}, | ||
"model_forward": { | ||
"type": "fake" | ||
}, | ||
"telemetry_sink": { | ||
"type": "fake" | ||
}, | ||
"cameras": { | ||
"camera_#1": { | ||
"type": "fake", | ||
"source": "marker_images", | ||
"position": "back", | ||
"exposition": 100 | ||
} | ||
} | ||
}, | ||
"metadata_storage": { | ||
"type": "filesystem" | ||
}, | ||
"model_forward": { | ||
"type": "fake" | ||
}, | ||
"telemetry_sink": { | ||
"type": "fake" | ||
}, | ||
"cameras": { | ||
"camera_#1": { | ||
"type": "fake", | ||
"source": "marker_images", | ||
"position": "back", | ||
"exposition": 100, | ||
"models_graph": { | ||
"model_#4": { | ||
"metadata": "marker_quality_control", | ||
"depends_on": [] | ||
} | ||
}, | ||
"camera_rule": { | ||
"name": "expected_label_rule", | ||
"parameters": { | ||
"expected_label": [ | ||
"OK" | ||
] | ||
"domain": { | ||
"cameras": { | ||
"camera_#1": { | ||
"models_graph": { | ||
"model_#4": { | ||
"name": "marker_quality_control", | ||
"category": "classification", | ||
"version": "1", | ||
"class_names": [ | ||
"OK", | ||
"KO" | ||
], | ||
"image_resolution": [ | ||
224, | ||
224 | ||
], | ||
"depends_on": [] | ||
} | ||
}, | ||
"camera_rule": { | ||
"name": "expected_label_rule", | ||
"parameters": { | ||
"expected_label": [ | ||
"OK" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"item_rule": { | ||
"name": "min_threshold_KO_rule", | ||
"parameters": { | ||
"threshold": 1 | ||
}, | ||
"item_rule": { | ||
"name": "min_threshold_KO_rule", | ||
"parameters": { | ||
"threshold": 1 | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 16 additions & 4 deletions
20
edge_orchestrator/config/station_configs/marker_classification_with_1_usbcamera.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
edge_orchestrator/config/station_configs/person_detection_with_1_fake_camera.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.