Skip to content

Commit

Permalink
improve speed
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharsangam committed Nov 26, 2024
1 parent ac4736c commit 227301d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spot_rl_experiments/spot_rl/skills/atomic_skills.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ def update_and_check_status(self, goal_dict: Dict[str, Any]) -> Tuple[bool, str]
success_status_from_user_feedback = map_user_input_to_boolean(user_prompt)

# Get the images from the env and check if the image is being block by the object
time.sleep(3.0)
time.sleep(1.5)

# Get the hand depth images to test if the gripper is holding something
hand_image_responses = self.spot.get_hand_image()
Expand Down
2 changes: 1 addition & 1 deletion spot_rl_experiments/spot_rl/utils/search_table_location.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ def detect_place_point_by_pcd_method(
spot.set_arm_joint_positions(np.deg2rad(gaze_arm_angles), 1)

# Wait for a bit to stabalized the gripper
time.sleep(1.5)
time.sleep(1.0)

(
img,
Expand Down

0 comments on commit 227301d

Please sign in to comment.