-
Notifications
You must be signed in to change notification settings - Fork 691
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4d31532
commit 672c2d2
Showing
5 changed files
with
17 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,4 +33,3 @@ rclcpp_components_register_node(scene_to_image_projector | |
ament_auto_package(INSTALL_TO_SHARE | ||
launch | ||
) | ||
|
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,4 +1,3 @@ | ||
# scene_to_image_projector | ||
|
||
## Purpose | ||
|
28 changes: 14 additions & 14 deletions
28
perception/scene_to_image_projector/launch/scene_to_image_projector.launch.xml
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,17 +1,17 @@ | ||
<launch> | ||
<arg name="input/image" default="/perception/object_recognition/detection/image_rect_front"/> | ||
<arg name="input/camera_info" default="/lucid_vision/camera_1/camera_info"/> | ||
<arg name="input/objects" default="/perception/object_recognition/detection/objects"/> | ||
<arg name="objects_type" default="detected" description="must be tracked or detected"/> | ||
<arg name="use_trajectory" default="false" description=""/> | ||
<arg name="use_road_boundaries" default="false" description=""/> | ||
<arg name="input/image" default="/perception/object_recognition/detection/image_rect_front"/> | ||
<arg name="input/camera_info" default="/lucid_vision/camera_1/camera_info"/> | ||
<arg name="input/objects" default="/perception/object_recognition/detection/objects"/> | ||
<arg name="objects_type" default="detected" description="must be tracked or detected"/> | ||
<arg name="use_trajectory" default="false" description=""/> | ||
<arg name="use_road_boundaries" default="false" description=""/> | ||
|
||
<node pkg="scene_to_image_projector" exec="scene_to_image_projector_node" name="scene_to_image_projector"> | ||
<remap from="~/input/image" to="$(var input/image)"/> | ||
<remap from="~/input/camera_info" to="$(var input/camera_info)"/> | ||
<remap from="~/input/objects" to="$(var input/objects)"/> | ||
<param name="objects_type" value="$(var objects_type)"/> | ||
<param name="use_trajectory" value="$(var use_trajectory)"/> | ||
<param name="use_road_boundaries" value="$(var use_road_boundaries)"/> | ||
</node> | ||
<node pkg="scene_to_image_projector" exec="scene_to_image_projector_node" name="scene_to_image_projector"> | ||
<remap from="~/input/image" to="$(var input/image)"/> | ||
<remap from="~/input/camera_info" to="$(var input/camera_info)"/> | ||
<remap from="~/input/objects" to="$(var input/objects)"/> | ||
<param name="objects_type" value="$(var objects_type)"/> | ||
<param name="use_trajectory" value="$(var use_trajectory)"/> | ||
<param name="use_road_boundaries" value="$(var use_road_boundaries)"/> | ||
</node> | ||
</launch> |
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