Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

U-Net: Convolutional Networks for Biomedical Image Segmentation #2

Open
Shaw0202 opened this issue Aug 22, 2019 · 0 comments
Open

U-Net: Convolutional Networks for Biomedical Image Segmentation #2

Shaw0202 opened this issue Aug 22, 2019 · 0 comments

Comments

@Shaw0202
Copy link
Collaborator

Shaw0202 commented Aug 22, 2019

概要

  • アルゴリズム系

現在広く使われているCNNを用いた画像セグメンテーション手法。FCNを発展させたようなネットワーク構造になっている。ISBIと呼ばれるチャレンジで従来のsliding window手法を上回った。かつてのslidingwindowによるsegmentationのアプローチよりも高速なネットワーク。

アルゴリズム/実験手法

エンコーダ側はconvとpoolingを繰り返すことで、深さ方向(カーネルorフィルタサイズ)が増えていくが局所情報が失われていく。デコーダにおいてup-convを行っている際に、それぞれのエンコーダ側のpooling後の情報を重ね合わせることにより局所的な情報を保っている。up-convは以下が分かりやすい。

条件,結果

バイオメディカル用の画像のために作られたネットワーク。ImageNetのように数千枚の学習画像を用意するのは不可能なので、学習データが少なくても精度が出るように工夫されたネットワーク。

上の図のように、高解像度の画像に対しては、mirror paddingを行って、識別させる方法を取るといいと書かれている。

実装

実装はcaffeでsgdを使っているらしい。softmax関数を使用しているため、損失関数はクロスエントロピー誤差である。

data augmentation

一通りのことを行っているがelastic deformationsが有用だったと述べられている。

感想,所感

5ページ目の中盤のmorphological operationsというのがよくわからなかった。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant