From a2659e1730a37345d882222464180a20a2547905 Mon Sep 17 00:00:00 2001 From: Ji Hou Date: Sat, 15 Oct 2022 21:41:02 -0700 Subject: [PATCH] Update iou3d.md (#1351) Summary: fix a typo Pull Request resolved: https://github.com/facebookresearch/pytorch3d/pull/1351 Reviewed By: shapovalov Differential Revision: D40209834 Pulled By: bottler fbshipit-source-id: 118133e0eab2df211e5c4f04371f2c695a9ceced --- docs/notes/iou3d.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notes/iou3d.md b/docs/notes/iou3d.md index cc9f6c19e..548d67811 100644 --- a/docs/notes/iou3d.md +++ b/docs/notes/iou3d.md @@ -62,7 +62,7 @@ Below we compare the performance for Objectron (in C++) and our algorithm, in C+ ```python from pytorch3d.ops import box3d_overlap # Assume inputs: boxes1 (M, 8, 3) and boxes2 (N, 8, 3) -intersection_vol, iou_3d = box3d_overal(boxes1, boxes2) +intersection_vol, iou_3d = box3d_overlap(boxes1, boxes2) ``` For more details, read [iou_box3d.py](https://github.com/facebookresearch/pytorch3d/blob/main/pytorch3d/ops/iou_box3d.py).