1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Semantic Segmentation】DeepLab(v3) : DeepLab(v2)との違いは?

Posted at

背景

[DeepLab(v2)](https://qiita.com/minh33/items/23030207de240edecc15)を調べたから次はDeepLab(v3)のupdateについて比較していきたいと思う。

version2からのupdate

![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/482094/6e9158d7-2965-0e8d-0c16-657b6ecfb00f.png)

DeepLab(V2)ではDilated conv が4種類rate=(6,12,18,24)とあったが大きなrateになると、filterが大きすぎて端っこの情報しか畳込んでいない事に気づきrate=24を削除した。
さらにImage Pooling(average pooling)と1x1 convolutionを足すことで画像サイズを多様化させた。

image.png

Multi-Gridという手法をResNetで特徴量を抽出するのに用いた。(a)普通のconvolutionを用いて画像全体の特徴を得ようとすると画像サイズを縮小しないとイケない(b)Dilated(Atrous) Convなら画像サイズを小さくせずに済む

image.png

実験した結果(1,2,1)が一番精度が良かったらしい。

結論

・ResNetにDilated(Atrous) Convを導入し、Multi-Gridで様々な比のrateで畳み込みしたこと ・ASSP Moduleの弱点を修正したこと

次はDeepLab(v3+)について調べたいと思う

参考文献

Rethinking Atrous Convolution for Semantic Image Segmentation https://arxiv.org/pdf/1706.05587.pdf#page=10&zoom=100,412,814
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?