-
Notifications
You must be signed in to change notification settings - Fork 683
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(image_projection_based_fusion): add objects filter by rois (#4546)
* tmp Signed-off-by: yukke42 <yukke42@users.noreply.github.com> style(pre-commit): autofix update Signed-off-by: yukke42 <yukke42@users.noreply.github.com> style(pre-commit): autofix * fix: fix association bug Signed-off-by: yukke42 <yukke42@users.noreply.github.com> * feat: add prob_threshold for each class Signed-off-by: yukke42 <yukke42@users.noreply.github.com> * feat: use class label association between roi and object Signed-off-by: yukke42 <yukke42@users.noreply.github.com> * feat: add to tier4_perception_launch Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * chore: disable debug_mode Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * docs: update params Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * fix: apply suggestion Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * chore: update prob_thresholds of bicycle Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * feat: add thresut_distance for each class Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * docs: add thrust_distances Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * style(pre-commit): autofix * chore: remove unnecessary variable Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * chore: rename to trust Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * style(pre-commit): autofix * chore: add param Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * Update perception/image_projection_based_fusion/config/roi_detected_object_fusion.param.yaml Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com> --------- Signed-off-by: yukke42 <yukke42@users.noreply.github.com> Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com>
- Loading branch information
1 parent
e14d71e
commit 9a2e27e
Showing
7 changed files
with
129 additions
and
46 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
19 changes: 19 additions & 0 deletions
19
perception/image_projection_based_fusion/config/roi_detected_object_fusion.param.yaml
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/**: | ||
ros__parameters: | ||
# UNKNOWN, CAR, TRUCK, BUS, TRAILER, MOTORBIKE, BICYCLE, PEDESTRIAN | ||
passthrough_lower_bound_probability_thresholds: [0.35, 0.35, 0.35, 0.35, 0.35, 0.35, 0.35, 0.50] | ||
trust_distances: [50.0, 100.0, 100.0, 100.0, 100.0, 50.0, 50.0, 50.0] | ||
min_iou_threshold: 0.5 | ||
use_roi_probability: false | ||
roi_probability_threshold: 0.5 | ||
|
||
can_assign_matrix: | ||
#UNKNOWN, CAR, TRUCK, BUS, TRAILER, MOTORBIKE, BICYCLE, PEDESTRIAN <-roi_msg | ||
[1, 0, 0, 0, 0, 0, 0, 0, # UNKNOWN <-detected_objects | ||
0, 1, 1, 1, 1, 0, 0, 0, # CAR | ||
0, 1, 1, 1, 1, 0, 0, 0, # TRUCK | ||
0, 1, 1, 1, 1, 0, 0, 0, # BUS | ||
0, 1, 1, 1, 1, 0, 0, 0, # TRAILER | ||
0, 0, 0, 0, 0, 1, 1, 1, # MOTORBIKE | ||
0, 0, 0, 0, 0, 1, 1, 1, # BICYCLE | ||
0, 0, 0, 0, 0, 1, 1, 1] # PEDESTRIAN |
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