fix(pre_commit): 🎨 auto format pre-commit hooks

This commit is contained in:
pre-commit-ci[bot] 2023-10-31 17:05:10 +00:00
parent ce7e3a1de4
commit e6a5c514f8
1 changed files with 2 additions and 2 deletions

View File

@ -894,8 +894,8 @@ class BlurAnnotator(BaseAnnotator):
"""
image_height, image_width = scene.shape[:2]
clipped_xyxy = clip_boxes(
xyxy=detections.xyxy,
resolution_wh=(image_width, image_height)).astype(int)
xyxy=detections.xyxy, resolution_wh=(image_width, image_height)
).astype(int)
for x1, y1, x2, y2 in clipped_xyxy:
roi = scene[y1:y2, x1:x2]