-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft: Improve: panda_moveit: Add parameters for perception tutorial #181
Draft
130s
wants to merge
11
commits into
moveit:ros2
Choose a base branch
from
130s:feature-panda-moveit-perception
base: ros2
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
fe43f7b
ros2-ify panda_moveit_config
130s 1cd754c
Improve: panda_moveit: Add parameters for perception tutorial
130s 646722b
Adjust to upstream change (https://github.com/frankaemika/franka_ros/…
130s 4dd3eaa
panda_moveit_config: Improve defining octomap params by using 'launch…
130s 155e27b
panda_moveit_config: Fix octomap not showing. Attempt-1
130s 42cf472
panda_moveit_config: Fix octomap not showing. Attempt-2
130s 7af1804
panda_moveit_config: Fix octomap not showing. Attempt-3 (using https:…
130s f6babe6
Improve: Redability of panda_moveit_config/sensors_3d.yaml
130s 26b0179
Capability: Take an arg from outside of the .launch.py in panda_movei…
130s e116be8
Fix: perception: image_transport error https://github.com/ros-plannin…
130s e823edd
Changes reason unknown (Lost track of these changes. Can potentially …
130s File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro" name="panda"> | ||
<xacro:arg name="arm_id" default="panda"/> <!-- Name of this panda --> | ||
<xacro:arg name="hand" default="false"/> <!-- Should a franka_gripper be mounted at the flange?" --> | ||
<xacro:arg name="robot_ip" default=""/> <!-- IP address or hostname of the robot" --> | ||
<xacro:arg name="use_fake_hardware" default="false"/> | ||
<xacro:arg name="fake_sensor_commands" default="false"/> | ||
|
||
<xacro:include filename="$(find franka_description)/robots/panda_arm.xacro"/> | ||
<xacro:panda_arm arm_id="$(arg arm_id)" safety_distance="0.03"/> | ||
|
||
<xacro:if value="$(arg hand)"> | ||
<xacro:include filename="$(find franka_description)/robots/hand.xacro"/> | ||
<xacro:hand ns="$(arg arm_id)" rpy="0 0 ${-pi/4}" connected_to="$(arg arm_id)_link8" safety_distance="0.03"/> | ||
</xacro:if> | ||
<xacro:include filename="$(find franka_description)/robots/panda_arm.ros2_control.xacro"/> | ||
<xacro:panda_arm_ros2_control ns="$(arg arm_id)" robot_ip="$(arg robot_ip)" use_fake_hardware="$(arg use_fake_hardware)" fake_sensor_commands="$(arg fake_sensor_commands)"/> | ||
</robot> |
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,27 @@ | ||
sensors: | ||
- kinect_pointcloud | ||
#- kinect_depthimage | ||
kinect_pointcloud: | ||
filtered_cloud_topic: filtered_cloud | ||
max_range: 5.0 | ||
max_update_rate: 1.0 | ||
ns: kinect | ||
padding_offset: 0.1 | ||
padding_scale: 0.5 | ||
point_cloud_topic: /camera/depth_registered/points | ||
point_subsample: 1 | ||
sensor_plugin: occupancy_map_monitor/PointCloudOctomapUpdater | ||
kinect_depthimage: | ||
far_clipping_plane_distance: 5.0 | ||
filtered_cloud_topic: filtered_cloud | ||
image_topic: /camera/depth_registered/image_raw | ||
max_update_rate: 1.0 | ||
near_clipping_plane_distance: 0.3 | ||
ns: kinect | ||
padding_offset: 0.03 | ||
padding_scale: 4.0 | ||
queue_size: 5 | ||
sensor_plugin: occupancy_map_monitor/DepthImageOctomapUpdater | ||
shadow_threshold: 0.2 | ||
skip_vertical_pixels: 4 | ||
skip_horizontal_pixels: 6 |
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,11 +1,13 @@ | ||
sensors: | ||
- sensor_plugin: occupancy_map_monitor/DepthImageOctomapUpdater | ||
image_topic: /camera/depth_registered/image_raw | ||
queue_size: 5 | ||
near_clipping_plane_distance: 0.3 | ||
far_clipping_plane_distance: 5.0 | ||
shadow_threshold: 0.2 | ||
padding_scale: 4.0 | ||
padding_offset: 0.03 | ||
max_update_rate: 1.0 | ||
filtered_cloud_topic: filtered_cloud | ||
/**: | ||
sensors: | ||
ros__parameters: | ||
sensor_plugin: occupancy_map_monitor/DepthImageOctomapUpdater | ||
image_topic: /camera/depth_registered/image_raw | ||
queue_size: 5 | ||
near_clipping_plane_distance: 0.3 | ||
far_clipping_plane_distance: 5.0 | ||
shadow_threshold: 0.2 | ||
padding_scale: 4.0 | ||
padding_offset: 0.03 | ||
max_update_rate: 1.0 | ||
filtered_cloud_topic: filtered_cloud |
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,9 +1,12 @@ | ||
sensors: | ||
- sensor_plugin: occupancy_map_monitor/PointCloudOctomapUpdater | ||
point_cloud_topic: /camera/depth_registered/points | ||
max_range: 5.0 | ||
point_subsample: 1 | ||
padding_offset: 0.1 | ||
padding_scale: 1.0 | ||
max_update_rate: 1.0 | ||
filtered_cloud_topic: filtered_cloud | ||
/**: | ||
ros__parameters: | ||
sensor1: | ||
sensor_plugin: occupancy_map_monitor/PointCloudOctomapUpdater | ||
point_cloud_topic: /camera/depth_registered/points | ||
max_range: 5.0 | ||
point_subsample: 1 | ||
padding_offset: 0.1 | ||
padding_scale: 1.0 | ||
max_update_rate: 1.0 | ||
filtered_cloud_topic: filtered_cloud | ||
ns: kinect |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This single file is obviously not enough as some lines depend on
franka_description
pkg.