0

Rosanswers logo

Hi, the LaserScan ROS message is

Header header
float32 angle_min        # start angle of the scan [rad] 
float32 angle_max        # end angle of the scan [rad]
float32 angle_increment  # angular distance between measurements [rad]
float32 time_increment   # time between measurements [seconds] 
float32 scan_time        # time between scans [seconds]
float32 range_min        # minimum range value [m] 
float32 range_max        # maximum range value [m]
float32[] ranges         # range data [m] (Note: values < range_min or > range_max should be discarded)
float32[] intensities    # intensity data [device-specific units]

What are the intensities?

Thanks!

John


Originally posted by nodge on ROS Answers with karma: 65 on 2015-07-19

Post score: 1

1 Answers1

0

Rosanswers logo

The intensities field should contain the measured intensity (i.e. brightness) of the reflected laser beams. This is, however, device specific and thus you cannot really make any assumptions about the values. In general, the higher the value, the brighter the reflected laser beam.

You can use the intensities to make some assumptions about the properties of the scanned material. E.g. it is used to detect reflectors and reflector tape, as there the intensity of the reflected beam is, in general, higher than from other material.

E.g. the Hokyuo Laser scanner provides full intensities, whereas the Sick S300 only provides information about whether it detects a Reflector Tape (0 if none, not 0 if a reflector tape detected).


Originally posted by mgruhler with karma: 12390 on 2015-07-20

This answer was ACCEPTED on the original site

Post score: 8

Matthias
  • 5,805
  • 1
  • 1
  • 1