deeplabv3plusLayers
(To be removed) Create DeepLab v3+ convolutional neural network for semantic image segmentation
deeplabv3plusLayers
will be removed in a future release. Use the
deeplabv3plus
function instead. For more information, see Version History.
Syntax
Description
returns a DeepLab v3+ layer with the specified base network, number of classes, and image
size.layerGraph
= deeplabv3plusLayers(imageSize
,numClasses
,network
)
additionally sets the downsampling factor (output stride) [1] to either
layerGraph
= deeplabv3plusLayers(___,"DownsamplingFactor",value)8
or 16
. The downsampling factor sets the amount the
encoder section of DeepLab v3+ downsamples the input image.
Examples
Input Arguments
Output Arguments
Algorithms
When you use either the
xception
(Deep Learning Toolbox) ormobilenetv2
(Deep Learning Toolbox) base networks to create a DeepLab v3+ network, depth separable convolutions are used in the atrous spatial pyramid pooling (ASPP) and decoder subnetworks. For all other base networks, convolution layers are used.This implementation of DeepLab v3+ does not include a global average pooling layer in the ASPP.
References
[1] Chen, L., Y. Zhu, G. Papandreou, F. Schroff, and H. Adam. "Encoder-Decoder with Atrous Separable Convolution for Semantic Image Segmentation." Computer Vision — ECCV 2018, 833-851. Munic, Germany: ECCV, 2018.
Extended Capabilities
Version History
Introduced in R2019bSee Also
deeplabv3plus
| trainnet
(Deep Learning Toolbox) | semanticseg
| evaluateSemanticSegmentation
Topics
- Getting Started with Semantic Segmentation Using Deep Learning
- Deep Learning in MATLAB (Deep Learning Toolbox)