Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
OpenPCDet
Commits
19068b52
Unverified
Commit
19068b52
authored
Jun 01, 2021
by
ArtificialCleverness
Committed by
GitHub
Jun 01, 2021
Browse files
modified few documentation about ious (#550)
Co-authored-by:
pengfengming
<
pengfengming@haomo.ai
>
parent
7efdf026
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
pcdet/ops/iou3d_nms/iou3d_nms_utils.py
pcdet/ops/iou3d_nms/iou3d_nms_utils.py
+4
-4
No files found.
pcdet/ops/iou3d_nms/iou3d_nms_utils.py
View file @
19068b52
...
...
@@ -13,10 +13,10 @@ def boxes_bev_iou_cpu(boxes_a, boxes_b):
"""
Args:
boxes_a: (N, 7) [x, y, z, dx, dy, dz, heading]
boxes_b: (
N
, 7) [x, y, z, dx, dy, dz, heading]
boxes_b: (
M
, 7) [x, y, z, dx, dy, dz, heading]
Returns:
ans_iou: (N, M)
"""
boxes_a
,
is_numpy
=
common_utils
.
check_numpy_to_torch
(
boxes_a
)
boxes_b
,
is_numpy
=
common_utils
.
check_numpy_to_torch
(
boxes_b
)
...
...
@@ -32,7 +32,7 @@ def boxes_iou_bev(boxes_a, boxes_b):
"""
Args:
boxes_a: (N, 7) [x, y, z, dx, dy, dz, heading]
boxes_b: (
N
, 7) [x, y, z, dx, dy, dz, heading]
boxes_b: (
M
, 7) [x, y, z, dx, dy, dz, heading]
Returns:
ans_iou: (N, M)
...
...
@@ -49,7 +49,7 @@ def boxes_iou3d_gpu(boxes_a, boxes_b):
"""
Args:
boxes_a: (N, 7) [x, y, z, dx, dy, dz, heading]
boxes_b: (
N
, 7) [x, y, z, dx, dy, dz, heading]
boxes_b: (
M
, 7) [x, y, z, dx, dy, dz, heading]
Returns:
ans_iou: (N, M)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment