news 2026/7/23 18:14:14

PairLIE论文阅读笔记

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
PairLIE论文阅读笔记

PairLIE论文阅读笔记

已转博客园和知乎,文章均无需VIP免费看。博客园主页:https://www.cnblogs.com/RunfarAI。知乎主页:https://www.zhihu.com/people/liu-he-ting-yu-47。
兴趣:Low Level Vision,图像恢复,大模型

论文为2023CVPR的Learning a Simple Low-light Image Enhancer from Paired Low-light Instances.论文链接如下:

openaccess.thecvf.com/content/CVPR2023/papers/Fu_Learning_a_Simple_Low-Light_Image_Enhancer_From_Paired_Low-Light_Instances_CVPR_2023_paper.pdf

文章目录

  • PairLIE论文阅读笔记
    • 出发点
    • 创新点
    • 模型
    • 设计及其损失

出发点

1.However, collecting high-quality reference maps in real-world scenarios is time-consuming and expensive.

出发点1:在低光照领域,从现实世界中获取高质量的参考照片进行监督学习,既费时又困难,成本昂贵。

因为获得低光环境的照片是容易的,而此低光照片对应的亮度较大的参考图片是难得的。

2.To tackle the issues of limited information in a single low-light image and the poor adaptability of handcrafted priors, we propose to leverage paired low-light instances to train the LIE network.

Additionally, twice-exposure images provide useful information for solving the LIE task. As a result, our solution can reduce the demand for handcrafted priors and improve the adaptability of the network.

出发点2:为了解决手动设置的先验的低适应性,减少手动设置先验的需求,同时提升模型对陌生环境的适应性。

创新点

The core insight of our approach is to sufficiently exploit priors from paired low-light images.

Those low-light image pairs share the same scene content but different illumination. Mathematically, Retinex decomposition with low-light image pairs can be expressed as:

创新点1:作者利用两张低光图片进行训练,以充分提取低光图片的信息。

instead of directly imposing the Retinex decomposition on original low-light images, we adopt a simple self-supervised mechanism to remove inappropriate features and implement the Retinex decomposition on the optimized image.

创新点2:作者基于Retinex理论,但是并不循旧地直接运用Retinex的分解。作者采用一个简单的自监督机制以实现不合理特征的去除(通常是一些噪音)以及更好地实现Retinex理论。

模型

将两张同一场景不同曝光的低光图片送入训练中,图片I1与I2先经过P-Net去除噪音,得到i1与i2,然后利用L-Net与R-Net分解为照度L1与反射R1(对应有L2与R2)。

在测试,只需要输入一张低光照图片I,经过P-Net的噪音去除,得到i,然后用L-Net与R-Net分解为照度和反射,然后对照度L进行增强,操作为g(L),把增强结果与反射R进行元素乘法,得到增强后的图片Enhanced Image。

设计及其损失

Note that, this paper does not focus on designing modernistic network structures. L-Net and R-Net are very similar and simple,

1.模型使用的L-Net与R-Net十分简单。整体架构只是单纯的卷积神经网络。

Apart from L-Net and R-Net, we introduce P-Net to remove inappropriate features from the original image. Specifically, the structure of the P-Net is identical to the R-Net.

2,P-Net被设计用于去除不合理特征。
L p = ∣ ∣ I 1 − i 1 ∣ ∣ 2 2 L_p = \mid\mid I_1 - i_1 \mid\mid^2_2Lp=∣∣I1i1

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/7/23 18:10:59

Qt 定时器放在线程中执行,支持随时开始和停止定时器。

前言:因为项目需要定时检查网络中设备是否能连通,需要定时去做ping操作,若是网络不通,则ping花费时间比较久(局域网大概4秒钟才能结束,当然如果设置超时时间啥的,也能很快返回,就是会…

作者头像 李华
网站建设 2026/7/23 18:09:25

AI模型优化与多模态学习实战指南

1. AI知识拓展的核心价值与应用场景在当今技术快速迭代的时代,AI知识拓展已经成为从业者保持竞争力的必修课。不同于基础入门教程,深度知识拓展更注重解决实际工作中的疑难杂症和前沿技术落地问题。我结合自己多年在AI项目实战中的经验,总结出…

作者头像 李华
网站建设 2026/7/23 18:02:10

关于在VM虚拟机下,安装OpenWrt软路由,所遇错误及解决方法。

首先是去阿里的openwrt源下载的镜像为img格式,vm虚拟无法识别,需要转换为iso格式或者vmdk格式,用软碟通转换iso格式失败,于是准备转换成vmdk格式,网上大部分采用starwindconverter软件,但是最新的版本老是报…

作者头像 李华
网站建设 2026/7/23 18:00:49

如何在PVE(Proxmox)中安装OpenWrt软路由?

出处: https://blog.itwk.cc/post/pve_install_openwrt.html 工具准备 WinSCP或者XFTP OpenWrt镜像(自行寻找) 安装好PVE的主机一台 安装教程 镜像上传 将下载好的OpenWrt img镜像上传到 PVE主机中(这里使用XFTP工具) 选择SFTP 点击确定,选择刚刚添加的主机。点击连接 输入用…

作者头像 李华