diff --git a/docs/annotators.md b/docs/annotators.md index 2077e58d..59e44ebd 100644 --- a/docs/annotators.md +++ b/docs/annotators.md @@ -124,6 +124,27 @@ +=== "Trace" + + ```python + >>> import supervision as sv + + >>> image = ... + >>> detections = sv.Detections(...) + + >>> trace_annotator = sv.TraceAnnotator() + >>> annotated_frame = trace_annotator.annotate( + ... scene=image.copy(), + ... detections=detections + ... ) + ``` + +