pointnetplusNetwork
Create PointNet++ segmentation network
Since R2024a. Recommended over pointnetplusLayers
.
Syntax
Description
PointNet++ is a neural network that predicts point-wise labels for an unorganized
lidar point cloud. The network partitions the input points into a set of clusters and then
extracts the features using a multi-layer perceptron (MLP) network. To use this network for
semantic segmentation, train it using the trainnet
(Deep Learning Toolbox)
function.
creates a PointNet++ segmentation network and returns it as net
= pointnetplusNetwork(numPoints
,pointsDim
,numClasses
)net
, a
dlnetwork
(Deep Learning Toolbox) object.
specifies options using one or more name-value arguments in addition to the input arguments
in the preceding syntax. For example,
net
= pointnetplusNetwork(___,Name=Value
)pointnetplusNetwork(numPoints,pointsDim,numClasses,ClusterSize=32)
creates a PointNet++ network with 32 points in each cluster.