We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c4d8e commit 484e533Copy full SHA for 484e533
1 file changed
‎examples/tracking/script.py‎
@@ -30,11 +30,13 @@ def process_video(
30
detections = tracker.update_with_detections(detections)
31
32
annotated_frame = box_annotator.annotate(
33
- scene=frame.copy(), detections=detections)
34
-
+ scene=frame.copy(), detections=detections
+ )
35
+
36
annotated_labeled_frame = label_annotator.annotate(
- scene=annotated_frame, detections=detections)
37
+ scene=annotated_frame, detections=detections
38
39
40
sink.write_frame(frame=annotated_labeled_frame)
41
42
0 commit comments