↓ 1 callersFunction_validate_xyxyValidate that xyxy is a 2D np.ndarray with shape (N, 4). ```pycon >>> _validate_xyxy(np.array([[0, 0, 1, 1], [1, 1, 2, 2]])) ```
src/supervision/validators/__init__.py:10
↓ 1 callersMethoddraw_rounded_rectangle(
scene: npt.NDArray[np.uint8],
xyxy: tuple[int, int, int, int],
color: tuple[int, int
src/supervision/annotators/core.py:1470