Skip to content
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

Fix register cad part objective #396

Merged
merged 2 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
<TreeNodesModel>
<SubTree ID="Load Mesh as Green Pointcloud">
<output_port name="point_cloud" default="{green_cloud}" />
<input_port name="_collapsed" default="true" />
<input_port name="initial_pose" default="{stamped_pose}" />
<MetadataFields>
<Metadata subcategory="Perception - 3D Point Cloud" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
<TreeNodesModel>
<SubTree ID="Load Mesh as Red Pointcloud">
<output_port name="point_cloud" default="{red_cloud}" />
<input_port name="_collapsed" default="false" />
<input_port name="initial_pose" default="{stamped_pose}" />
<MetadataFields>
<Metadata subcategory="Perception - 3D Point Cloud" />
Expand Down
6 changes: 3 additions & 3 deletions src/arm_on_rail_sim/objectives/register_cad_part.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<BehaviorTree ID="Register CAD Part" _description="" _favorite="true">
<Control ID="Sequence" name="TopLevelSequence">
<Action ID="ClearSnapshot" />
<SubTree ID="Look at table" _collapsed="true" />
<SubTree ID="Look at table" _collapsed="false" />
<Action
ID="CreateStampedPose"
position_xyz="0.02;.75;0.58"
Expand All @@ -15,7 +15,7 @@
ID="Load Mesh as Red Pointcloud"
_collapsed="false"
output_cloud="{red_cloud}"
initial_pose="{stamped_pose}"
initial_pose="{pose_stamped}"
point_cloud="{red_cloud}"
/>
<Action ID="SendPointCloudToUI" point_cloud="{red_cloud}" />
Expand All @@ -41,7 +41,7 @@
ID="Load Mesh as Green Pointcloud"
_collapsed="false"
output_cloud="{green_cloud}"
initial_pose="{stamped_pose}"
initial_pose="{pose_stamped}"
point_cloud="{green_cloud}"
/>
<Action
Expand Down
Loading