当前位置:网站首页>Image fusion DDcGAN study notes
Image fusion DDcGAN study notes
2022-08-03 12:22:00 【qq_46165876】
DDcGAN: A Dual-Discriminator Conditional Generative Adversarial Network for Multi-Resolution Image Fusion Article Study Notes
Feature: Dual Discriminator
Model Structure
The whole process of DDcGAN is shown in the figure.Given a visible light image v and an infrared image I, our ultimate goal is to learn a generator G conditioned on them, and the generated images G(v, I) are encouraged to be sufficiently realistic and informative todeceive the authenticator.
Meanwhile, we utilize two opposing discriminators, Dv and Di, which each generate a scalar that estimates the probability of input from real data rather than G.
Specifically, Dv aims to discriminate generated images from visible light images, while Di is trained to discriminate between original low-resolution infrared images and downsampled generated/fused images.Average pooling is used here for downsampling, since average pooling preserves low-frequency information compared to max pooling, and thermal radiation information is mainly presented in this form.In other words, for balance between generator and discriminator, we do not feed source images v and I as additional/conditional information to Dv and di other than the input to the discriminator.That is, the input layer of each discriminator is a single-channel layer containing the sampled data, rather than a two-channel layer containing the sampled data and the corresponding source image as conditional information.Because when the conditions and samples to be discriminated are the same, the discrimination task is simplified to judge whether the input images are the same, and this is a simple enough task for the neural network.When the generator cannot fool the discriminator, the adversarial relationship cannot be established, and the generator will tend to generate randomly.
Difference between PG and two true distributions (i.e. PV and PI)through the adversarial process of generator G and two discriminators (Dv and Di)will simultaneously become smaller, where PG is the probability distribution of the generated samples and PV is the true distribution of the visible image>, PI is the true distribution of the infrared image.
Generator loss function
GeneratorLoss function
where adversarial loss is defined as
where loss of content is defined as
The discriminators in DDcGAN, namely Dv and Di,It plays the role of discriminating the source image and the generated fused image.The adversarial loss of the discriminator can compute the JS divergence between distributions to identify whether intensity or texture information is inauthentic, thereby encouraging matching the true distribution.
Discriminator loss function
边栏推荐
- LeetCode-1796. 字符串中第二大的数字
- 解决oracle安装在linux中jdk的冲突
- 【云原生 · Kubernetes】部署Kubernetes集群
- 子结点的数量
- 零信任架构分析【扬帆】
- 数据库系统原理与应用教程(075)—— MySQL 练习题:操作题 151-159(十九):综合练习
- c语言进阶篇:内存函数
- R语言ggplot2可视化:使用ggpubr包的ggline函数可视化折线图、设置add参数为mean_se和dotplot可视化不同水平均值的折线图并为折线图添加误差线(se标准误差)和点阵图
- Knowledge Graph Question Answering System Based on League of Legends
- -找树根2-
猜你喜欢
深度学习中数据到底要不要归一化?实测数据来说明!
QGIS绘制演习区域示意图
利用ChangeStream实现Amazon DocumentDB表级别容灾复制
项目概述、推送和存储平台准备
YOLOv5训练数据提示No labels found、with_suffix使用、yolov5训练时出现WARNING: Ignoring corrupted image and/or label
类型转换、常用运算符
YOLOv5 training data prompts No labels found, with_suffix is used, WARNING: Ignoring corrupted image and/or label appears during yolov5 training
Random forest project combat - temperature prediction
mysql advanced (twenty-four) method summary of defense against SQL injection
nacos app
随机推荐
-树的高度-
分享一款实用的太阳能充电电路(室内光照可用)
bash case usage
Explain the virtual machine in detail!JD.com produced HotSpot VM source code analysis notes (with complete source code)
无监督学习KMeans学习笔记和实例
fastposter v2.9.0 programmer must-have poster generator
Matlab学习11-图像处理之图像变换
PC client automation testing practice based on Sikuli GUI image recognition framework
一个扛住 100 亿次请求的红包系统,写得太好了!!
ThreadLocal源码解析及使用场景
After completing the interview and clearance collection of Alibaba, I successfully won the 15th Offer this year
零信任架构分析【扬帆】
bash while循环和until循环
秋招招工作
ROS中编译通过但是遇到可执行文件找不到的问题
【Verilog】HDLBits题解——验证:阅读模拟
OFDM 十六讲 4 -What is a Cyclic Prefix in OFDM
博客记录生活
利用ChangeStream实现Amazon DocumentDB表级别容灾复制
flink流批一体有啥条件,数据源是从mysql批量分片读取,为啥设置成批量模式就不行