diff --git a/docs/annotators.md b/docs/annotators.md index 5dfcda08..168028ee 100644 --- a/docs/annotators.md +++ b/docs/annotators.md @@ -278,6 +278,27 @@ status: new +=== "Crop" + + ```python + import supervision as sv + + image = ... + detections = sv.Detections(...) + + crop_annotator = sv.CropAnnotator() + annotated_frame = crop_annotator.annotate( + scene=image.copy(), + detections=detections + ) + ``` + +