clip_boxes_to_image¶
- torchvision.ops.clip_boxes_to_image(boxes: Tensor, size: Tuple[int, int]) Tensor [源代码]¶
裁剪边界框,使其位于大小为
size
的图像内。注意
要裁剪
BoundingBoxes
对象,请考虑使用转换ClampBoundingBoxes()
。- 参数:
boxes (Tensor[N, 4]) – 格式为
(x1, y1, x2, y2)
的边界框,其中0 <= x1 < x2
且0 <= y1 < y2
。size (Tuple[height, width]) – 图像的大小
- 返回值:
裁剪后的边界框
- 返回类型:
Tensor[N, 4]