Skip to content

Commit faf6db5

Browse files
committed
Change favorites and Objective names
1 parent 74f86ab commit faf6db5

15 files changed

+47
-36
lines changed

src/lab_sim/objectives/_scan_scene.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@
1414
joint_group_name="manipulator"
1515
controller_names="joint_trajectory_controller"
1616
waypoint_name="Park Far Right"
17+
acceleration_scale_factor="1.0"
18+
controller_action_server="/joint_trajectory_controller/follow_joint_trajectory"
19+
keep_orientation="false"
20+
keep_orientation_tolerance="0.05"
21+
link_padding="0.01"
22+
seed="0"
23+
velocity_scale_factor="1.0"
1724
/>
1825
<SubTree ID="Take Scene Camera Snapshot" _collapsed="true" />
1926
<SubTree
@@ -22,6 +29,13 @@
2229
joint_group_name="manipulator"
2330
controller_names="joint_trajectory_controller"
2431
waypoint_name="Look at Table"
32+
acceleration_scale_factor="1.0"
33+
controller_action_server="/joint_trajectory_controller/follow_joint_trajectory"
34+
keep_orientation="false"
35+
keep_orientation_tolerance="0.05"
36+
link_padding="0.01"
37+
seed="0"
38+
velocity_scale_factor="1.0"
2539
/>
2640
</Control>
2741
</BehaviorTree>

src/lab_sim/objectives/close_gripper.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
12
<root BTCPP_format="4" main_tree_to_execute="Close Gripper">
23
<BehaviorTree
34
ID="Close Gripper"
45
_description="Close the gripper"
5-
_favorite="true"
6+
_favorite="false"
67
>
78
<Control ID="Sequence" name="root">
89
<Action

src/lab_sim/objectives/grasp_pose_using_yaml.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<BehaviorTree
55
ID="Grasp Pose Using Yaml"
66
_description="Reads a YAML file for grasp pose offset and picks up an object that has an AprilTag marker."
7-
_favorite="true"
7+
_favorite="false"
88
>
99
<Control ID="Sequence" name="TopLevelSequence">
1010
<SubTree ID="Open Gripper" />

src/lab_sim/objectives/joint_diagnostic.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
12
<root BTCPP_format="4" main_tree_to_execute="Joint Diagnostic">
23
<!--//////////-->
34
<BehaviorTree
45
ID="Joint Diagnostic"
56
_description="Example of cycling through the min and max limits of a single joint, for hardware testing"
6-
_favorite="true"
7+
_favorite="false"
78
>
89
<Control ID="Sequence" name="TopLevelSequence">
910
<!--Setup by moving home-->

src/lab_sim/objectives/load_and_execute_joint_trajectory.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="UTF-8" ?>
22
<root BTCPP_format="4" main_tree_to_execute="Load and Execute Joint Trajectory">
33
<!--//////////-->
44
<BehaviorTree
55
ID="Load and Execute Joint Trajectory"
66
_description="Load a trajectory that was saved as a YAML file"
7-
_favorite="true"
7+
_favorite="false"
88
>
99
<Control ID="Sequence" name="TopLevelSequence">
1010
<!--Make sure to move the robot to the same starting position as the saved trajectory starts, otherwise the joint_trajectory_controller will use joint interpolation to align the robot with the path-->

src/lab_sim/objectives/ml_segment_image_from_text_prompt.xml renamed to src/lab_sim/objectives/ml_segment_image.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
2-
<root BTCPP_format="4" main_tree_to_execute="ML Segment Image from Text Prompt">
2+
<root BTCPP_format="4" main_tree_to_execute="ML Segment Image">
33
<!--//////////-->
44
<BehaviorTree
5-
ID="ML Segment Image from Text Prompt"
6-
_description="Run an ML model to find all objects and visualize the masks with bounding boxes."
5+
ID="ML Segment Image"
6+
_description="Run an ML model to find all objects and visualize the masks with bounding boxes, from a text prompt."
77
_favorite="true"
88
>
99
<Control ID="Sequence">
@@ -27,7 +27,7 @@
2727
</Control>
2828
</BehaviorTree>
2929
<TreeNodesModel>
30-
<SubTree ID="ML Segment Image from Text Prompt">
30+
<SubTree ID="ML Segment Image">
3131
<MetadataFields>
3232
<Metadata runnable="true" />
3333
<Metadata subcategory="Application - ML (GPU Recommended)" />

