ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
11

need explanation on sensor_msgs/LaserScan.msg

asked 2014-12-03 12:09:09 -0500

Aarif gravatar image

Hi, i am new in ROS, the message Definition of a LaserScan.msg is as follows:-

std_msgs/Header header
float32 angle_min
float32 angle_max
float32 angle_increment
float32 time_increment
float32 scan_time
float32 range_min
float32 range_max
float32[] ranges
float32[] intensities

i want to know the what information these variable holds and how can i manipulate them to extract the distance from an obstacle.

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
27

answered 2014-12-03 13:14:12 -0500

bvbdort gravatar image

updated 2016-03-05 02:52:23 -0500

Doc: sensor_msgs..LaserScan has explanation for all the variables.

Looking at the code Publish_a_LaserScan_Message will gives good picture of variables.

laser scanner view of hokuyo URG-04LX-UG01 laser scanner

image description

red,green are x,y-axes


Values for above scanner

    angle_min= -135 * (pi/180); //angle correspond to FIRST beam in scan ( in rad)
    angle_max= 135 * (pi/180); //angle correspond to LAST beam in scan ( in rad)
    angle_increment =0.25 * (pi/180); // Angular resolution i.e angle between 2 beams

   // lets assume sensor gives 50 scans per second. i.e every 20 milli seconds 1 scan with 1081 beams.
   // Each beam is measured in  (20 ms/ 1081 ) ~ = 0.0185 ms

    time_increment  = (1 / 50) / (1081); 

    scan_time = ;   // scan is collected at which time
    range_min =0 ; // in meters
    range_max = 20; // scan can measure upto this range
    // ranges is array of 1081 floats for each laser beam
    ranges[0] = //distance measure corresponds to angle -135 deg
    ranges[1] = //distance measure corresponds to angle -134.75 deg
    .
    .
    .
    ranges[1080] = //distance measure corresponds to angle +135 deg


    //To understand Intensities 
    //if a laser beam hits reflective surface like glass it will have intensity 1. 
    //And if beam hit some surface which absorbs laser , then intensity is zero. 
    //Middle values are different surfaces in between.

Header header            # timestamp in the header is the acquisition time of 
                         # the first ray in the scan.
                         #
                         # in frame frame_id, angles are measured around 
                         # the positive Z axis (counterclockwise, if Z is up)
                         # with zero angle being forward along the x axis

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] - if your scanner
                         # is moving, this will be used in interpolating position
                         # of 3d points
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].  If your
                         # device does not provide intensities, please leave
                         # the array empty.

Obstacle distance calculation is easy

image description

if r, θ are range and angle from one scan laser scan obstacle is at (x,y) = ( rcosθ, rsinθ ) in laser frame.

To make sense about θ , here imagine your laser has 180 deg view and now looking towards x-axis and ray along postive y-axis is +90 degress and negative y-axis is -90 degree.

agnle_min = -90    
agnle_max = 90
edit flag offensive delete link more

Comments

hi @bvbdort, i have gone through Doc: sensor_msgs..LaserScan, but i could not properly understand what those variable holds in them eg range_max, ranges, intensities ect, that's why I've posted this question for a brief explanation.

Aarif gravatar image Aarif  ( 2014-12-04 12:13:53 -0500 )edit

@Aarif , Max reading depends on what laser you are using , it can be 5m or 30m or different depending on laser you are using. Min reading is zero. To understand Intensities , if a laser beam hits reflective surface like glass it will have intenstiy 1.

bvbdort gravatar image bvbdort  ( 2014-12-04 12:52:30 -0500 )edit

And if beam hit some suface which absorbs laser , then intensity is zero. and middle values are different sufaces with relective nature.

Please let me know what exactly you are trying to understand.

bvbdort gravatar image bvbdort  ( 2014-12-04 12:53:48 -0500 )edit

thank you so much @bvbdort, can you please explain me about all the variables, thanks in advance. :)

Aarif gravatar image Aarif  ( 2014-12-04 12:54:36 -0500 )edit

hi @bvbdort, i have a P3AT spawned in Usarsim Simulator, i want measure its distance with wall or any other obstacle, for this i need to subscribe laser_scan topic which will give the data in the laser_scan.msg format which has these variables, thats why i wanted to know about these variables. Thnks

Aarif gravatar image Aarif  ( 2014-12-04 13:08:59 -0500 )edit

if you are looking for lms200 values specifically, go through lms200 data sheet

bvbdort gravatar image bvbdort  ( 2014-12-04 14:08:51 -0500 )edit

Thank you very much @bvbdort, now i've understand the things. :)

Aarif gravatar image Aarif  ( 2014-12-05 06:50:32 -0500 )edit
1

Wow. (pi/3.14) Won't they be just 1 and should be eliminated instead.

cybodroid gravatar image cybodroid  ( 2016-02-17 23:29:36 -0500 )edit

Question Tools

7 followers

Stats

Asked: 2014-12-03 12:09:09 -0500

Seen: 24,736 times

Last updated: Mar 05 '16