フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Converting own CNN network into segmentation network

1 回表示 (過去 30 日間)
Sania Gul
Sania Gul 2019 年 11 月 26 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have to design a segmentation network with input image size [512 78 1]. I have set the layers in the encoder path but don't know how to design the decoder part. Code for Encoder part is given below. Kindly tell me the instruction to construct a similar decoder part for segmentation.segnetLayers() is not working. Your help will be highly appreciated.
layers = [
imageInputLayer([512 78 1])
convolution2dLayer(3,16,'Padding',1)
batchNormalizationLayer
reluLayer
maxPooling2dLayer(2,'Stride',2)
convolution2dLayer(3,32,'Padding',1)
batchNormalizationLayer
reluLayer
fullyConnectedLayer(10)
softmaxLayer
classificationLayer
];

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by