オムライスの備忘録

数学・統計学・機械学習・プログラミングに関することを記す

【深層学習】SegNet

yhayato1320.hatenablog.com

Index

SegNet

画像処理の Segmentation に DeepLearning を適用する際の工夫のひとつ.

yhayato1320.hatenablog.com

Encoder と Decoder を連結させ、最終的に分類マップを出力する.

Decoder の Upsampling に着目した手法.

参考

  • SegNet: A Deep Convolutional Encoder-Decoder Architecture for Image Segmentation

Web サイト

  • U-Net:ディープラーニングによるSemantic Segmentation手法
    • U-NetとSegNetの違い
      • Encoderの各層で出力される特徴マップをDecoderの対応する各層の特徴マップに連結(concatenation)するアプローチを導入した点
      • スキップ接続
    • blog.negativemind.com