This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
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 refactor-existing-objectives-adjust-pose
- Loading branch information
Showing
22 changed files
with
95 additions
and
255 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<include file="$(find-pkg-share moveit_studio_agent)/launch/studio_agent_bridge.launch.xml"/> | ||
<include file="$(find-pkg-share moveit_studio_rest_api)/launch/rest_api.launch.xml"/> | ||
</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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<arg name="scene_camera_serial_no" default="'0'" /> | ||
<arg name="wrist_mounted_camera_serial_no" default="'0'" /> | ||
|
||
<!-- Scene camera --> | ||
<include file="$(find-pkg-share realsense2_camera)/launch/rs_launch.py"> | ||
<arg name="camera_name" value="scene_camera"/> | ||
<arg name="serial_no" value="$(var scene_camera_serial_no)"/> | ||
<arg name="device_type" value="D415"/> | ||
<arg name="depth_module.profile" value="640x480x6"/> | ||
<arg name="pointcloud.enable" value="True"/> | ||
<arg name="pointcloud.ordered_pc" value="True"/> | ||
<arg name="decimation_filter.enable" value="False"/> | ||
|
||
<!--# information about the topics the camera publishes the raw image and info--> | ||
<arg name="rgb_info" value="/scene_camera/color/camera_info"/> | ||
<arg name="rgb_image" value="/scene_camera/color/image_raw"/> | ||
<arg name="registered_rgb_depth_pair.depth_info" value="/scene_camera/color/camera_info"/> | ||
<arg name="registered_rgb_depth_pair.depth_image" value="/scene_camera/depth/image_rect_raw"/> | ||
<arg name="registered_rgb_depth_pair.registered_info" value="/scene_camera/color/camera_info"/> | ||
<arg name="registered_rgb_depth_pair.registered_image" value="/scene_camera/depth/image_rect_raw"/> | ||
</include> | ||
|
||
<!-- Wrist camera --> | ||
<include file="$(find-pkg-share realsense2_camera)/launch/rs_launch.py"> | ||
<arg name="camera_name" value="wrist_mounted_camera"/> | ||
<arg name="serial_no" value="$(var wrist_mounted_camera_serial_no)"/> | ||
<arg name="device_type" value="D415"/> | ||
<arg name="depth_module.profile" value="640x480x6"/> | ||
<arg name="pointcloud.enable" value="True"/> | ||
<arg name="pointcloud.ordered_pc" value="True"/> | ||
<arg name="decimation_filter.enable" value="False"/> | ||
|
||
<!-- information about the topics the camera publishes the raw image and info --> | ||
<arg name="rgb_info" value="/wrist_mounted_camera/color/camera_info"/> | ||
<arg name="rgb_image" value="/wrist_mounted_camera/color/image_raw"/> | ||
|
||
<!-- By adding registered_rgb_depth_pair, This camera can be used for "Set Transform From Click" --> | ||
<arg name="registered_rgb_depth_pair.depth_info" value="/wrist_mounted_camera/depth/camera_info"/> | ||
<arg name="registered_rgb_depth_pair.depth_image" value="/wrist_mounted_camera/depth/image_rect_raw"/> | ||
<arg name="registered_rgb_depth_pair.registered_info" value="/wrist_mounted_camera/depth_registered/camera_info"/> | ||
<arg name="registered_rgb_depth_pair.registered_image" value="/wrist_mounted_camera/depth_registered/image_rect"/> | ||
</include> | ||
</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 was deleted.
Oops, something went wrong.
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
5 changes: 5 additions & 0 deletions
5
src/picknik_ur_gazebo_config/launch/sim/agent_bridge.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<include file="$(find-pkg-share moveit_studio_agent)/launch/studio_agent_bridge.launch.xml"/> | ||
<include file="$(find-pkg-share moveit_studio_rest_api)/launch/rest_api.launch.xml"/> | ||
</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 |
---|---|---|
|
@@ -7,6 +7,7 @@ install( | |
DIRECTORY | ||
config | ||
description | ||
launch | ||
waypoints | ||
objectives | ||
DESTINATION | ||
|
5 changes: 5 additions & 0 deletions
5
src/picknik_ur_gazebo_scan_and_plan_config/launch/agent_bridge.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<include file="$(find-pkg-share moveit_studio_agent)/launch/studio_agent_bridge.launch.xml"/> | ||
<include file="$(find-pkg-share moveit_studio_rest_api)/launch/rest_api.launch.xml"/> | ||
</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 |
---|---|---|
|
@@ -7,6 +7,7 @@ install( | |
DIRECTORY | ||
config | ||
description | ||
launch | ||
meshes | ||
objectives | ||
waypoints | ||
|
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,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<include file="$(find-pkg-share moveit_studio_agent)/launch/studio_agent_bridge.launch.xml"/> | ||
<include file="$(find-pkg-share moveit_studio_rest_api)/launch/rest_api.launch.xml"/> | ||
</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 |
---|---|---|
|
@@ -7,6 +7,7 @@ install( | |
DIRECTORY | ||
config | ||
description | ||
launch | ||
objectives | ||
waypoints | ||
DESTINATION | ||
|
This file was deleted.
Oops, something went wrong.
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
5 changes: 5 additions & 0 deletions
5
src/picknik_ur_multi_arm_config/launch/agent_bridge.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<include file="$(find-pkg-share moveit_studio_agent)/launch/studio_agent_bridge.launch.xml"/> | ||
<include file="$(find-pkg-share moveit_studio_rest_api)/launch/rest_api.launch.xml"/> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<include file="$(find-pkg-share moveit_studio_agent)/launch/studio_agent_bridge.launch.xml"/> | ||
<include file="$(find-pkg-share moveit_studio_rest_api)/launch/rest_api.launch.xml"/> | ||
</launch> |
Oops, something went wrong.