diff options
author | Théo de la Hogue | 2023-10-05 22:07:12 +0200 |
---|---|---|
committer | Théo de la Hogue | 2023-10-05 22:07:12 +0200 |
commit | 8bb3cec466ace640c27b41106cac7f6a09dfcdbd (patch) | |
tree | 0c47bba2b6d405c85b632657cdd2152e30082f9d /docs | |
parent | 64df8beaf90d9f0bbaf0b1b51dae225f86c6a4c4 (diff) | |
download | argaze-8bb3cec466ace640c27b41106cac7f6a09dfcdbd.zip argaze-8bb3cec466ace640c27b41106cac7f6a09dfcdbd.tar.gz argaze-8bb3cec466ace640c27b41106cac7f6a09dfcdbd.tar.bz2 argaze-8bb3cec466ace640c27b41106cac7f6a09dfcdbd.tar.xz |
Returning proejction time.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md b/docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md index 529bff8..892d6dd 100644 --- a/docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md +++ b/docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md @@ -79,9 +79,9 @@ for name, aruco_scene in aruco_camera.scenes.items(): ...: # Watch image with ArUco camera - detection_time, exception = aruco_camera.watch(image) + detection_time, projection_time, exception = aruco_camera.watch(image) - # Do something with pipeline detection time + # Do something with pipeline times ... # Do something with pipeline exception @@ -95,6 +95,10 @@ Let's understand the meaning of each returned data. ArUco marker detection time in ms. +### *projection_time* + +Scenes projection time in ms. + ### *exception* A [python Exception](https://docs.python.org/3/tutorial/errors.html#exceptions) object raised during pipeline execution. |