aboutsummaryrefslogtreecommitdiff
path: root/docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md
diff options
context:
space:
mode:
authorThéo de la Hogue2024-01-17 15:17:24 +0100
committerThéo de la Hogue2024-01-17 15:17:24 +0100
commit2c1956de549bbc98144c0c81864a30b59d745435 (patch)
tree64a9a5dcf46fb29f5c7d8ce7650c6c595de22ba3 /docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md
parentc9fcffb79e442c2554f028a64e59fca7042b1886 (diff)
parent7d76d3b9728696fa8c98a3336a9d0642db7476b7 (diff)
downloadargaze-2c1956de549bbc98144c0c81864a30b59d745435.zip
argaze-2c1956de549bbc98144c0c81864a30b59d745435.tar.gz
argaze-2c1956de549bbc98144c0c81864a30b59d745435.tar.bz2
argaze-2c1956de549bbc98144c0c81864a30b59d745435.tar.xz
Merge branch 'dev/video_thread'
Diffstat (limited to 'docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md')
-rw-r--r--docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md4
1 files changed, 2 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 892d6dd..c79c8b5 100644
--- a/docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md
+++ b/docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md
@@ -75,11 +75,11 @@ for name, aruco_scene in aruco_camera.scenes.items():
[ArUcoCamera.watch](../../../argaze.md/#argaze.ArFeatures.ArCamera.watch) method returns data about pipeline execution.
```python
-# Assuming that images are available
+# Assuming that timestamped images are available
...:
# Watch image with ArUco camera
- detection_time, projection_time, exception = aruco_camera.watch(image)
+ detection_time, projection_time, exception = aruco_camera.watch(timestamp, image)
# Do something with pipeline times
...