aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/argaze/utils/environment_edit.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/argaze/utils/environment_edit.py b/src/argaze/utils/environment_edit.py
index 7a7587f..0093be7 100644
--- a/src/argaze/utils/environment_edit.py
+++ b/src/argaze/utils/environment_edit.py
@@ -151,9 +151,6 @@ def main():
video_frame = current_frame.copy()
- # Draw detected markers
- ar_environment.aruco_detector.draw_detected_markers(video_frame)
-
# Handle marker selection on left click
if len(ar_environment.aruco_detector.detected_markers) > 0:
@@ -296,6 +293,9 @@ def main():
# Draw frame
cv2.imshow(ar_environment.name, video_frame)
+ # Draw detected markers
+ ar_environment.aruco_detector.draw_detected_markers(video_frame)
+
# Draw pointer
gaze_position.draw(video_frame)