Skip to content

Commit

Permalink
chore: fixed ci/cd
Browse files Browse the repository at this point in the history
Signed-off-by: Kenzo Lobos-Tsunekawa <[email protected]>
  • Loading branch information
knzo25 committed Oct 3, 2024
1 parent e1d54fa commit b315c5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<arg name="rviz" default="true"/>

<arg name="mapping_min_range" default="7.0" description="Used to drop self reflections"/>
<arg name="mapping_max_range" default="100.0" description="Used to avoid innacurate points and speed up the process"/>
<arg name="mapping_max_range" default="100.0" description="Used to avoid inaccurate points and speed up the process"/>
<arg name="calibration_min_distance_between_frames" default="4.0" description="Min separation between calibration clouds to avoid correlation"/>
<arg name="dense_pointcloud_num_keyframes" default="30" description="Used to compensate the differente fovs"/>
<arg name="dense_pointcloud_num_keyframes" default="30" description="Used to compensate the different field of views"/>
<arg name="lidar_calibration_max_frames" default="3" description="Number of pointclouds used for calibration"/>

<let name="calibration_camera_optical_link_frames" value="['']"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,10 @@ def post_process(self, calibration_transforms: Dict[str, Dict[str, np.array]]):
]

result = {
self.base_link: {
calibration_lidar_frame: transform
for calibration_lidar_frame, transform in zip(
self.calibration_lidar_frames, base_to_calibration_lidar_transforms
)
}
self.base_link: dict(
zip(self.calibration_lidar_frames, base_to_calibration_lidar_transforms)
)
}

result[self.base_link][self.mapping_lidar_frame] = base_to_mapping_transform

return result

0 comments on commit b315c5c

Please sign in to comment.