MATLAB: How to enable 3D deep learning support for convolution layer

2d3dconcatenationlayerconvolutiondepthconcatenationlayerlayer

I am trying to implement a point cloud classification network (3DmFV-Net) using MATLAB's new 3D layers support and was unable to find a 3D concatenation layer.
For 2D there is depthConcatenationLayer(), is there a 3D equivalent?

Best Answer

You can use the 'concatenationLayer' by passing depth dimension as 'Dim' to concatenate along depth. The 'Dim' is 4 for 3D data and 3 for 2D data. Please refer to the following link for more information:
Related Question