Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
Pyramid-Based Fully Convolutional Networks for Cell Segmentation
Masanori YANO
October 11, 2019
Science
0
260
Pyramid-Based Fully Convolutional Networks for Cell Segmentation
論文LT会で作成した「Pyramid-Based Fully Convolutional Networks for Cell Segmentation」の説明資料です。
Masanori YANO
October 11, 2019
Tweet
Share
More Decks by Masanori YANO
See All by Masanori YANO
Novelty Detection Via Blurring
msnr
0
230
Y-Net: Joint Segmentation and Classification for Diagnosis of Breast Biopsy Images
msnr
0
300
Free-Form Image Inpainting with Gated Convolution
msnr
0
560
Memorizing Normality to Detect Anomaly: Memory-augmented Deep Autoencoder for Unsupervised Anomaly Detection
msnr
0
390
Move Evaluation in Go Using Deep Convolutional Neural Networks
msnr
1
600
AlphaX: eXploring Neural Architectures with Deep Neural Networks and Monte Carlo Tree Search
msnr
0
900
Towards Understanding Chinese Checkers with Heuristics, Monte Carlo Tree Search, and Deep Reinforcement Learning
msnr
0
330
SRCNN: Image Super Resolution Using CNN
msnr
0
150
One-Class Convolutional Neural Network
msnr
0
750
Other Decks in Science
See All in Science
mROS 2:組込みデバイス向けのROS 2ノード軽量実行環境
takasehideki
0
260
Pangeo Forge Tutorial Intoduction
rabernat
0
160
Information law about COVID-19
yoshimine77
0
150
20220423_オープンCAE関西_vtkFortran
kamakiri1225
1
190
20220216_球体周りの流れ抗力係数2_blockMeshでベースメッシュ作成
kamakiri1225
0
210
深層学習による自然言語処理 輪読会#5 資料
tok41
0
130
CompilerGym CGO'22
chriscummins
0
230
Accumulated Local Effects(ALE)で機械学習モデルを解釈する / TokyoR95
dropout009
2
3k
Tokyo.R RStudioでグラフをちょっときれいに出力する - CairoとAGG -
bob3bob3
0
630
An Investigation into the Correlation between a Country's Total Olympic Medal Count, GDP, and Freedom Index through History
asnowberger
1
160
Cryptanalyse de la machine Enigma : entre espionnage et mathématiques
jcsirot
0
140
SIGNATE ソニーグループ合同データ分析コンペティション(for Recruiting) 3rd Place Solution
yayaya
1
150
Featured
See All Featured
Code Review Best Practice
trishagee
43
9.3k
The Straight Up "How To Draw Better" Workshop
denniskardys
225
120k
Optimizing for Happiness
mojombo
365
63k
In The Pink: A Labor of Love
frogandcode
131
21k
A Modern Web Designer's Workflow
chriscoyier
689
180k
Fontdeck: Realign not Redesign
paulrobertlloyd
73
4.1k
Typedesign – Prime Four
hannesfritz
34
1.4k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
37
3.3k
Practical Orchestrator
shlominoach
178
8.6k
The Cult of Friendly URLs
andyhume
68
4.8k
Bash Introduction
62gerente
597
210k
Gamification - CAS2011
davidbonilla
75
3.9k
Transcript
画像処理&機械学習 論文LT会 #番外編 ~MICCAI 2019 予習編~ Pyramid-Based Fully Convolutional Networks
for Cell Segmentation 2019年10月11日(金) 矢農 正紀 (Masanori YANO)
論文 2 標題: Pyramid-Based Fully Convolutional Networks for Cell Segmentation
論文のURL: http://web.mst.edu/~yinz/Papers/ ⇒ MICCAI 2018の、細胞のSegmentationに関する論文 著者の所属は、アメリカのミズーリ工科大学 (Second Authorは、今秋からニューヨーク州立大学) 選んだ理由 ・MICCAI 2018の一覧で、題名を見た瞬間に気になった ⇒ Semantic Segmentationを解くCNNで、ピラミッド? ・Experimentsを見たら、比較対象に対し、わりと高い精度
Semantic Segmentationとは 3 入力画像に対して、画素レベルで何の物体か推論 参考になる資料 ⇒ #1の論文LT会の「semantic segmentation サーベイ」 https://www.slideshare.net/yoheiokawa/semantic-segmentation-141471958
引用元: https://arxiv.org/pdf/1411.4038.pdf FCNのFigure 1.
FCNとU-Net 4 FCN(Fully Convolutional Network) ・全結合を使用しないことで、任意サイズの入力画像に対応 ・前ページの図には記載がないが、スキップ接続(Add)あり U-Net ・MICCAI 2015で発表
・全結合なし、スキップ接続(Concatenate)あり 引用元: https://arxiv.org/pdf/1505.04597.pdf
Object Detection(物体検出)では 5 FPN(Feature Pyramid Network)の図が明快 (a) 複数の解像度を畳み込み各々の特徴マップを作ると遅い (b) 畳み込んだ最後の特徴マップだけでは解像度が粗い
(c) 複数の特徴マップを利用すると下の方の特徴が弱い (d) FPNの構造なら(b)や(c)のように速く、より正確 引用元: https://arxiv.org/pdf/1612.03144.pdf
本論文の提案手法 6 複数のFCNの推論結果を組み合わせて出力 ・それぞれのFCNは、異なる解像度の推論を担当 ・図の「+」は、重み付き平均(評価時の設定はα = 0.5) ・LAPGANの論文を引用 (Gaussian PyramidとLaplacian
Pyramidの定義で) はピラミッドの深さ
評価結果・まとめ 7 PHCと、独自データセットのPhase100で評価 所感 ・シンプルなアプローチで、かつ高い精度に見えて好印象 ・そのかわり、実行速度は厳しそう(論文では言及なし)