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
mmdetection3d
Commits
1a3a1ade
Unverified
Commit
1a3a1ade
authored
Feb 07, 2022
by
ChaimZhu
Committed by
GitHub
Feb 07, 2022
Browse files
[Enhance] add README and copyright pre-commmit (#1134)
* add precommmit to check readme * update * fix typos
parent
c10e9be2
Changes
53
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
0 deletions
+20
-0
mmdet3d/models/roi_heads/bbox_heads/point_rcnn_bbox_head.py
mmdet3d/models/roi_heads/bbox_heads/point_rcnn_bbox_head.py
+1
-0
mmdet3d/models/roi_heads/point_rcnn_roi_head.py
mmdet3d/models/roi_heads/point_rcnn_roi_head.py
+1
-0
mmdet3d/models/roi_heads/roi_extractors/single_roipoint_extractor.py
...els/roi_heads/roi_extractors/single_roipoint_extractor.py
+1
-0
mmdet3d/ops/ball_query/__init__.py
mmdet3d/ops/ball_query/__init__.py
+1
-0
mmdet3d/ops/ball_query/ball_query.py
mmdet3d/ops/ball_query/ball_query.py
+1
-0
mmdet3d/ops/furthest_point_sample/__init__.py
mmdet3d/ops/furthest_point_sample/__init__.py
+1
-0
mmdet3d/ops/furthest_point_sample/furthest_point_sample.py
mmdet3d/ops/furthest_point_sample/furthest_point_sample.py
+1
-0
mmdet3d/ops/furthest_point_sample/points_sampler.py
mmdet3d/ops/furthest_point_sample/points_sampler.py
+1
-0
mmdet3d/ops/furthest_point_sample/utils.py
mmdet3d/ops/furthest_point_sample/utils.py
+1
-0
mmdet3d/ops/gather_points/__init__.py
mmdet3d/ops/gather_points/__init__.py
+1
-0
mmdet3d/ops/gather_points/gather_points.py
mmdet3d/ops/gather_points/gather_points.py
+1
-0
mmdet3d/ops/group_points/__init__.py
mmdet3d/ops/group_points/__init__.py
+1
-0
mmdet3d/ops/group_points/group_points.py
mmdet3d/ops/group_points/group_points.py
+1
-0
mmdet3d/ops/interpolate/__init__.py
mmdet3d/ops/interpolate/__init__.py
+1
-0
mmdet3d/ops/interpolate/three_interpolate.py
mmdet3d/ops/interpolate/three_interpolate.py
+1
-0
mmdet3d/ops/interpolate/three_nn.py
mmdet3d/ops/interpolate/three_nn.py
+1
-0
mmdet3d/ops/iou3d/__init__.py
mmdet3d/ops/iou3d/__init__.py
+1
-0
mmdet3d/ops/iou3d/iou3d_utils.py
mmdet3d/ops/iou3d/iou3d_utils.py
+1
-0
mmdet3d/ops/knn/__init__.py
mmdet3d/ops/knn/__init__.py
+1
-0
mmdet3d/ops/knn/knn.py
mmdet3d/ops/knn/knn.py
+1
-0
No files found.
mmdet3d/models/roi_heads/bbox_heads/point_rcnn_bbox_head.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
torch
from
mmcv.cnn
import
ConvModule
,
normal_init
...
...
mmdet3d/models/roi_heads/point_rcnn_roi_head.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
from
torch.nn
import
functional
as
F
...
...
mmdet3d/models/roi_heads/roi_extractors/single_roipoint_extractor.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
from
torch
import
nn
as
nn
...
...
mmdet3d/ops/ball_query/__init__.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
from
.ball_query
import
ball_query
__all__
=
[
'ball_query'
]
mmdet3d/ops/ball_query/ball_query.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
from
torch.autograd
import
Function
...
...
mmdet3d/ops/furthest_point_sample/__init__.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
from
.furthest_point_sample
import
(
furthest_point_sample
,
furthest_point_sample_with_dist
)
from
.points_sampler
import
Points_Sampler
...
...
mmdet3d/ops/furthest_point_sample/furthest_point_sample.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
from
torch.autograd
import
Function
...
...
mmdet3d/ops/furthest_point_sample/points_sampler.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
from
mmcv.runner
import
force_fp32
from
torch
import
nn
as
nn
...
...
mmdet3d/ops/furthest_point_sample/utils.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
...
...
mmdet3d/ops/gather_points/__init__.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
from
.gather_points
import
gather_points
__all__
=
[
'gather_points'
]
mmdet3d/ops/gather_points/gather_points.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
from
torch.autograd
import
Function
...
...
mmdet3d/ops/group_points/__init__.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
from
.group_points
import
GroupAll
,
QueryAndGroup
,
grouping_operation
__all__
=
[
'QueryAndGroup'
,
'GroupAll'
,
'grouping_operation'
]
mmdet3d/ops/group_points/group_points.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
from
torch
import
nn
as
nn
from
torch.autograd
import
Function
...
...
mmdet3d/ops/interpolate/__init__.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
from
.three_interpolate
import
three_interpolate
from
.three_nn
import
three_nn
...
...
mmdet3d/ops/interpolate/three_interpolate.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
from
torch.autograd
import
Function
from
typing
import
Tuple
...
...
mmdet3d/ops/interpolate/three_nn.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
from
torch.autograd
import
Function
from
typing
import
Tuple
...
...
mmdet3d/ops/iou3d/__init__.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
from
.iou3d_utils
import
boxes_iou_bev
,
nms_gpu
,
nms_normal_gpu
__all__
=
[
'boxes_iou_bev'
,
'nms_gpu'
,
'nms_normal_gpu'
]
mmdet3d/ops/iou3d/iou3d_utils.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
from
.
import
iou3d_cuda
...
...
mmdet3d/ops/knn/__init__.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
from
.knn
import
knn
__all__
=
[
'knn'
]
mmdet3d/ops/knn/knn.py
View file @
1a3a1ade
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
from
torch.autograd
import
Function
...
...
Prev
1
2
3
Next
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