-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add segmentation code of PETRv2 #204
base: develop
Are you sure you want to change the base?
Conversation
root seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
bbox_coder: | ||
type: NMSFreeCoder | ||
post_center_range: [-61.2, -61.2, -10.0, 61.2, 61.2, 10.0] | ||
pc_range: [-51.2, -51.2, -5.0, 51.2, 51.2, 3.0] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
在BEVFormer相关的PR里,已经改为point_cloud_range,需要同步修改
@@ -14,3 +14,4 @@ | |||
|
|||
from .nuscenes_multi_view_det import NuscenesMVDataset | |||
from .nuscenes_pointcloud_det import NuscenesPCDataset | |||
from .nuscenes_multi_view_det_seg import NuscenesMVSegDataset |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
在BEVFormer相关的PR里,检测的包名已经改为nuscenes_multiview_det
,建议这个改为nuscenes_multiview_seg
@@ -0,0 +1,711 @@ | |||
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2023?
@@ -0,0 +1,1053 @@ | |||
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2023
@@ -0,0 +1,445 @@ | |||
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2023
@@ -0,0 +1,76 @@ | |||
import paddle |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LICENSE
@@ -468,7 +499,8 @@ class LoadMultiViewImageFromFiles(TransformABC): | |||
- 1: cv2.IMREAD_COLOR | |||
""" | |||
|
|||
def __init__(self, to_float32=False, imread_flag=-1): | |||
def __init__(self, data_root, to_float32=False, imread_flag=-1): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个修改是否会影响其他PETR的config?
This PR conflicts with the latest code, please fix it |
No description provided.