SlideShare a Scribd company logo
1 of 35
Download to read offline
2015/07/25 CV勉強会@関東
CVPR2015読み会 発表資料
2015/07/25
@peisuke
自己紹介
名前:藤本 敬介
研究:ロボティクス、コンピュータビジョン
点群:形状統合、メッシュ化、認識
画像:画像認識、SfM・MVS
ロボット:自律移動、動作計画
本発表の概要
• 発表論文
• L0TV: A New Method for Image Restoration in the
Presence of Impulse Noise
• どんな論文?
• インパルスノイズ(ごま塩ノイズ)の安定・綺麗な除去
• 特徴は?
• インパルスノイズ除去をL0ノルム最適化でモデル化
• NP困難のL0ノルム最適化問題に対し、安定かつ準最
適な解を収束計算によって求める
※今回は数式多めです
L0TV: A New Method for Image
Restoration in the Presence of
Impulse Noise
Ganzhao Yuan
Bernard Ghanem
フィルタリングによるノイズ除去
• 画像のノイズ除去について
• 古くよりフィルタリング処理として研究されてきた
• 平滑化、メディアン、ローパス等
• フィルタリングの問題点
• エッジや細かな模様などのノイズ以外の情報も落としてしまう(下図)
• 解決方針
• より高機能なフィルタリング処理(bilateral ・Guided Filter等)
• 「綺麗な画像である」という制約条件を満たすように画像を補正
平滑化
フィルタ
正則化項を用いたノイズ除去
• 元の画像からなるべく離れないようにしつつ(赤)、正
則化項による制約(青)を満たすように画像を作成
𝐸 𝐮 = ℓ 𝐮 − 𝐛 + 𝜆Ω 𝛁𝐮 u:復元後の画像
b:撮影画像
損失関数
(復元後画像と元画像の差異)
正則化項
(復元後画像の隣接画素間の滑らかさ)
𝑢 = 𝑏 𝛻𝑢 = 0
重みによる復元後の画像𝑢
正則化項の重み大損失関数の重み大
損失関数の事例
• 元の画像との差分の2乗値を用いる場合
𝐸 𝐮 = ℓ 𝐮 − 𝐛 + 𝜆Ω 𝛁𝐮 ℓ 𝐮 − 𝐛 = 𝐮 − 𝐛 2
2
𝑢 𝑏
様々な損失関数
𝐸 𝐮 = ℓ 𝐮 − 𝐛 + 𝜆Ω 𝛁𝐮
Gaussian
Laplace
Uniform
Poisson
Gamma
L0(This paper)
ℓ 𝑢 − 𝑏 = 𝑢 − 𝑏 2
2
ℓ 𝑢 − 𝑏 = 𝑢 − 𝑏 1
ℓ 𝑢 − 𝑏 = 𝑢 − 𝑏 ∞
ℓ 𝑢 − 𝑏 = 𝑢 − 𝑏, log 𝑢 , 1
ℓ 𝑢 − 𝑏 = log 𝑢 + 𝑏⨀
1
𝑢
, 1
ℓ 𝑢 − 𝑏 = 𝑢 − 𝑏 0
正則化項の事例
• エッジを残すノイズ除去(TV1ノルム)
• 隣接画素間の2乗距離を使うとエッジがぼやけてしまうが、
絶対値を使うとエッジが保存される
𝐸 𝐮 = ℓ 𝐮 − 𝐛 + 𝜆Ω 𝛁𝐮 Ω 𝛁𝐮 = 𝛻𝑢 𝑥 + 𝛻𝑢 𝑦
uu
0
1
0
1
どちらも|∇u|=1
0
1
元の信号と近く、
制約項のペナルティも小
元信号
ノイズ除去後
信号候補1
ノイズ除去後
信号候補2
TV・・・Total Variation
Tikhonov
TV2
TV1
smooth TV
Huber
Potts
様々な正則化項
𝐸 𝐮 = ℓ 𝐮 − 𝐛 + 𝜆Ω 𝛁𝐮
Ω 𝛻𝑢 = 𝛻𝑢 𝑥
2
+ 𝛻𝑢 𝑦
2
Ω 𝛻𝑢 = 𝛻𝑢 𝑥
2 + 𝛻𝑢 𝑦
2
1
2
Ω 𝛻𝑢 = 𝛻𝑢 𝑥 + 𝛻𝑢 𝑦
Ω 𝛻𝑢 = 𝛻𝑢 𝑥
2
+ 𝛻𝑢 𝑦
2
+ 𝜖2
1
2
Ω 𝛻𝑢 = 𝛻𝑢 𝑥 0 + 𝛻𝑢 𝑦 0
Ω 𝛻𝑢 = 𝜑 𝛻𝑢 𝜑 𝑝 =
𝜀
2
𝑝 2
2
𝑝 2 −
1
2𝜀
𝑝 2
𝑜𝑡ℎ𝑒𝑟𝑤𝑖𝑠𝑒
本論文の概要
• 論文の目的
• インパルスノイズ(ごま塩ノイズ)の除去
• 従来手法の問題
• 従来はノイズとノイズ以外を分ける事をせず、画像らしさ(正則化項)
のルールに従って画像を復元
• インパルスノイズ以外の正常な領域についても処理が入ってしまう
• 提案手法
• 「ノイズらしいピクセルの自動選択」と、「選択したピクセルのみ周囲の
画素情報を用いた平滑化」を同時に計算
提案手法のアプローチ
1. ノイズとなっているピクセルの選択
損失関数をL0ノルムとする
2. 選択したピクセルの平滑化
正則化項をエッジキープ型のTV1 or TV2ノルムとする
L0ノルム・・・ベクトル内の非ゼロ成分の個数
例: 𝐯 = [1,0,3,5,0,0,2,4] → 𝐯 0 = 5
推定されたノイズ 復元画像元画像
推定されたノイズ画像に発生する非ゼロの点数がL0ノルム
L0ノルムの効果
ノイズ以外の領域をキープした場合・・・L0ノルムは小さくなる
全領域平滑化してしまった場合・・・L0ノルムは大きくなる
L0ノルムを小さくすることで、元画像の情報を落とさ
ない画像復元が可能
提案手法の定式化
• 最小化の困難性
• L0ノルム最適化はNP困難
• 非ゼロ成分の選択のため、2の画素数乗の計算量が必要
• GA、SAなどのランダムベース手法でも解けるが性能悪
𝐸 𝐮 = 𝐊𝐮 − 𝐛 0 + 𝜆 𝛻𝐮 𝑝,1
復元画像と元画像の差異の画素数が
なるべく小さくなるようにする(L0ノルム)
エッジをキープしつ
つ平滑化
(TV1 or TV2ノルム)
𝐨⨀ 𝐊𝐮 − 𝐛 0 + 𝜆 𝛁𝐮 𝑝,1
※論文では下記マスク変数oが式中にあるが定数なので省略
※Kは任意の既知カーネル、拡大・ブラー等
𝛁𝐮
補助変数によるL0ノルムの変形
𝑛 − 𝐰 0 = max
𝐯∈ 0,1
𝑖=1
𝑛
𝐯𝑖 , s. t. 𝐯 ∈ 𝚽
𝚽 ≜ 𝐯 | 𝐯⨀ 𝐰𝑖 = 0, ∀𝑖 ∈ [𝑛]
• 補助変数𝐯を導入する
• wの各成分が非ゼロかゼロかで下記に分かれる
ケース1: 𝑤が非ゼロの時・・・ 𝑣⨀ 𝑤 = 0を満たす𝑣は0の
み、よって max
v∈ 0,1
𝑣は0
ケース2: 𝑤がゼロの時・・・ 𝑣⨀ 𝑤 = 0を満たす𝑣は任意の
数字、よって max
v∈ 0,1
𝑣は1
• vの総和を取ることでゼロ成分の個数を得られる
補助変数によるL0ノルムの変形
𝑛 − 𝐰 0 = max
𝐯∈ 0,1
𝑖=1
𝑛
𝐯𝑖 , s. t. 𝐯 ∈ 𝚽
𝐰 0 = 𝑛 − max
0≤𝐯≤1
𝑖=1
𝑛
𝐯𝑖 , s. t. 𝐯 ∈ 𝚽
= min
0≤𝐯≤1
𝟏, 𝟏 − 𝐯 , s. t. 𝐯 ∈ 𝚽
提案手法の定式化(続き)
𝐸 𝐮 = 𝐊𝐮 − 𝐛 0 + 𝜆 𝛁𝐮 𝑝,1
𝐸 𝐮, 𝐯 = min
0≤𝐯≤1
𝟏, 𝟏 − 𝐯 + 𝜆 𝛁𝐮 𝑝,1
s. t. 𝐯⨀ 𝐊𝐮 − 𝐛 = 0
収束計算が可能
最小化について
𝐸 𝐮, 𝐯 = min
0≤𝐯≤1
𝟏, 𝟏 − 𝐯 + 𝜆 𝛁𝐮 𝑝,1
s. t. 𝐯⨀ 𝐊𝐮 − 𝐛 = 0
• 変数uが条件式内やTVノルム内にいるため、このま
まだと解けない、補助変数x,yをさらに導入
• 変数を分ける事で、各変数について解きやすくなる
𝐸 𝐮, 𝐯, 𝐱, 𝐲 = min
0≤𝐯≤1
𝟏, 𝟏 − 𝐯 + 𝜆 𝐱 𝑝,1
s. t. 𝛁𝐮 = 𝐱, 𝐊𝐮 − 𝐛 = 𝐲, 𝐯⨀ 𝐲 = 0
多変数の制約付き最適化問題、ADMMで最小化
Alternating Direction Methods of Multipliers
• 多変数の制約条件付き最適化手法
• ラグランジュ未定乗数法(LM)を拡張したAugmented LM
に対し、変数ごとに別々に更新
𝐸 𝒙, 𝒚 = 𝑓 𝑥 + 𝑔 𝑦 , 𝑠. 𝑡. 𝐴𝑥 + 𝐵𝑦 = 𝑐
ℒ 𝑥, 𝑦, 𝜆 = 𝑓 𝑥 + 𝑔 𝑦 + 𝜆 𝐴𝑥 + 𝐵𝑦 − 𝑐
+ 𝛽 2 𝐴𝑥 + 𝐵𝑦 − 𝑐 2
2
ADMM Algorithm
𝑥 𝑡+1 = argmin 𝑥 𝐿 𝑥 𝑡, 𝑦 𝑡, 𝜆𝑡
𝑦 𝑡+1 = argmin 𝑦 𝐿 𝑥 𝑡+1, 𝑦 𝑡, 𝜆𝑡
𝜆𝑡+1 = 𝜆𝑡 + 𝛽 𝐴𝑥 𝑡+1 + 𝐵𝑦 𝑡+1 − 𝑐
最小化について(続き)
𝐸 𝐮, 𝐯, 𝐱, 𝐲 = min
0≤𝐯≤1
𝟏, 𝟏 − 𝐯 + 𝜆 𝐱 𝑝,1
s. t. 𝛁𝐮 = 𝐱, 𝐊𝐮 − 𝐛 = 𝐲, 𝐯⨀ 𝐲 = 0
ℒ 𝐮, 𝐯, 𝐱, 𝐲, 𝝃, 𝜻, 𝝅 = 𝟏, 𝟏 − 𝐯 + 𝜆 𝐱 𝑝,1 +
𝛁𝐮 − 𝐱, 𝝃 +
𝛽
2
𝛁𝐮 − 𝐱 2
+ 𝐊𝐮 − 𝐛 − 𝐲, 𝜻 +
𝛽
2
𝐊𝐮 − 𝐛 − 𝐲 2
+ 𝐯⨀ 𝐲 , 𝝅 +
𝛽
2
𝐯⨀ 𝐲 2
• Augmented LMによる式変形
最小化手順:S1-(10)
• 評価式を変数毎に解く
• まずuに関連する項のみ選択し、uについて最小化
ℒ 𝐯, 𝐮, 𝐱, 𝐲, 𝝃, 𝜻, 𝝅 = 𝟏, 𝟏 − 𝐯 + 𝜆 𝐱 𝑝,1 +
𝛁𝐮 − 𝐱, 𝝃 +
𝛽
2
𝛁𝐮 − 𝐱 2
+ 𝐊𝐮 − 𝐛 − 𝐲, 𝜻 +
𝛽
2
𝐊𝐮 − 𝐛 − 𝐲 2
+ 𝐯⨀ 𝐲 , 𝝅 +
𝛽
2
𝐯⨀ 𝐲 2
uに関する2次形式なので解析解は存在するが、
∇やKに関する逆行列を解かなくてはいけない
𝐮 = 𝛽 𝛁T 𝛁 + 𝐊T 𝐊
−𝟏
𝛽 𝛁T
𝐱 + 𝐊T
𝐛 + 𝐲 − 𝛁T
𝝃 + 𝐊T
𝜻
最小化手順:S1-(10)
• Proximal ADMM
• Proximal termを追加し、逆行列計算を消去
• 繰り返し計算でuについて最小化
𝛁𝐮 − 𝐱, 𝝃 +
𝛽
2
𝛁𝐮 − 𝐱 2
+ 𝐊𝐮 − 𝐛 − 𝐲, 𝜻
+
𝛽
2
𝐊𝐮 − 𝐛 − 𝐲 2 +
1
2
𝐮 − 𝐮 𝑘 𝑇
𝐃 𝐮 − 𝐮 𝑘
𝐮k+1 = 𝐃 + 𝛽 𝛁T 𝛁 + 𝐊T 𝐊
−𝟏
𝐃𝐮 𝑘 + 𝛽 𝛁T 𝐱 + 𝐊T 𝐛 + 𝐲 − 𝛁T 𝝃 + 𝐊T 𝜻
= 𝜅 𝐃𝐮 𝑘
+ 𝛽 𝛁T
𝐱 + 𝐊T
𝐛 + 𝐲 − 𝛁T
𝝃 + 𝐊T
𝜻
𝐃 =
1
𝜅
𝑰 − 𝛽 𝛁T 𝛁 + 𝐊T 𝐊
𝑰 𝜅
最小化手順:S1-(11)
• 評価式を変数毎に解く
• vに関連する項のみ選択し、vについて最小化
ℒ 𝐯, 𝐮, 𝐱, 𝐲, 𝝃, 𝜻, 𝝅 = 𝟏, 𝟏 − 𝐯 + 𝜆 𝐱 𝑝,1 +
𝛁𝐮 − 𝐱, 𝝃 +
𝛽
2
𝛁𝐮 − 𝐱 2
+ 𝐊𝐮 − 𝐛 − 𝐲, 𝜻 +
𝛽
2
𝐊𝐮 − 𝐛 − 𝐲 2
+ 𝐯⨀ 𝐲 , 𝝅 +
𝛽
2
𝐯⨀ 𝐲 2
𝐯 = min 𝟏, max 𝟎,
𝟏 − 𝝅⨀ 𝐲
𝜷𝐲⨀𝐲
最小化手順:S1-(12)
• 評価式を変数毎に解く
• xに関連する項のみ選択し、vについて最小化
• Lpノルムを含む最適化問題なのでProximal Operatorで
計算
ℒ 𝐯, 𝐮, 𝐱, 𝐲, 𝝃, 𝜻, 𝝅 = 𝟏, 𝟏 − 𝐯 + 𝜆 𝐱 𝑝,1 +
𝛁𝐮 − 𝐱, 𝝃 +
𝛽
2
𝛁𝐮 − 𝐱 2
+ 𝐊𝐮 − 𝐛 − 𝐲, 𝜻 +
𝛽
2
𝐊𝐮 − 𝐛 − 𝐲 2
+ 𝐯⨀ 𝐲 , 𝝅 +
𝛽
2
𝐯⨀ 𝐲 2
p=1の場合 𝐱 = sign 𝐡 ⨀max 𝒉 − 𝜆 𝛽 , 𝟎
𝐡 = −𝛁𝐮 − 𝝃 𝛽
p=2の場合は省略
Proximal Operator
prox 𝑔 𝐳 = argmin
𝐱
𝑔 𝐱 +
1
2
𝐱 − 𝐳 2
• Soft Threshold : 𝑔 𝑥 = 𝜆 𝑥 1の場合
• 微分不可能な最適化問題を解くテクニック
この関数の最適化問題微分不可な関数g
prox 𝜆 𝐳 = argmin
𝐱
𝜆 𝐱 1 +
1
2
𝐱 − 𝐳 2
Proximal Operatorは
このように表記
= sign 𝐳 ⨀max 𝒛 − 𝜆, 𝟎
最小化手順:S1-(12)
• 評価式を変数毎に解く
• yに関連する項のみ選択し、vについて最小化
• 絶対値を含むのでProximal Operatorで計算
ℒ 𝐯, 𝐮, 𝐱, 𝐲, 𝝃, 𝜻, 𝝅 = 𝟏, 𝟏 − 𝐯 + 𝜆 𝐱 𝑝,1 +
𝛁𝐮 − 𝐱, 𝝃 +
𝛽
2
𝛁𝐮 − 𝐱 2
+ 𝐊𝐮 − 𝐛 − 𝐲, 𝜻 +
𝛽
2
𝐊𝐮 − 𝐛 − 𝐲 2
+ 𝐯⨀ 𝐲 , 𝝅 +
𝛽
2
𝐯⨀ 𝐲 2
𝐲 = sign 𝒒 ⨀max
𝒒 − 𝝅⨀𝐯 𝛽
𝟏 + 𝐯⨀𝐯
, 𝟎
𝐪 = 𝐊𝐮 − 𝐛 + 𝜻 𝛽
これを計算
実験
• 比較手法
• L1-TV (Split Bregman Method)
• メディアンフィルタ
• Two Stage Method
• メディアンフィルタでノイズピクセルを抽出、その後平滑化で修復
• L02-TV (Adaptive Outlier Pursuit)
• L0-TV (Penalty Decomposition Algorithm)
• L0-TV (Proximal ADMM)
• 評価
• 3種のSN比
処理前
処理後
復元結果画像例(Supplementary Materialより)
元画像
他手法との比較(Supplementary Materialより)
L02-TV L0-TV (PDA) L0-TV (PADMM)
他手法との比較(Supplementary Materialより)
L02-TV L0-TV (PDA) L0-TV (PADMM)
• 推定したノイズ(元画像と復元後画像の差分)
提案手法は唯一波や空の模様を除去しない
L02-TV L0-TV (PDA) L0-TV (PADMM)
他手法との比較(Supplementary Materialより)
SN比の比較
L0-TV (PADMM)
まとめ
• 研究の目的
• インパルスノイズの安定・綺麗な除去
• 提案手法
• インパルスノイズ除去をL0ノルム最適化でモデル化
• NP困難のL0ノルム最適化問題に対し、安定かつ準最
適な解を収束計算によって求める
• 結果
• 従来手法よりも良い結果、特にL0の近似であるL1によ
るアプローチと比較して、かなり良い
• 今後の課題
• TVノルム以外の正則化項
• L0最適化の他アプリケーションへの応用

