U-Netによるセマンティックセグメンテーション
Afficher commentaires plus anciens
深層学習を使用したセマンティック セグメンテーションをもとにセマンティックセグメンテーションを行うにあたって,U-netを使用したいと考えているのですがこの場合,ネットワーク作成の部分を
imageSize = [360 480 3];
numClasses = numel(classes);
lgraph = segnetLayers(imageSize,numClasses,'vgg16');
から
imageSize = [360 480 3];
numClasses = numel(classes);
lgraph = unetLayers(imageSize,numClasses,'vgg16');
に変更するだけでよいのでしょうか?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Deep Learning Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!