src/lab_sim/objectives/ml_segment_point_cloud_from_text_prompt.xml renamed to src/lab_sim/objectives/ml_segment_point_cloud.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
2-
<root
3-
BTCPP_format="4"
4-
main_tree_to_execute="ML Segment Point Cloud from Text Prompt"
5-
>
2+
<root BTCPP_format="4" main_tree_to_execute="ML Segment Point Cloud">
63
<!--//////////-->
74
<BehaviorTree
8-
ID="ML Segment Point Cloud from Text Prompt"
9-
_description="Captures a point cloud and segments out all possible objects."
5+
ID="ML Segment Point Cloud"
6+
_description="Captures a point cloud and segments out all possible objects from a text prompt"
107
_favorite="true"
118
>
129
<Control ID="Sequence">
@@ -32,7 +29,7 @@
3229
</Control>
3330
</BehaviorTree>
3431
<TreeNodesModel>
35-
<SubTree ID="ML Segment Point Cloud from Text Prompt">
32+
<SubTree ID="ML Segment Point Cloud">
3633
<MetadataFields>
3734
<Metadata runnable="true" />
3835
<Metadata subcategory="Application - ML (GPU Recommended)" />

src/lab_sim/objectives/ml_segment_point_cloud_from_clicked_point.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<BehaviorTree
88
ID="ML Segment Point Cloud from Clicked Point"
99
_description="Captures a point cloud and requests the user to click on three objects in the image to be segmented. The point cloud is then filtered to only include the selected objects."
10-
_favorite="true"
10+
_favorite="false"
1111
>
1212
<Control ID="Sequence">
1313
<SubTree

src/lab_sim/objectives/ml_grasp_object_from_text_prompt.xml renamed to src/lab_sim/objectives/pick_1_pill_bottle.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
2-
<root BTCPP_format="4" main_tree_to_execute="ML Grasp Object from Text Prompt">
2+
<root BTCPP_format="4" main_tree_to_execute="Pick 1 Pill Bottle">
33
<!--//////////-->
44
<BehaviorTree
5-
ID="ML Grasp Object from Text Prompt"
5+
ID="Pick 1 Pill Bottle"
66
_description="Captures and segments objects from a point cloud based on a text prompt. Then grasps the first object returned from the segmentation."
77
_favorite="true"
88
>
@@ -124,7 +124,7 @@
124124
</Control>
125125
</BehaviorTree>
126126
<TreeNodesModel>
127-
<SubTree ID="ML Grasp Object from Text Prompt">
127+
<SubTree ID="Pick 1 Pill Bottle">
128128
<MetadataFields>
129129
<Metadata runnable="true" />
130130
<Metadata subcategory="Application - ML (GPU Recommended)" />

src/lab_sim/objectives/ml_auto_grasp_object_from_text_prompt.xml renamed to src/lab_sim/objectives/pick_all_pill_bottles.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
2-
<root
3-
BTCPP_format="4"
4-
main_tree_to_execute="ML Auto Grasp Object from Text Prompt"
5-
>
2+
<root BTCPP_format="4" main_tree_to_execute="Pick All Pill Bottles">
63
<!--//////////-->
74
<BehaviorTree
8-
ID="ML Auto Grasp Object from Text Prompt"
9-
_description="Uses ML models to identify and grasp plan to pick up objects."
5+
ID="Pick All Pill Bottles"
6+
_description="Uses ML models to repeatedly identify and grasp plan to pick up objects."
107
_favorite="true"
118
>
129
<Control ID="Sequence" name="TopLevelSequence">
@@ -113,7 +110,7 @@
113110
</Control>
114111
</BehaviorTree>
115112
<TreeNodesModel>
116-
<SubTree ID="ML Auto Grasp Object from Text Prompt">
113+
<SubTree ID="Pick All Pill Bottles">
117114
<MetadataFields>
118115
<Metadata runnable="true" />
119116
<Metadata subcategory="Application - ML (GPU Recommended)" />

0 commit comments

Comments
 (0)