More Related Content

What's hot

【DL輪読会】How Much Can CLIP Benefit Vision-and-Language Tasks?
【DL輪読会】How Much Can CLIP Benefit Vision-and-Language Tasks? 【DL輪読会】How Much Can CLIP Benefit Vision-and-Language Tasks?
【DL輪読会】How Much Can CLIP Benefit Vision-and-Language Tasks? Deep Learning JP
 
[Dl輪読会]A simple neural network module for relational reasoning
[Dl輪読会]A simple neural network module for relational reasoning[Dl輪読会]A simple neural network module for relational reasoning
[Dl輪読会]A simple neural network module for relational reasoningDeep Learning JP
 
[DL輪読会]Scalable Training of Inference Networks for Gaussian-Process Models
[DL輪読会]Scalable Training of Inference Networks for Gaussian-Process Models[DL輪読会]Scalable Training of Inference Networks for Gaussian-Process Models
[DL輪読会]Scalable Training of Inference Networks for Gaussian-Process ModelsDeep Learning JP
 
【DL輪読会】Visual ChatGPT: Talking, Drawing and Editing with Visual Foundation Mo...
【DL輪読会】Visual ChatGPT: Talking, Drawing and Editing with Visual Foundation Mo...【DL輪読会】Visual ChatGPT: Talking, Drawing and Editing with Visual Foundation Mo...
【DL輪読会】Visual ChatGPT: Talking, Drawing and Editing with Visual Foundation Mo...Deep Learning JP
 
