forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: center point class (autowarefoundation#4701)
* feat(lidar_centerpoint): add build only option for tensorrt engine (autowarefoundation#2677) * feat(lidar_centerpoint): add build only option for tensorrt engine Signed-off-by: yukke42 <[email protected]> * fix typo Co-authored-by: Daisuke Nishimatsu <[email protected]> * style(pre-commit): autofix * chore: add description Signed-off-by: yukke42 <[email protected]> * chore: shutdown node Signed-off-by: yukke42 <[email protected]> * feat: use tensorrt_commom Signed-off-by: yukke42 <[email protected]> * fix: resolve the crash when shutting down the node Signed-off-by: yukke42 <[email protected]> * chore: fix typo Co-authored-by: Kenzo Lobos Tsunekawa <[email protected]> * style(pre-commit): autofix --------- Signed-off-by: yukke42 <[email protected]> Signed-off-by: yukke42 <[email protected]> Co-authored-by: Daisuke Nishimatsu <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Kenzo Lobos Tsunekawa <[email protected]> * fix(lidar_centerpoint): fix class (autowarefoundation#3934) * fix(lidar_centerpoint): fix class Signed-off-by: Shin-kyoto <[email protected]> * feat(lidar_centerpoint): fix range in config for centerpoint Signed-off-by: Shin-kyoto <[email protected]> * feat(lidar_centerpoint): fix the ranges and voxel size Signed-off-by: Shin-kyoto <[email protected]> --------- Signed-off-by: Shin-kyoto <[email protected]> * Revert "fix: use centerpoint_tiny to centerpoint" This reverts commit efcf726. --------- Signed-off-by: yukke42 <[email protected]> Signed-off-by: yukke42 <[email protected]> Signed-off-by: Shin-kyoto <[email protected]> Co-authored-by: Yusuke Muramatsu <[email protected]> Co-authored-by: Daisuke Nishimatsu <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Kenzo Lobos Tsunekawa <[email protected]> Co-authored-by: Shintaro Tomie <[email protected]>
- Loading branch information
1 parent
7814305
commit 05d091d
Showing
13 changed files
with
59 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
/**: | ||
ros__parameters: | ||
class_names: ["CAR", "PEDESTRIAN", "BICYCLE"] | ||
class_names: ["CAR", "TRUCK", "BUS", "BICYCLE", "PEDESTRIAN"] | ||
point_feature_size: 4 | ||
max_voxel_size: 40000 | ||
point_cloud_range: [-89.6, -89.6, -3.0, 89.6, 89.6, 5.0] | ||
voxel_size: [0.32, 0.32, 8.0] | ||
point_cloud_range: [-76.8, -76.8, -4.0, 76.8, 76.8, 6.0] | ||
voxel_size: [0.32, 0.32, 10.0] | ||
downsample_factor: 1 | ||
encoder_in_feature_size: 9 | ||
# post-process params | ||
circle_nms_dist_threshold: 0.5 | ||
iou_nms_target_class_names: ["CAR"] | ||
iou_nms_search_distance_2d: 10.0 | ||
iou_nms_threshold: 0.1 | ||
yaw_norm_thresholds: [0.3, 0.0, 0.3] | ||
yaw_norm_thresholds: [0.3, 0.3, 0.3, 0.3, 0.0] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters