Skip to content

Commit 0d76f4d

Browse files
committed
minor fixes
1 parent fb72298 commit 0d76f4d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Diff for: launch/lss_demo.launch

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
<arg name="diffphys" default="false" doc="Whether to run the diff physics node or not"/>
55
<arg name="slam" default="false" doc="Whether to run the SLAM node or not"/>
66
<arg name="lss_debug" default="false"/>
7-
<arg name="weights" default="$(dirname)/../config/weights/lss/train_lss.pt"/>
7+
<arg name="weights" default="$(dirname)/../config/weights/lss/lss.pt"/>
88

9-
<arg name="bag" default="$(dirname)/../data/robingas/data/22-09-27-unhost/husky/husky_2022-09-27-15-01-44.bag"/>
10-
<!-- <arg name="bag" default="$(dirname)/../data/robingas/data/22-10-27-unhost-final-demo/husky_2022-10-27-15-33-57.bag"/> -->
9+
<!-- <arg name="bag" default="$(dirname)/../data/robingas/data/22-09-27-unhost/husky/husky_2022-09-27-15-01-44.bag"/> -->
10+
<arg name="bag" default="$(dirname)/../data/robingas/data/22-10-27-unhost-final-demo/husky_2022-10-27-15-33-57.bag"/>
1111
<arg name="img_topics" default="['/camera_front/image_color/compressed',
1212
'/camera_left/image_color/compressed',
13-
'/camera_right/image_color/compressed',
14-
'/camera_rear/image_color/compressed']"/>
13+
'/camera_rear/image_color/compressed',
14+
'/camera_right/image_color/compressed']"/>
1515
<arg name="camera_info_topics" default="['/camera_front/camera_info',
1616
'/camera_left/camera_info',
17-
'/camera_right/camera_info',
18-
'/camera_rear/camera_info']"/>
17+
'/camera_rear/camera_info',
18+
'/camera_right/camera_info']"/>
1919
<arg name="calib_path" default="$(dirname)/../data/robingas/data/22-09-27-unhost/husky/husky_2022-09-27-15-01-44_trav/calibration/"/>
2020

2121
<!-- <arg name="bag" default="$(dirname)/../data/robingas/data/22-08-12-cimicky_haj/marv/ugv_2022-08-12-15-18-34.bag"/> -->

Diff for: nodes/hm_estimator

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class HeightMapEstimator:
118118
time=msg.header.stamp,
119119
timeout=rospy.Duration(0.5))
120120
except (tf2_ros.LookupException, tf2_ros.ConnectivityException, tf2_ros.ExtrapolationException):
121-
rospy.logwarn('Could not get transform from %s to %s' % (msg.header.frame_id, self.cfg.robot_frame))
121+
rospy.logwarn('Could not get transform from %s to %s' % (msg.header.frame_id, self.robot_frame))
122122
return
123123
Tr = numpify(tf.transform).reshape((4, 4))
124124
points = np.matmul(Tr[:3, :3], points.T).T + Tr[:3, 3]

0 commit comments

Comments
 (0)