顕著性マップの推定手法
顕著性マップの推定手法顕著性マップの推定手法
顕著性マップの推定手法Takao Yamanaka
 
[DL輪読会]Neural Ordinary Differential Equations
[DL輪読会]Neural Ordinary Differential Equations[DL輪読会]Neural Ordinary Differential Equations
[DL輪読会]Neural Ordinary Differential EquationsDeep Learning JP
 
最近のDeep Learning (NLP) 界隈におけるAttention事情
最近のDeep Learning (NLP) 界隈におけるAttention事情最近のDeep Learning (NLP) 界隈におけるAttention事情
最近のDeep Learning (NLP) 界隈におけるAttention事情Yuta Kikuchi
 
POMDP下での強化学習の基礎と応用
POMDP下での強化学習の基礎と応用POMDP下での強化学習の基礎と応用
POMDP下での強化学習の基礎と応用Yasunori Ozaki
 
第10回 配信講義 計算科学技術特論A(2021)
第10回 配信講義 計算科学技術特論A(2021)第10回 配信講義 計算科学技術特論A(2021)
第10回 配信講義 計算科学技術特論A(2021)RCCSRENKEI
 
スパースモデリング、スパースコーディングとその数理(第11回WBA若手の会)
スパースモデリング、スパースコーディングとその数理(第11回WBA若手の会)スパースモデリング、スパースコーディングとその数理(第11回WBA若手の会)
スパースモデリング、スパースコーディングとその数理(第11回WBA若手の会)narumikanno0918
 
深層学習と音響信号処理
深層学習と音響信号処理深層学習と音響信号処理
深層学習と音響信号処理Yuma Koizumi
 
[DL輪読会]近年のオフライン強化学習のまとめ —Offline Reinforcement Learning: Tutorial, Review, an...
[DL輪読会]近年のオフライン強化学習のまとめ —Offline Reinforcement Learning: Tutorial, Review, an...[DL輪読会]近年のオフライン強化学習のまとめ —Offline Reinforcement Learning: Tutorial, Review, an...
[DL輪読会]近年のオフライン強化学習のまとめ —Offline Reinforcement Learning: Tutorial, Review, an...Deep Learning JP
 
最適輸送の解き方
最適輸送の解き方最適輸送の解き方
最適輸送の解き方joisino
 
東京都市大学 データ解析入門 3 行列分解 2
東京都市大学 データ解析入門 3 行列分解 2東京都市大学 データ解析入門 3 行列分解 2
東京都市大学 データ解析入門 3 行列分解 2hirokazutanaka
 
機械学習による統計的実験計画(ベイズ最適化を中心に)
機械学習による統計的実験計画(ベイズ最適化を中心に)機械学習による統計的実験計画(ベイズ最適化を中心に)
機械学習による統計的実験計画(ベイズ最適化を中心に)Kota Matsui
 
自由エネルギー原理から エナクティヴィズムへ
自由エネルギー原理から エナクティヴィズムへ自由エネルギー原理から エナクティヴィズムへ
自由エネルギー原理から エナクティヴィズムへMasatoshi Yoshida
 
【DL輪読会】A Path Towards Autonomous Machine Intelligence
【DL輪読会】A Path Towards Autonomous Machine Intelligence【DL輪読会】A Path Towards Autonomous Machine Intelligence
【DL輪読会】A Path Towards Autonomous Machine IntelligenceDeep Learning JP
 
[DL輪読会]Understanding Black-box Predictions via Influence Functions
[DL輪読会]Understanding Black-box Predictions via Influence Functions [DL輪読会]Understanding Black-box Predictions via Influence Functions
[DL輪読会]Understanding Black-box Predictions via Influence Functions Deep Learning JP
 
強化学習と逆強化学習を組み合わせた模倣学習
強化学習と逆強化学習を組み合わせた模倣学習強化学習と逆強化学習を組み合わせた模倣学習
強化学習と逆強化学習を組み合わせた模倣学習Eiji Uchibe
 

What's hot (20)

【DL輪読会】How Much Can CLIP Benefit Vision-and-Language Tasks?
【DL輪読会】How Much Can CLIP Benefit Vision-and-Language Tasks? 【DL輪読会】How Much Can CLIP Benefit Vision-and-Language Tasks?
【DL輪読会】How Much Can CLIP Benefit Vision-and-Language Tasks?
 
[Dl輪読会]A simple neural network module for relational reasoning
[Dl輪読会]A simple neural network module for relational reasoning[Dl輪読会]A simple neural network module for relational reasoning
[Dl輪読会]A simple neural network module for relational reasoning
 
[DL輪読会]Scalable Training of Inference Networks for Gaussian-Process Models
[DL輪読会]Scalable Training of Inference Networks for Gaussian-Process Models[DL輪読会]Scalable Training of Inference Networks for Gaussian-Process Models
[DL輪読会]Scalable Training of Inference Networks for Gaussian-Process Models
 
【DL輪読会】Visual ChatGPT: Talking, Drawing and Editing with Visual Foundation Mo...
【DL輪読会】Visual ChatGPT: Talking, Drawing and Editing with Visual Foundation Mo...【DL輪読会】Visual ChatGPT: Talking, Drawing and Editing with Visual Foundation Mo...
【DL輪読会】Visual ChatGPT: Talking, Drawing and Editing with Visual Foundation Mo...
 
顕著性マップの推定手法
顕著性マップの推定手法顕著性マップの推定手法
顕著性マップの推定手法
 
[DL輪読会]Neural Ordinary Differential Equations
[DL輪読会]Neural Ordinary Differential Equations[DL輪読会]Neural Ordinary Differential Equations
[DL輪読会]Neural Ordinary Differential Equations
 
最近のDeep Learning (NLP) 界隈におけるAttention事情
最近のDeep Learning (NLP) 界隈におけるAttention事情最近のDeep Learning (NLP) 界隈におけるAttention事情
最近のDeep Learning (NLP) 界隈におけるAttention事情
 
