Skip to content

seqsense/urg_stamped

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

urg_stamped

Precisely and accurately stamped URG driver for ROS

Background and Algorithm

2D-LIDAR URG series provides 1ms resolution timestamp and exclusive clock synchronization mode. It was hard to compensate clock drift during measurement using them. Also, the resolution of the timestamp was not enough for a high-speed motion of the sensor.

So, urg_stamped estimates sub-millisecond by the following algorithm:

  • Determine sensor internal clock state (clock offset and gain) using TM command (Triggered by 30s timer by default)
    • UTM/UST(UUST1): (UTM and UST(UUST1) responds to TM command as expected in SCIP2 protocol)
        1. Observe sub-millisecond clock offset by finding increment of millisecond resolution sensor timestamp
        1. Observe clock gain from multiple observations of the clock offset
    • UST(UUST2): (UST(UUST2) responds to TM command on the next 5ms frame which breaks SCIP2's time synchronization logic)
        1. Request TM command many times with different timing
        1. Filter responses with large delay
        1. Collect sensor response timings which should be synchronized to the sensor timestamp increment
        1. Observe sub-millisecond clock offset based on the sensor response timings and sensor timestamps
        1. Observe clock gain from multiple observations of the clock offset
  • Determine scan origin time and interval
    • UTM: (UTM sends scan data right after the scan is finished)
        1. Observe scan timing based on scan data arrival time
    • UST: (UST sends scan data on the next 1ms frame after the scan is finished)
        1. Find sensor scan timestamp jitter
        1. Observe scan origin time and scan interval using scan timestamp jitter
  • Calculate sub-millisecond scan timestamp based on the observed scan origin time and scan interval

LaserScan data is stopped during sensor internal clock estimation which takes at most ~100ms on UTM/UUST1 and ~1s on UUST2. To avoid stopping all sensors at once on multi-sensor configuration, urg_stamped automatically adjusts the timing of sensor internal clock estimation based on the messages on urg_stamped_sync_start topic.

Usages

Topics and major parameters are designed to be compatible with urg_node.

Published Topics

  • scan (sensor_msgs::LaserScan)

Parameters

urg_node compatible parameters

  • ip_address (string): device IP address
  • ip_port (int): device TCP/IP port
  • frame_id (string): frame_id of published scans
  • publish_intensity (bool): fill intensity field if true
  • error_limit (int): reset the sensor and exit if errors occur more than this count

urg_stamped specific parameters

  • clock_estim_interval (double): sensor internal clock state estimation interval in seconds (dropping several scans during estimation)
  • fallback_on_continuous_scan_drop (int): fallback to naive 1ms accuracy timestamp if failed to estimate sub-millisecond timestamp more than this value

Known Limitations

  • Timestamp estimation is designed for sensors connected by ethernet interface.
    • Tested on the following sensor models:
      • UTM-30LX-EW
      • UST-05LX
      • UST-20LX
      • UST-30LC
    • UUST2 model of UST series (firmware version >=4.0.0) takes longer time to perform the time synchronization due to the sensor's behavior.
  • Some scans are dropped due to the clock synchronization and delay estimation.

Comparison with urg_node

Configurations

Three UTM-30LX-EWs are mounted on a velocity controlled turntable, as shown below, to reconstruct 3-D point cloud from 2-D scans. The accuracy of the timestamp affects offset and precision of the timestamp affects the distribution of the pointcloud.

SQ-LIDAR

Results

Note

Following results are based on the previous algorithm (urg_stamped<0.2.0). They will be updated later.

The image below shows point cloud with 1 rad/s of the turntable which can be assumed as a reference. (decay time of the point cloud: 10 seconds)

urg_stamped 1 rad/s

urg_node has large error even if calibrate_time and synchronize_time options are enabled (captioned as urg_node (sync)). urg_stamped has better timestamp characteristics comparing with urg_node.

  10 rad/s 20 rad/s
urg_stamped urg_stamped 10 rad/s urg_stamped 20 rad/s
urg_node urg_node 10 rad/s urg_node 20 rad/s
urg_node
(sync)
urg_node sync 10 rad/s urg_node sync_20 rad/s