lidarParameters
Description
A lidarParameters object stores the parameters of a lidar sensor.
To convert unorganized point clouds into organized point clouds using the pcorganize
function, you must specify these sensor parameters. For more information, see Lidar Sensor Parameters.
Creation
Syntax
Description
returns the sensor parameters of the specified sensor params = lidarParameters(sensorName,horizontalResolution)sensorName as a
lidarParameters object. horizontalResolution
specifies the HorizontalResolution property. Use this syntax to load
the parameters of a supported sensor. See Supported Sensors.
stores parameters for a uniform beam configuration lidar sensor. The
params = lidarParameters(verticalResolution,verticalFoV,horizontalResolution)verticalResolution, verticalFoV, and
horizontalResolution arguments set the
VerticalResolution, VerticalFoV, and
HorizontalResolution properties, respectively.
stores parameters for a gradient beam configuration lidar sensor. The
params = lidarParameters(verticalBeamAngles,horizontalResolution)verticalBeamAngles and horizontalResolution
arguments set the VerticalBeamAngles and
HorizontalResolution properties, respectively.
specifies properties using one or more name-value arguments, in addition to any
combination of input arguments from previous syntaxes. For example,
params = lidarParameters(___,Name=Value)lidarParameters("HDL32E",horizontalResolution,SweepStartAngle=180)
specifies the start angle of the sensor sweep as 180 degrees.