POMDP下での強化学習の基礎と応用
POMDP下での強化学習の基礎と応用POMDP下での強化学習の基礎と応用
POMDP下での強化学習の基礎と応用
 
第10回 配信講義 計算科学技術特論A(2021)
第10回 配信講義 計算科学技術特論A(2021)第10回 配信講義 計算科学技術特論A(2021)
第10回 配信講義 計算科学技術特論A(2021)
 
スパースモデリング、スパースコーディングとその数理(第11回WBA若手の会)
スパースモデリング、スパースコーディングとその数理(第11回WBA若手の会)スパースモデリング、スパースコーディングとその数理(第11回WBA若手の会)
スパースモデリング、スパースコーディングとその数理(第11回WBA若手の会)
 
深層学習と音響信号処理
深層学習と音響信号処理深層学習と音響信号処理
深層学習と音響信号処理
 
coordinate descent 法について
coordinate descent 法についてcoordinate descent 法について
coordinate descent 法について
 
[DL輪読会]近年のオフライン強化学習のまとめ —Offline Reinforcement Learning: Tutorial, Review, an...
[DL輪読会]近年のオフライン強化学習のまとめ —Offline Reinforcement Learning: Tutorial, Review, an...[DL輪読会]近年のオフライン強化学習のまとめ —Offline Reinforcement Learning: Tutorial, Review, an...
[DL輪読会]近年のオフライン強化学習のまとめ —Offline Reinforcement Learning: Tutorial, Review, an...
 
最適輸送の解き方
最適輸送の解き方最適輸送の解き方
最適輸送の解き方
 
東京都市大学 データ解析入門 3 行列分解 2
東京都市大学 データ解析入門 3 行列分解 2東京都市大学 データ解析入門 3 行列分解 2
東京都市大学 データ解析入門 3 行列分解 2
 
機械学習による統計的実験計画(ベイズ最適化を中心に)
機械学習による統計的実験計画(ベイズ最適化を中心に)機械学習による統計的実験計画(ベイズ最適化を中心に)
機械学習による統計的実験計画(ベイズ最適化を中心に)
 
自由エネルギー原理から エナクティヴィズムへ
自由エネルギー原理から エナクティヴィズムへ自由エネルギー原理から エナクティヴィズムへ
自由エネルギー原理から エナクティヴィズムへ
 
【DL輪読会】A Path Towards Autonomous Machine Intelligence
【DL輪読会】A Path Towards Autonomous Machine Intelligence【DL輪読会】A Path Towards Autonomous Machine Intelligence
【DL輪読会】A Path Towards Autonomous Machine Intelligence
 
[DL輪読会]Understanding Black-box Predictions via Influence Functions
[DL輪読会]Understanding Black-box Predictions via Influence Functions [DL輪読会]Understanding Black-box Predictions via Influence Functions
[DL輪読会]Understanding Black-box Predictions via Influence Functions
 
強化学習と逆強化学習を組み合わせた模倣学習
強化学習と逆強化学習を組み合わせた模倣学習強化学習と逆強化学習を組み合わせた模倣学習
強化学習と逆強化学習を組み合わせた模倣学習
 

Viewers also liked

2014/02/23 CV勉強会発表資料 nksm_r
2014/02/23 CV勉強会発表資料 nksm_r2014/02/23 CV勉強会発表資料 nksm_r
2014/02/23 CV勉強会発表資料 nksm_rnakari1124
 
Divergence optimization based on trade-off between separation and extrapolati...
Divergence optimization based on trade-off between separation and extrapolati...Divergence optimization based on trade-off between separation and extrapolati...
Divergence optimization based on trade-off between separation and extrapolati...Daichi Kitamura
 
コンピュテーショナルフォトグラフティの基礎
コンピュテーショナルフォトグラフティの基礎コンピュテーショナルフォトグラフティの基礎
コンピュテーショナルフォトグラフティの基礎Norishige Fukushima
 
Fighting the native battle and the rise of content marketing - Digiday WTF Ad...
Fighting the native battle and the rise of content marketing - Digiday WTF Ad...Fighting the native battle and the rise of content marketing - Digiday WTF Ad...
Fighting the native battle and the rise of content marketing - Digiday WTF Ad...Digiday
 
Deconstruyendo Google - Edición 2016
Deconstruyendo Google - Edición 2016Deconstruyendo Google - Edición 2016
Deconstruyendo Google - Edición 2016Gianluca Fiorelli
 
Aprendizajes por proyectos. Ana Maria Ramos
Aprendizajes por proyectos. Ana Maria RamosAprendizajes por proyectos. Ana Maria Ramos
Aprendizajes por proyectos. Ana Maria Ramos59828153
 
#ID2013 - Data Silos by @nxfxcom
#ID2013 - Data Silos by @nxfxcom#ID2013 - Data Silos by @nxfxcom
#ID2013 - Data Silos by @nxfxcomBenjamin Spiegel
 
La nes, los bachilleratos pedagógicos y la formación docente
La nes,  los bachilleratos pedagógicos y la formación docente La nes,  los bachilleratos pedagógicos y la formación docente
La nes, los bachilleratos pedagógicos y la formación docente Laura Marrone
 
Employee idea grant r2 2015 final
Employee idea grant r2 2015 finalEmployee idea grant r2 2015 final
Employee idea grant r2 2015 finalLinkedIn for Good
 
OSM操作ガイド (環境情報学実習 4/23課題)
OSM操作ガイド (環境情報学実習 4/23課題)OSM操作ガイド (環境情報学実習 4/23課題)
OSM操作ガイド (環境情報学実習 4/23課題)Wataru Morioka
 
Presentación sobre qué es el plagio y cómo evitarlo
Presentación sobre qué es el plagio y cómo evitarloPresentación sobre qué es el plagio y cómo evitarlo
Presentación sobre qué es el plagio y cómo evitarloluzmarina1912
 
Sla 60 sites in 60 minutes 2012 slides
Sla 60 sites in 60 minutes 2012 slidesSla 60 sites in 60 minutes 2012 slides
Sla 60 sites in 60 minutes 2012 slidesJohn DiGilio
 
Didactica para el aprendizaje en niños de preescolar
Didactica  para el aprendizaje en niños de preescolarDidactica  para el aprendizaje en niños de preescolar
Didactica para el aprendizaje en niños de preescolarKth Pda
 
レビューのあり方、書き方
レビューのあり方、書き方レビューのあり方、書き方
レビューのあり方、書き方orangesky
 
8 Projects Combined Tim Vaughn AIA LEED AP
8 Projects Combined Tim Vaughn AIA LEED AP8 Projects Combined Tim Vaughn AIA LEED AP
8 Projects Combined Tim Vaughn AIA LEED APtgvku91
 
Analytics Toolbox - #SMX West 2015 - Benjamin Spiegel
Analytics Toolbox - #SMX West 2015 - Benjamin SpiegelAnalytics Toolbox - #SMX West 2015 - Benjamin Spiegel
Analytics Toolbox - #SMX West 2015 - Benjamin SpiegelBenjamin Spiegel
 
Telecommunications Consumers: A Behavioral Economic Analysis
Telecommunications Consumers: A Behavioral Economic AnalysisTelecommunications Consumers: A Behavioral Economic Analysis
Telecommunications Consumers: A Behavioral Economic AnalysisEmre Sarı
 

Viewers also liked (20)

niconico cho kaizo
niconico cho kaizoniconico cho kaizo
niconico cho kaizo
 
2014/02/23 CV勉強会発表資料 nksm_r
2014/02/23 CV勉強会発表資料 nksm_r2014/02/23 CV勉強会発表資料 nksm_r
2014/02/23 CV勉強会発表資料 nksm_r
 
Divergence optimization based on trade-off between separation and extrapolati...
Divergence optimization based on trade-off between separation and extrapolati...Divergence optimization based on trade-off between separation and extrapolati...
Divergence optimization based on trade-off between separation and extrapolati...
 
コンピュテーショナルフォトグラフティの基礎
コンピュテーショナルフォトグラフティの基礎コンピュテーショナルフォトグラフティの基礎
コンピュテーショナルフォトグラフティの基礎
 
Fighting the native battle and the rise of content marketing - Digiday WTF Ad...
Fighting the native battle and the rise of content marketing - Digiday WTF Ad...Fighting the native battle and the rise of content marketing - Digiday WTF Ad...
Fighting the native battle and the rise of content marketing - Digiday WTF Ad...
 
Deconstruyendo Google - Edición 2016
Deconstruyendo Google - Edición 2016Deconstruyendo Google - Edición 2016
Deconstruyendo Google - Edición 2016
 
Aprendizajes por proyectos. Ana Maria Ramos
Aprendizajes por proyectos. Ana Maria RamosAprendizajes por proyectos. Ana Maria Ramos
Aprendizajes por proyectos. Ana Maria Ramos
 
#ID2013 - Data Silos by @nxfxcom
#ID2013 - Data Silos by @nxfxcom#ID2013 - Data Silos by @nxfxcom
#ID2013 - Data Silos by @nxfxcom
 
La nes, los bachilleratos pedagógicos y la formación docente
La nes,  los bachilleratos pedagógicos y la formación docente La nes,  los bachilleratos pedagógicos y la formación docente
La nes, los bachilleratos pedagógicos y la formación docente
 
Employee idea grant r2 2015 final
Employee idea grant r2 2015 finalEmployee idea grant r2 2015 final
Employee idea grant r2 2015 final
 
OSM操作ガイド (環境情報学実習 4/23課題)
OSM操作ガイド (環境情報学実習 4/23課題)OSM操作ガイド (環境情報学実習 4/23課題)
OSM操作ガイド (環境情報学実習 4/23課題)
 
My favourite sport is ...
My favourite sport is ...My favourite sport is ...
My favourite sport is ...
 
Presentación sobre qué es el plagio y cómo evitarlo
Presentación sobre qué es el plagio y cómo evitarloPresentación sobre qué es el plagio y cómo evitarlo
Presentación sobre qué es el plagio y cómo evitarlo
 
Sla 60 sites in 60 minutes 2012 slides
Sla 60 sites in 60 minutes 2012 slidesSla 60 sites in 60 minutes 2012 slides
Sla 60 sites in 60 minutes 2012 slides
 
Didactica para el aprendizaje en niños de preescolar
Didactica  para el aprendizaje en niños de preescolarDidactica  para el aprendizaje en niños de preescolar
Didactica para el aprendizaje en niños de preescolar
 
レビューのあり方、書き方
レビューのあり方、書き方レビューのあり方、書き方
レビューのあり方、書き方
 
8 Projects Combined Tim Vaughn AIA LEED AP
8 Projects Combined Tim Vaughn AIA LEED AP8 Projects Combined Tim Vaughn AIA LEED AP
8 Projects Combined Tim Vaughn AIA LEED AP
 
Evolucion de la e-GEL
Evolucion de la e-GELEvolucion de la e-GEL
Evolucion de la e-GEL
 
Analytics Toolbox - #SMX West 2015 - Benjamin Spiegel
Analytics Toolbox - #SMX West 2015 - Benjamin SpiegelAnalytics Toolbox - #SMX West 2015 - Benjamin Spiegel
Analytics Toolbox - #SMX West 2015 - Benjamin Spiegel
 
Telecommunications Consumers: A Behavioral Economic Analysis
Telecommunications Consumers: A Behavioral Economic AnalysisTelecommunications Consumers: A Behavioral Economic Analysis
Telecommunications Consumers: A Behavioral Economic Analysis
 

Similar to L0TV: a new method for image restoration in the presence of impulse noise

Quantum Support Vector Machine
Quantum Support Vector MachineQuantum Support Vector Machine
Quantum Support Vector MachineYuma Nakamura
 
SMO徹底入門 - SVMをちゃんと実装する
SMO徹底入門 - SVMをちゃんと実装するSMO徹底入門 - SVMをちゃんと実装する
SMO徹底入門 - SVMをちゃんと実装するsleepy_yoshi
 
PRML復々習レーン#3 3.1.3-3.1.5
PRML復々習レーン#3 3.1.3-3.1.5PRML復々習レーン#3 3.1.3-3.1.5
PRML復々習レーン#3 3.1.3-3.1.5sleepy_yoshi
 
パターン認識 第12章 正則化とパス追跡アルゴリズム
パターン認識 第12章 正則化とパス追跡アルゴリズムパターン認識 第12章 正則化とパス追跡アルゴリズム
パターン認識 第12章 正則化とパス追跡アルゴリズムMiyoshi Yuya
 
コンピュータビジョン最先端ガイド6 第2章:4~4.2節
コンピュータビジョン最先端ガイド6 第2章:4~4.2節コンピュータビジョン最先端ガイド6 第2章:4~4.2節
コンピュータビジョン最先端ガイド6 第2章:4~4.2節nonane
 
Deep learning basics described
Deep learning basics describedDeep learning basics described
Deep learning basics describedNaoki Watanabe
 
Graph and network_chap14
Graph and network_chap14Graph and network_chap14
Graph and network_chap14Hiroki Iida
 
