You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In geometry.py (downloaded from radar_indoor_calibration directory in the provided dataset), I'm requesting access to radar_height data for each dataset group to enhance coordinate mapping accuracy. Additionally, I need assistance with transforming world coordinates to camera image coordinates, particularly in calculating the extrinsic matrix.
def radar2camera(self, radar_xy, radar_height=None):
"""Convenience function combining `radar2world` and `world2camera`"""
xyz = self.radar2world(radar_xy, radar_height)
uvz = self.world2camera(xyz)
return uvz
The text was updated successfully, but these errors were encountered:
In geometry.py (downloaded from radar_indoor_calibration directory in the provided dataset), I'm requesting access to radar_height data for each dataset group to enhance coordinate mapping accuracy. Additionally, I need assistance with transforming world coordinates to camera image coordinates, particularly in calculating the extrinsic matrix.
The text was updated successfully, but these errors were encountered: