Main Content

start

Start streaming point clouds from SICK 3-D lidar sensor

Since R2026a

    Description

    Add-On Required: This feature requires the Lidar Toolbox Support Package for SICK Lidar Sensors add-on.

    start(slObj) starts streaming point clouds from the SICK® lidar sensor specified by the sicklidar object slObj. The function deletes all existing point clouds in the object buffer before adding new point clouds.

    example

    Examples

    collapse all

    Create a sicklidar object. Ensure that you specify the correct IP address for your sensor.

    slObj = sicklidar(IPAddress="192.168.0.112");

    Start streaming point clouds from the connected sensor, stream for 10 seconds, and then stop streaming.

    start(slObj)
    pause(10)
    stop(slObj)

    After streaming, display the number of point clouds stored in the object buffer.

    disp(slObj.NumPointClouds)
        69
    

    Input Arguments

    collapse all

    SICK 3-D lidar sensor connection, specified as a sicklidar object.

    Version History

    Introduced in R2026a