人工知能2018 6 強化学習の基礎
人工知能2018 6 強化学習の基礎人工知能2018 6 強化学習の基礎
人工知能2018 6 強化学習の基礎Hirotaka Hachiya
 
(文献紹介) 画像復元:Plug-and-Play ADMM
(文献紹介) 画像復元:Plug-and-Play ADMM(文献紹介) 画像復元:Plug-and-Play ADMM
(文献紹介) 画像復元:Plug-and-Play ADMMMorpho, Inc.
 
第15回 配信講義 計算科学技術特論B(2022)
第15回 配信講義 計算科学技術特論B(2022)第15回 配信講義 計算科学技術特論B(2022)
第15回 配信講義 計算科学技術特論B(2022)RCCSRENKEI
 
オンライン凸最適化と線形識別モデル学習の最前線_IBIS2011
オンライン凸最適化と線形識別モデル学習の最前線_IBIS2011オンライン凸最適化と線形識別モデル学習の最前線_IBIS2011
オンライン凸最適化と線形識別モデル学習の最前線_IBIS2011Preferred Networks
 
University CodeSprint 4 - Magic value
University CodeSprint 4 - Magic valueUniversity CodeSprint 4 - Magic value
University CodeSprint 4 - Magic valuesatanic
 
ACLreading2014@Ace12358
ACLreading2014@Ace12358ACLreading2014@Ace12358
ACLreading2014@Ace12358Ace12358
 
Sparse estimation tutorial 2014
Sparse estimation tutorial 2014Sparse estimation tutorial 2014
Sparse estimation tutorial 2014Taiji Suzuki
 
AI2: Safety and Robustness Certification of Neural Networks with Abstract Int...
AI2: Safety and Robustness Certification of Neural Networks with Abstract Int...AI2: Safety and Robustness Certification of Neural Networks with Abstract Int...
AI2: Safety and Robustness Certification of Neural Networks with Abstract Int...T T
 
Or seminar2011final
Or seminar2011finalOr seminar2011final
Or seminar2011finalMikio Kubo
 
多チャンネルバイラテラルフィルタの高速化
多チャンネルバイラテラルフィルタの高速化多チャンネルバイラテラルフィルタの高速化
多チャンネルバイラテラルフィルタの高速化Norishige Fukushima
 

Similar to L0TV: a new method for image restoration in the presence of impulse noise (20)

Quantum Support Vector Machine
Quantum Support Vector MachineQuantum Support Vector Machine
Quantum Support Vector Machine
 
SMO徹底入門 - SVMをちゃんと実装する
SMO徹底入門 - SVMをちゃんと実装するSMO徹底入門 - SVMをちゃんと実装する
SMO徹底入門 - SVMをちゃんと実装する
 
PRML復々習レーン#3 3.1.3-3.1.5
PRML復々習レーン#3 3.1.3-3.1.5PRML復々習レーン#3 3.1.3-3.1.5
PRML復々習レーン#3 3.1.3-3.1.5
 
パターン認識 第12章 正則化とパス追跡アルゴリズム
パターン認識 第12章 正則化とパス追跡アルゴリズムパターン認識 第12章 正則化とパス追跡アルゴリズム
パターン認識 第12章 正則化とパス追跡アルゴリズム
 
Report2
Report2Report2
Report2
 
双対性
双対性双対性
双対性
 
コンピュータビジョン最先端ガイド6 第2章:4~4.2節
コンピュータビジョン最先端ガイド6 第2章:4~4.2節コンピュータビジョン最先端ガイド6 第2章:4~4.2節
コンピュータビジョン最先端ガイド6 第2章:4~4.2節
 
Deep learning basics described
Deep learning basics describedDeep learning basics described
Deep learning basics described
 
Graph and network_chap14
Graph and network_chap14Graph and network_chap14
Graph and network_chap14
 
人工知能2018 6 強化学習の基礎
人工知能2018 6 強化学習の基礎人工知能2018 6 強化学習の基礎
人工知能2018 6 強化学習の基礎
 
(文献紹介) 画像復元:Plug-and-Play ADMM
(文献紹介) 画像復元:Plug-and-Play ADMM(文献紹介) 画像復元:Plug-and-Play ADMM
(文献紹介) 画像復元:Plug-and-Play ADMM
 
Asj2017 3 bileveloptnmf
Asj2017 3 bileveloptnmfAsj2017 3 bileveloptnmf
Asj2017 3 bileveloptnmf
 
第15回 配信講義 計算科学技術特論B(2022)
第15回 配信講義 計算科学技術特論B(2022)第15回 配信講義 計算科学技術特論B(2022)
第15回 配信講義 計算科学技術特論B(2022)
 
オンライン凸最適化と線形識別モデル学習の最前線_IBIS2011
オンライン凸最適化と線形識別モデル学習の最前線_IBIS2011オンライン凸最適化と線形識別モデル学習の最前線_IBIS2011
オンライン凸最適化と線形識別モデル学習の最前線_IBIS2011
 
University CodeSprint 4 - Magic value
University CodeSprint 4 - Magic valueUniversity CodeSprint 4 - Magic value
University CodeSprint 4 - Magic value
 
ACLreading2014@Ace12358
ACLreading2014@Ace12358ACLreading2014@Ace12358
ACLreading2014@Ace12358
 
Sparse estimation tutorial 2014
Sparse estimation tutorial 2014Sparse estimation tutorial 2014
Sparse estimation tutorial 2014
 
AI2: Safety and Robustness Certification of Neural Networks with Abstract Int...
AI2: Safety and Robustness Certification of Neural Networks with Abstract Int...AI2: Safety and Robustness Certification of Neural Networks with Abstract Int...
AI2: Safety and Robustness Certification of Neural Networks with Abstract Int...
 
Or seminar2011final
Or seminar2011finalOr seminar2011final
Or seminar2011final
 
多チャンネルバイラテラルフィルタの高速化
多チャンネルバイラテラルフィルタの高速化多チャンネルバイラテラルフィルタの高速化
多チャンネルバイラテラルフィルタの高速化
 

More from Fujimoto Keisuke

A quantum computational approach to correspondence problems on point sets
A quantum computational approach to correspondence problems on point setsA quantum computational approach to correspondence problems on point sets
A quantum computational approach to correspondence problems on point setsFujimoto Keisuke
 
F0-Consistent Many-to-many Non-parallel Voice Conversion via Conditional Auto...
F0-Consistent Many-to-many Non-parallel Voice Conversion via Conditional Auto...F0-Consistent Many-to-many Non-parallel Voice Conversion via Conditional Auto...
F0-Consistent Many-to-many Non-parallel Voice Conversion via Conditional Auto...Fujimoto Keisuke
 
