CVPR2018_Crafting a Toolchain for Image Restoration by Deep Reinforcement Learning

http://mmlab.ie.cuhk.edu.hk/projects/RL-Restore/

强化学习的入门介绍:https://blog.csdn.net/aliceyangxi1987/article/details/73327378

https://www.zhihu.com/question/41775291

CNN在low-level的问题处理前沿:

deblurring:   S. Nah, T. H. Kim, and K. M. Lee. Deep multi-scale convolutional
neural network for dynamic scene deblurring. In
CVPR, 2017.

J. Sun, W. Cao, Z. Xu, and J. Ponce. Learning a convolutional
neural network for non-uniform motion blur removal.
In CVPR, 2015.

L. Xu, X. Tao, and J. Jia. Inverse kernels for fast spatial
deconvolution. In ECCV, 2014.

denoising:  

Y. Chen,W. Yu, and T. Pock. On learning optimized reaction
diffusion processes for effective image restoration. In CVPR,
2015.

S. Lefkimmiatis. Non-local color image denoising with convolutional
neural networks. In CVPR, 2017.

Z. Wang, D. Liu, S. Chang, Q. Ling, Y. Yang, and T. S.
Huang. D3: Deep dual-domain based fast restoration of
JPEG-compressed images. In CVPR, 2016.

JPEG artifacts reduction:  

C. Dong, Y. Deng, C. C. Loy, and X. Tang. Compression artifacts
reduction by a deep convolutional network. In ICCV,
2015.

J. Guo and H. Chao. Building dual-domain representations
for compression artifacts reduction. In ECCV, 2016.

Z. Wang, D. Liu, S. Chang, Q. Ling, Y. Yang, and T. S.
Huang. D3: Deep dual-domain based fast restoration of
JPEG-compressed images. In CVPR, 2016.

super-resolution:       

C. Dong, C. C. Loy, K. He, and X. Tang. Image superresolution
using deep convolutional networks. TPAMI,
38(2):295–307, 2016.

T.-W. Hui, C. C. Loy, and X. Tang. Depth map superresolution
by deep multi-scale guidance. In ECCV, 2016.

J. Kim, J. Kwon Lee, and K. Mu Lee. Accurate image superresolution
using very deep convolutional networks. In CVPR,
2016.

J. Kim, J. Kwon Lee, and K. Mu Lee. Deeply-recursive
convolutional network for image super-resolution. In CVPR,
2016.

W.-S. Lai, J.-B. Huang, N. Ahuja, and M.-H. Yang. Deep
laplacian pyramid networks for fast and accurate superresolution.
In CVPR, 2017.

Y. Tai, J. Yang, and X. Liu. Image super-resolution via deep
recursive residual network. In CVPR, 2017.

Y. Tai, J. Yang, X. Liu, and C. Xu. Memnet: A persistent
memory network for image restoration. In ICCV, 2017.

X. Wang, K. Yu, C. Dong, and C. C. Loy. Recovering realistic
texture in image super-resolution by deep spatial feature
transform. In CVPR, 2018.

PSNR:

详细解释,读下面的链接:

http://www.360doc.com/content/16/0919/12/496343_591970301.shtml

独热码,在英文文献中称做 one-hot code, 直观来说就是有多少个状态就有多少比特,而且只有一个比特为1,其他全为0的一种码制,更加详细参加one_hot code(维基百科)。在机器学习中对于离散型的分类型的数据,需要对其进行数字化比如说性别这一属性,只能有男性或者女性或者其他这三种值,如何对这三个值进行数字化表达?一种简单的方式就是男性为0,女性为1,其他为2,这样做有什么问题?

 长短期记忆(Long-Short Term Memory, LSTM)是一种时间递归神经网络(RNN),论文首次发表于1997年。由于独特的设计结构,LSTM适合于处理和预测时间序列中间隔和延迟非常长的重要事件。

http://www.cnblogs.com/wangduo/p/6773601.html

