Skip to content

Commit

Permalink
#382 Fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelriemoliveira committed Apr 4, 2022
1 parent 94c106a commit 7a35250
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions atom_calibration/scripts/calibrate
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@ def main():
collection_name=selected_collection_key)

if transform_key == anchored_transform_key:
bound_max = [x + sys.float_info.epsilon for x in initial_transform]
bound_min = [x - sys.float_info.epsilon for x in initial_transform]
bound_max = [x + 2*sys.float_info.epsilon for x in initial_transform]
bound_min = [x - 2*sys.float_info.epsilon for x in initial_transform]
else:
bound_max = [+np.inf for x in initial_transform]
bound_min = [-np.inf for x in initial_transform]
Expand Down
2 changes: 1 addition & 1 deletion atom_calibration/scripts/test_label_depth_msg
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def main():

# seed = {'x':300, 'y':200}
# seed = {'x': 510, 'y': 180}
seed = {'x': 600, 'y': 195}
seed = {'x': 600, 'y': 175}

rospy.Subscriber('depth_image_topic', Image, functools.partial(callbackMessageReceived, seed=seed), queue_size=1)

Expand Down

0 comments on commit 7a35250

Please sign in to comment.