YOLACT real-time instance segmentation
YOLACT real-time instance segmentationYOLACT real-time instance segmentation
YOLACT real-time instance segmentationFujimoto Keisuke
 
Product Managerの役割、周辺ロールとの差異
Product Managerの役割、周辺ロールとの差異Product Managerの役割、周辺ロールとの差異
Product Managerの役割、周辺ロールとの差異Fujimoto Keisuke
 
ChainerRLで株売買を結構頑張ってみた(後編)
ChainerRLで株売買を結構頑張ってみた(後編)ChainerRLで株売買を結構頑張ってみた(後編)
ChainerRLで株売買を結構頑張ってみた(後編)Fujimoto Keisuke
 
Temporal Cycle Consistency Learning
Temporal Cycle Consistency LearningTemporal Cycle Consistency Learning
Temporal Cycle Consistency LearningFujimoto Keisuke
 
20190414 Point Cloud Reconstruction Survey
20190414 Point Cloud Reconstruction Survey20190414 Point Cloud Reconstruction Survey
20190414 Point Cloud Reconstruction SurveyFujimoto Keisuke
 
20180925 CV勉強会 SfM解説
20180925 CV勉強会 SfM解説20180925 CV勉強会 SfM解説
20180925 CV勉強会 SfM解説Fujimoto Keisuke
 
Sliced Wasserstein Distance for Learning Gaussian Mixture Models
Sliced Wasserstein Distance for Learning Gaussian Mixture ModelsSliced Wasserstein Distance for Learning Gaussian Mixture Models
Sliced Wasserstein Distance for Learning Gaussian Mixture ModelsFujimoto Keisuke
 
LiDAR-SLAM チュートリアル資料
LiDAR-SLAM チュートリアル資料LiDAR-SLAM チュートリアル資料
LiDAR-SLAM チュートリアル資料Fujimoto Keisuke
 
Stock trading using ChainerRL
Stock trading using ChainerRLStock trading using ChainerRL
Stock trading using ChainerRLFujimoto Keisuke
 
Cold-Start Reinforcement Learning with Softmax Policy Gradient
Cold-Start Reinforcement Learning with Softmax Policy GradientCold-Start Reinforcement Learning with Softmax Policy Gradient
Cold-Start Reinforcement Learning with Softmax Policy GradientFujimoto Keisuke
 
Representation learning by learning to count
Representation learning by learning to countRepresentation learning by learning to count
Representation learning by learning to countFujimoto Keisuke
 
Dynamic Routing Between Capsules
Dynamic Routing Between CapsulesDynamic Routing Between Capsules
Dynamic Routing Between CapsulesFujimoto Keisuke
 
Deep Learning Framework Comparison on CPU
Deep Learning Framework Comparison on CPUDeep Learning Framework Comparison on CPU
Deep Learning Framework Comparison on CPUFujimoto Keisuke
 
Global optimality in neural network training
Global optimality in neural network trainingGlobal optimality in neural network training
Global optimality in neural network trainingFujimoto Keisuke
 

More from Fujimoto Keisuke (20)

A quantum computational approach to correspondence problems on point sets
A quantum computational approach to correspondence problems on point setsA quantum computational approach to correspondence problems on point sets
A quantum computational approach to correspondence problems on point sets
 
F0-Consistent Many-to-many Non-parallel Voice Conversion via Conditional Auto...
F0-Consistent Many-to-many Non-parallel Voice Conversion via Conditional Auto...F0-Consistent Many-to-many Non-parallel Voice Conversion via Conditional Auto...
F0-Consistent Many-to-many Non-parallel Voice Conversion via Conditional Auto...
 
YOLACT real-time instance segmentation
YOLACT real-time instance segmentationYOLACT real-time instance segmentation
YOLACT real-time instance segmentation
 
Product Managerの役割、周辺ロールとの差異
Product Managerの役割、周辺ロールとの差異Product Managerの役割、周辺ロールとの差異
Product Managerの役割、周辺ロールとの差異
 
ChainerRLで株売買を結構頑張ってみた(後編)
ChainerRLで株売買を結構頑張ってみた(後編)ChainerRLで株売買を結構頑張ってみた(後編)
ChainerRLで株売買を結構頑張ってみた(後編)
 
Temporal Cycle Consistency Learning
Temporal Cycle Consistency LearningTemporal Cycle Consistency Learning
Temporal Cycle Consistency Learning
 
ML@Loft
ML@LoftML@Loft
ML@Loft
 
20190414 Point Cloud Reconstruction Survey
20190414 Point Cloud Reconstruction Survey20190414 Point Cloud Reconstruction Survey
20190414 Point Cloud Reconstruction Survey
 
Chainer meetup 9
Chainer meetup 9Chainer meetup 9
Chainer meetup 9
 
20180925 CV勉強会 SfM解説
20180925 CV勉強会 SfM解説20180925 CV勉強会 SfM解説
20180925 CV勉強会 SfM解説
 
Sliced Wasserstein Distance for Learning Gaussian Mixture Models
Sliced Wasserstein Distance for Learning Gaussian Mixture ModelsSliced Wasserstein Distance for Learning Gaussian Mixture Models
Sliced Wasserstein Distance for Learning Gaussian Mixture Models
 
LiDAR-SLAM チュートリアル資料
LiDAR-SLAM チュートリアル資料LiDAR-SLAM チュートリアル資料
LiDAR-SLAM チュートリアル資料
 
Stock trading using ChainerRL
Stock trading using ChainerRLStock trading using ChainerRL
Stock trading using ChainerRL
 
Cold-Start Reinforcement Learning with Softmax Policy Gradient
Cold-Start Reinforcement Learning with Softmax Policy GradientCold-Start Reinforcement Learning with Softmax Policy Gradient
Cold-Start Reinforcement Learning with Softmax Policy Gradient
 
Representation learning by learning to count
Representation learning by learning to countRepresentation learning by learning to count
Representation learning by learning to count
 
Dynamic Routing Between Capsules
Dynamic Routing Between CapsulesDynamic Routing Between Capsules
Dynamic Routing Between Capsules
 
Deep Learning Framework Comparison on CPU
Deep Learning Framework Comparison on CPUDeep Learning Framework Comparison on CPU
Deep Learning Framework Comparison on CPU
 
ICCV2017一人読み会
ICCV2017一人読み会ICCV2017一人読み会
ICCV2017一人読み会
 
Global optimality in neural network training
Global optimality in neural network trainingGlobal optimality in neural network training
Global optimality in neural network training
 
CVPR2017 oral survey
CVPR2017 oral surveyCVPR2017 oral survey
CVPR2017 oral survey
 

L0TV: a new method for image restoration in the presence of impulse noise