-
Notifications
You must be signed in to change notification settings - Fork 664
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/insert_ahead_stop_point
Signed-off-by: kyoichi-sugahara <[email protected]>
- Loading branch information
Showing
14 changed files
with
197 additions
and
31 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
33 changes: 33 additions & 0 deletions
33
perception/heatmap_visualizer/config/heatmap_visualizer.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,33 @@ | ||
# Copyright 2023 TIER IV, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
/**: | ||
ros__parameters: | ||
publish_frame_count: 50 | ||
heatmap_frame_id: "base_link" | ||
heatmap_length: 200.0 | ||
heatmap_resolution: 0.8 | ||
use_confidence: false | ||
class_names: | ||
[ | ||
"UNKNOWN", | ||
"CAR", | ||
"TRUCK", | ||
"BUS", | ||
"TRAILER", | ||
"BICYCLE", | ||
"MOTORBIKE", | ||
"PEDESTRIAN", | ||
] | ||
rename_to_car: false |
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
81 changes: 81 additions & 0 deletions
81
perception/heatmap_visualizer/schema/heatmap_visualizer.schema.json
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,81 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Parameters for Heatmap Visualizer Node", | ||
"type": "object", | ||
"definitions": { | ||
"heatmap_visualizer": { | ||
"type": "object", | ||
"properties": { | ||
"publish_frame_count": { | ||
"type": "integer", | ||
"description": "The number of frames to be published at once.", | ||
"default": 50, | ||
"minimum": 1 | ||
}, | ||
"heatmap_frame_id": { | ||
"type": "string", | ||
"description": "A frame ID in which visualized heatmap is with respect to.", | ||
"default": "base_link" | ||
}, | ||
"heatmap_length": { | ||
"type": "number", | ||
"description": "A size length of heatmap [m].", | ||
"default": 200.0, | ||
"exclusiveMinimum": 0.0 | ||
}, | ||
"heatmap_resolution": { | ||
"type": "number", | ||
"description": "A cell resolution of heatmap [m].", | ||
"default": 0.8, | ||
"exclusiveMinimum": 0.0 | ||
}, | ||
"use_confidence": { | ||
"type": "boolean", | ||
"description": "Indicates whether to use object existence probability as score. It this parameter is false, 1.0 is set to score.", | ||
"default": false | ||
}, | ||
"class_names": { | ||
"type": "array", | ||
"description": "An array of object class names.", | ||
"default": [ | ||
"UNKNOWN", | ||
"CAR", | ||
"TRUCK", | ||
"BUS", | ||
"TRAILER", | ||
"BICYCLE", | ||
"MOTORBIKE", | ||
"PEDESTRIAN" | ||
], | ||
"uniqueItems": true | ||
}, | ||
"rename_to_car": { | ||
"type": "boolean", | ||
"description": "Indicates whether to rename car like vehicle into car.", | ||
"default": false | ||
} | ||
}, | ||
"required": [ | ||
"publish_frame_count", | ||
"heatmap_frame_id", | ||
"heatmap_length", | ||
"heatmap_resolution", | ||
"use_confidence", | ||
"class_names", | ||
"rename_to_car" | ||
] | ||
} | ||
}, | ||
"properties": { | ||
"/**": { | ||
"type": "object", | ||
"properties": { | ||
"ros__parameters": { | ||
"$ref": "#/definitions/heatmap_visualizer" | ||
} | ||
}, | ||
"required": ["ros__parameters"] | ||
} | ||
}, | ||
"required": ["/**"] | ||
} |
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