diff options
Diffstat (limited to 'docs/user_guide/aruco_markers_pipeline')
-rw-r--r-- | docs/user_guide/aruco_markers_pipeline/configuration_and_execution.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/user_guide/aruco_markers_pipeline/configuration_and_execution.md b/docs/user_guide/aruco_markers_pipeline/configuration_and_execution.md index 4f3ce5b..4f05beb 100644 --- a/docs/user_guide/aruco_markers_pipeline/configuration_and_execution.md +++ b/docs/user_guide/aruco_markers_pipeline/configuration_and_execution.md @@ -56,7 +56,10 @@ Then, here is how to load the JSON file: from argaze.ArUcoMarkers import ArUcoCamera # Load ArUcoCamera -aruco_camera = ArUcoCamera.ArUcoCamera.from_json('./configuration.json') +with ArUcoCamera.ArUcoCamera.from_json('./configuration.json') as aruco_camera: + + # Do something with ArUcoCamera + ... ``` Now, let's understand the meaning of each JSON entry. |