CVPR2018_Crafting a Toolchain for Image Restoration by Deep Reinforcement Learning的更多相关文章

  1. (转) Playing FPS games with deep reinforcement learning

    Playing FPS games with deep reinforcement learning 博文转自:https://blog.acolyer.org/2016/11/23/playing- ...

  2. (zhuan) Deep Reinforcement Learning Papers

    Deep Reinforcement Learning Papers A list of recent papers regarding deep reinforcement learning. Th ...

  3. Learning Roadmap of Deep Reinforcement Learning

    1. 知乎上关于DQN入门的系列文章 1.1 DQN 从入门到放弃 DQN 从入门到放弃1 DQN与增强学习 DQN 从入门到放弃2 增强学习与MDP DQN 从入门到放弃3 价值函数与Bellman ...

  4. (转) Deep Reinforcement Learning: Playing a Racing Game

    Byte Tank Posts Archive Deep Reinforcement Learning: Playing a Racing Game OCT 6TH, 2016 Agent playi ...

  5. 论文笔记之:Dueling Network Architectures for Deep Reinforcement Learning

    Dueling Network Architectures for Deep Reinforcement Learning ICML 2016 Best Paper 摘要:本文的贡献点主要是在 DQN ...

  6. getting started with building a ROS simulation platform for Deep Reinforcement Learning

    Apparently, this ongoing work is to make a preparation for futural research on Deep Reinforcement Le ...

  7. (转) Deep Reinforcement Learning: Pong from Pixels

    Andrej Karpathy blog About Hacker's guide to Neural Networks Deep Reinforcement Learning: Pong from ...

  8. 论文笔记之:Asynchronous Methods for Deep Reinforcement Learning

    Asynchronous Methods for Deep Reinforcement Learning ICML 2016 深度强化学习最近被人发现貌似不太稳定,有人提出很多改善的方法,这些方法有很 ...

  9. 论文笔记之:Deep Reinforcement Learning with Double Q-learning

    Deep Reinforcement Learning with Double Q-learning Google DeepMind Abstract 主流的 Q-learning 算法过高的估计在特 ...

随机推荐

  1. C# 后台处理图片的几种方式

    第一种: 将上传图片直接保存到本地 var supportedTypes = new[] { "jpg", "jpeg", "png", & ...

  2. Excel Metadata

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; usin ...

  3. C# Task.FromResult的用法

    Task.FromResult用来创建一个带返回值的.已完成的Task. 场景一:以同步的方式实现一个异步接口方法比如有一个接口包含异步方法. interface IMyInterface { Tas ...

  4. 前端面试题1(html)

    HTML     * Doctype作用?严格模式与混杂模式如何区分?它们有何意义? 1.<!DOCTYPE> 声明位于文档中的最前面的位置,处于 <html> 标签之前.此标 ...

  5. android热加载随记

    在我们日常的开发过程中,程序难免会出现BUG,一般有集中处理方式,发布新版本APP让用户来升级,或者打补丁来修复bug 前者本文在这里不错讨论,打补丁升级又分为两种一种是需要重启应用,一种是不需要.不 ...

  6. 【转】OmniGraffle (一)从工具栏开始

    原文链接:http://www.jianshu.com/p/52f3ecbe8f2d OmniGraffle的软件布局和大多数图形类软件类似,中间是编辑区,左边是页面和对象组织的管理,右边是参数设置和 ...

  7. Non-resolvable parent POM for com.*******

    场景: 同事新打了一个jar包到私服里面,自己删除了本地对应的中央仓库的依赖包,再次重新下载.  于是我又打开了一个idea的窗口重新引入这个项目,然后重新下载依赖的服务. 结果就一直报这个问题... ...

  8. ERP行业销售如何挖掘潜在客户?

    要看不同阶段,小企业发展到一定程度,第一个需求是单体财务系统.因为这个时候财务忙不过来了.在大一点就需要业务系统了,就是生产+进销存.有分公司就有集团级软件需求,接着就是oa啊HR啊上下游管理啊等等. ...

  9. Linux yum提示Loaded plugins错误的解决方法

    yum是Linux软件包管理器,也叫yum源,在yum使用过程中,有时会出现Loaded plugins错误,重启无效,遇到这种情况该如何解决呢?下面就给大家介绍下Linux yum提示Loaded ...

  10. C# 字符串中特定字符判断

    /// <summary> /// 计算字符串中子串出现的次数 /// </summary> /// <param name="str">字符串 ...