pointPillarsObjectDetector
Description
The pointPillarsObjectDetector
object defines a PointPillars
object detector. To detect objects in a point cloud, pass the trained PointPillars object
detector to the detect
object
function.
If you have a pretrained PointPillars deep learning network, you can use the
pointPillarsObjectDetector
function to create the
pointPillarsObjectDetector
object.
If you have training data, you can create an untrained
pointPillarsObjectDetector
object and use the trainPointPillarsObjectDetector
function to train the model.
Creation
Syntax
Description
creates an untrained PointPillars object detector and sets the
detector
= pointPillarsObjectDetector(pcRange
,class
,anchorBox
)PointCloudRange
, ClassNames
, and
AnchorBoxes
properties.
To train the object detector, you must specify it as an input to the trainPointPillarsObjectDetector
function.
creates a PointPillars object detector by using the specified pretrained network
detector
= pointPillarsObjectDetector(net
,pcRange
,class
,anchorBox
)net
. This syntax sets the Network
property
in addition to the properties from the previous syntax.
sets the detector
= pointPillarsObjectDetector(___,Name=Value
)ModelName
, VoxelSize
,
NumPillars
and NumPointsPerPillar
properties by
using name-value arguments in addition to any combination of input arguments from
previous syntaxes. For example,
pointPillarsObjectDetector(pcRange,class,anchorBox,ModelName="customDetector")
creates a PointPillars object detector with the name
"customDetector"
.
Properties
Object Functions
detect | Detect objects using PointPillars object detector |
Extended Capabilities
Version History
Introduced in R2021bSee Also
Apps
Functions
Topics
- Lidar 3-D Object Detection Using PointPillars Deep Learning
- Code Generation for Lidar Object Detection Using PointPillars Deep Learning
- Unorganized to Organized Conversion of Point Clouds Using Spherical Projection
- Get Started with PointPillars
- Getting Started with Point Clouds Using Deep Learning
- Datastores for Deep Learning (Deep Learning Toolbox)