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
This commit is contained in:
Ji Hou 2022-10-15 21:41:02 -07:00 committed by Facebook GitHub Bot
parent 3b3306f9b4
commit a2659e1730

View File

@ -62,7 +62,7 @@ Below we compare the performance for Objectron (in C++) and our algorithm, in C+
```python ```python
from pytorch3d.ops import box3d_overlap from pytorch3d.ops import box3d_overlap
# Assume inputs: boxes1 (M, 8, 3) and boxes2 (N, 8, 3) # 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). For more details, read [iou_box3d.py](https://github.com/facebookresearch/pytorch3d/blob/main/pytorch3d/ops/iou_box3d.py).