Next Article in Journal
Security Analysis of the MQTT-SN Protocol for the Internet of Things
Previous Article in Journal
Influence of Gap Width on Temporal Nonlinear Behaviors in CO2 Dielectric Barrier Discharges under Martian Conditions
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

A Multi-Branch Multi-Scale Deep Learning Image Fusion Algorithm Based on DenseNet

1
School of Computer and Information Science, Chongqing Normal University, Chongqing 401331, China
2
Science School, Qingdao Technological University, Qingdao 266525, China
*
Author to whom correspondence should be addressed.
These authors contributed equally to this work.
Appl. Sci. 2022, 12(21), 10989; https://doi.org/10.3390/app122110989
Submission received: 24 August 2022 / Revised: 26 October 2022 / Accepted: 27 October 2022 / Published: 30 October 2022

Abstract

:
Infrared images have good anti-environmental interference ability and can capture hot target information well, but their pictures lack rich detailed texture information and poor contrast. Visible image has clear and detailed texture information, but their imaging process depends more on the environment, and the quality of the environment determines the quality of the visible image. This paper presents an infrared image and visual image fusion algorithm based on deep learning. Two identical feature extractors are used to extract the features of visible and infrared images of different scales, fuse these features through specific fusion methods, and restore the features of visible and infrared images to the pictures through the feature restorer to make up for the deficiencies in the various photos of infrared and visible images. This paper tests infrared visual images, multi-focus images, and other data sets. The traditional image fusion algorithm is compared several with the current advanced image fusion algorithm. The experimental results show that the image fusion method proposed in this paper can keep more feature information of the source image in the fused image, and achieve excellent results in some image evaluation indexes.

1. Introduction

With the development of science and technology, more and more data are collected using sensors, and more and more information is obtained from them. From black and white images and color images taken by optical cameras at the beginning to hyperspectral, infrared images, and radar images taken by various sensors today. With the increase in image types, the use of images is also increasing. However, these images are generated by a single sensor, which has some shortcomings. A single sensor has limitations, so it is difficult to collect all the information about the scene, which leads to no image containing all the information about the scene. Image fusion technology is to fuse the image information collected by different sensors into a new image by some means. The new image contains both the information of the original image and reduces redundant information between many images, which improves the use rate of the image.
Traditional image fusion methods can extract image features and fuse them well, but these algorithms have defects, resulting in noise and poor image quality in the fused image. The appearance of deep learning brings a new research direction for image fusion algorithms. A large number of image fusion algorithms based on deep learning have emerged. The convolutional neural network has a good ability to extract image features. However, the traditional convolutional neural network entering the bottleneck period, researchers have gradually abandoned the convolutional neural network and started to study Transformer. However, some scholars are still studying convolutional neural networks, and proposed a pure convolutional neural network ConeNeXt [1] in 2022. Fewer activation functions and larger convolution kernels are used in ConeNeXt. Although ConvNeXt does not propose new structures and methods, ConvNeXt reduces the use of activation functions, making ConvNeXt have faster reasoning speed and higher accuracy than Swin Transformer [1]. There is no doubt that convolution neural networks have a good ability to extract image features. Researchers use pre-trained AlexNet [2], VGGNet [3], GoogleNet [4,5], ResNet [6], DenseNet [7], CNN [8], etc. to extract image depth features and restore them to images after fusion. Besides being a tool for extracting image features, neural networks can also be used in end-to-end image fusion. The representative network models are FusionGAN [9], IFCNN [10], PPTFusion [11].
In the self-coding network framework, the network is composed of an encoder and a decoder. The encoder is used to extract image features, and the decoder is used to restore features to images. The encoder and decoder are independent, so the network structure of the self-coding network is very flexible. Because the self-coding network fusion framework is flexible and extensible, a large number of fusion algorithms based on the self-coding networks have been produced. In 2018, researchers proposed the first image fusion algorithm based on self coding network and named it DenseFuse [12,13]. NestFuse [14,15] was proposed in 2020, etc.
This paper uses the idea from the Inception module in GoogleNet for reference to build an encoder to extract features from the input images. The basic structure of the Inception module is shown in the Figure 1. There are three important parts to the Inception module. Firstly, 1 ∗ 1 convolution kernel for lifting dimensions to reduce the calculation of subsequent feature maps. Secondly, the convolution kernel size and output feature map size of each branch is different, which ensures the multi-scale of the image. Finally, the feature maps of each branch are spliced to obtain all feature maps.
This article mainly has the following work and contributions:
  • The Inception module is added to the network model to increase the feature extraction ability of the network.
  • Dense blocks are added to the branches of the network, and dense modules are used for feature extraction and image generation.
  • The use of activation functions is reduced, and activation functions are used only after the first convolution.

2. The Architecture of Network

The network model proposed in this paper is mainly composed of three parts: encoder, fusion strategy, and decoder, as shown in Figure 2.

2.1. The Encoder Architecture of Network

The encoder network is used to extract network features. Branch 1 uses a larger convolutional kernel to perform preliminary feature extraction of the input image, and then uses the Inception module to extract the image for multi-scale feature extraction, and then again through the smaller convolutional kernel to obtain feature 1. Branch 2 is structured similarly to Branch 1, but Branch 2 uses two convolution operations and then feeds features into the Inception module to get Feature 2. Branch 3 is similar to the structure of branch 2, convolution is performed again on the structure of branch 2 to obtain feature 3, branch 4 uses dense connections to extract features from the image, and feature 4 is obtained. Splicing features 1, 2, 3, and 4 on dim = 1 so that the resulting features contain the features of the previous 4 branch features. The encoder network is shown in Figure 3. A detailed table of encoder parameters, as shown in Table 1.

2.2. The Decoder the Encoder Architecture of Network

The architecture of the decoder is shown in Figure 4. In the design of the decoder, we did not use multiple 3 * 3 convolutional kernels like other image fusion algorithms for multiple feature channel operations, but also added an Inception module on the decoder to reduce the parameters of the network at the same time, as far as possible to retain more features, after the Inception module added a dense connection module, the use of dense connection module can better extract features, this article here will be used to reduce the characteristic channel, achieved good results. Finally, the decoder network reduces the number of feature channels to 1 through a 3 * 3 convolutional kernel, and then connects a Sigmoid activation function to restore it to an image. The specific network parameters are shown in Table 2.

2.3. The Loss Function of Network Model

This paper uses the improved SSIM [16,17] function as the loss function of the network, which is mainly used to calculate the structural similarity between images. Self-coding network, the most important feature is an encoder to extract image features, and a decoder to restore the feature map to an image. In the training phase, the main task is to enable the encoder to extract features as much as possible and make the image restored by the decoder close to the source image. Therefore, it is very effective to use SSIM to calculate the error between the source image and the image restored by the decoder. its calculation formula is:
S S I M ( i m g _ a , i m g _ b ) = 2 X ¯ i m g _ a * X ¯ i m g _ b + c 1 X ¯ i m g _ a 2 + X ¯ i m g _ b 2 + c 1 2 σ i m g _ a i m g _ b + c 2 σ i m g _ a 2 + σ i m g _ b 2 + c 2
where X ¯ represents the average value, σ represents the standard deviation, and the value of SSIM is in [0, 1]. the value of SSIM closer the value is to 1, the higher the structural similarity of image A and image B is, and vice versa. So the Loss function is designed as follows:
L o s s = 1 S S I M ( i m g _ a , i m g _ b )

2.4. The Fusion Strategy of Network Model

This paper mainly uses the strategy of averaging the characteristics, and the calculation formula is as follows:
F i m g _ f u s e e d ( x , y ) = F i m g _ a ( x , y ) + F i m g _ b ( x , y ) 2
where F i m g _ f u s e e d represents the fused image, F i m g _ a , F i m g _ b represents the source image a, b, ( x , y ) represents the corresponding pixel position of the image, and the value of ( x , y ) depends on the size of the input image.

3. Experiments and Results

This paper uses 80,000 images from the MSCOCO dataset [18], 19-to-multi-exposure images from the Exposure dataset [19,20], 50 pairs of images from the Road dataset [21], and 21 pairs of images from the TNO dataset [18] as training sets and test datasets for the network.
The entire experiment was conducted in an environment of: CPU: AMD R7 1700 and GPU: NVIDIA RTX3060, Memory 32 GB, Pytorch 1.10.1+cu113.

3.1. Training Network

In the training stage, this paper ignores the fusion strategy, mainly using the encoder to extract image features, using the decoder to restore the image. In this paper, the Adam optimizer is selected as the optimizer of the network, and the batchsize = 6 of the training, the image size is 128 ∗ 128, the learning rate is 0.0001, and the number of iterations is 20 times, The MSCOCO dataset is divided into 5000 images, 20,000 images, and 60,000 image samples, and the network model is trained to obtain the model.

3.2. Image Fusion

In the image fusion stage, two identical encoders extract two different source images to get two feature maps. The two feature maps are merged into one feature map through the fusion strategy. The decoder is used to restore the feature map to an image and output 320 ∗ 320 fused images.

3.3. Evaluation of Experimental Results and Image Quality

Common ways to evaluate images are Entropy (EN) [22], Mutual information (MI) [23], Structural similarity (SSIM) [24], Multi-scale SSIM [25], Visual information fidelity (VIF) [26], Spatial Frequency (SF) [27], Image Quality (Quality, Q a b / f ) [28], Noise( N a b / f ) [29], Definition (DF) [30], Standard Deviation (SD). Except for the image noise method, the lower the value obtained, the better, the higher the value obtained by other methods.

3.4. The Road Dataset Experiments

This paper uses the above method to evaluate the image generated by the fusion of the model proposed in this paper. At present, the more advanced algorithms in the field of image fusion, IFCNN, DenseFuse [12] CBF [31], CNN [8,32], DeepDecFusion [23], MEF-GAN [33], FusionGAN [9], DualBranchFusion [14], are compared, and the experimental results are shown in Table 3:
From Table 3, it can be seen that the network model proposed in this paper is the best in 3 of 10 evaluation indexes. Another 4 indicators are suboptimal. It can be seen from Figure 5 that the part of the red frame in the Infrared Image image cannot see the texture of the wall, but the texture of the image can be clearly seen in the Visible Image. Through the experimental comparison, it is found that in addition to the overexposure of the images obtained by the MEF-GAN model, the proposed model, and other comparable models can retain more texture information of the background wall. However, the brightness of the images after the fusion of the DeepDecFusion and Densefuse models is not as high as that of the proposed model. In addition, in the blue frame, the model proposed in this paper retains the contour information of flowerbed plants to the greatest extent.
Besides, in the blue rectangle, the car outline in DeepDecFusion and FusionGAN is not clear, and the person’s outline is not clear. Densefuse, IFCNN, CNN, DeepDecFusion, and Ours have clear car outlines. In the purple rectangle, the Infrared image can see a crack. In contrast, in the Visible image it is almost invisible, MEF-GAN, closer to the Visible image, Densefuse, DeepDecFusion, IFCNN, and FusionGAN can see the crack inconspicuously, but CNN and Ours can clearly see the crack.
In summary, the network model proposed in this paper retains the various information of Infrared Images and Visible Images to a certain extent.

3.5. The Other Experiments

3.5.1. TNO Dataset

In the infrared and visible image fusion dataset, there are 21 pairs of different infrared and visible image images in TNO dataset. In this paper, these images are converted into grayscale images for experiments and comparison. The specific experimental results are as follows:
The red font in Table 4 indicates that the network model proposed in this paper has the highest score in 4 of the 7 evaluation indicators. In Figure 6, the clouds in the sky cannot be seen in the red box of the visible light image, but the trees in the white box can be clearly seen. In the red box of the infrared image, you can see many clouds and contour information, but you can’t see trees. Other images are obtained by various image fusion algorithms. There are many noises in CBF. IFCNN and DenseFuse retain more details of trees and clouds. The images fused by the network model proposed in this paper retain both the cloud layer information in the red box of the infrared image and the tree information in the white box of the visible image, and there is no noise in the fused image to affect the quality of the fused image.
Therefore, the network model proposed in this paper can better retain more information in infrared images and infrared images.
Besides, to prove the effectiveness of the proposed network model, we also fuse and test other images, such as images with many exposures and images with different focuses. The specific experimental results are as follows:

3.5.2. Exposure Dataset

In multiple Exposure datasets, Exposure dataset has a total of 19 color images with different exposures. In this paper, these color images are converted into grayscale images for experiments and comparison. The specific experimental results are as follows:
The red font in Table 5 indicates that this indicator has the highest score. The network model proposed in this paper has the highest score in 4 of the 7 evaluation indicators. In Figure 7, the background in the blue box of image A is under-exposed, while the background in the red box is under-exposed. In general, image A is under-exposed. The background in the blue box of image B is exposed, while the red box is over-exposed. In general, image B is over-exposed. Other images are obtained through various image fusion algorithms. CNN, Densefuse, and IFCNN images are over-exposed. However, the images fused by the network model proposed in this paper can be seen in the blue box, and also conform to the distribution of light sources. In the red box, you can see the grid under the light without over-exposure to the light effect.
In conclusion, the network model proposed in this paper can better keep more information in the under-exposed and over-exposed images. Thus, the model proposed in this paper is effective and has achieved good results in other areas.

3.6. Ablation Experiments

The ablation experiment part of this paper is mainly to replace the Inception module and Denseblocks module on each branch of this article with a convolutional kernel with a convolutional kernel size of 3 ∗ 3, and the other parts are not different from this network model.
The red numbers in Table 6 indicate the optimal in this column.The value of gray background is the score of the network model proposed in this paper on the datasets. The values without background are the scores of ablation experiments on the datasets. With a total of 30 indicators on all data, our model received 24 highest scores. All of the modules in the network model in this article, as well as the Denseblocks, are useful and work well on most of the datasets.

4. Conclusions

Deep learning has achieved good results in many fields; this paper organically combines deep learning with image fusion, and proposes an image fusion algorithm based on deep learning. Table 4, Table 5 and Table 6 show that our model has achieved good results on various datasets.
The multi-branch, multi-scale deep learning image network model proposed in this paper extracts image features by adding multiple branches and introducing the DenseBlocks module in the design of the encoder. The activation function is not used after each convolution in the entire network, and in the selection of activation functions, this article does not use all of them one activation function but uses multiple activation functions. In the design of the loss function, we use the SSIM values between images as a loss function for the network. In the design of the decoder, we use Dense Blocks for dimensionality reduction processing of images. The model proposed in this paper has largely preserved the original image after the fusion and is very realistic and natural. Experiments have proved that the network model proposed in this paper has achieved the best results on most of the datasets.
In the future, we will try more methods of image fusion and study how to reduce the super parameters of the network. Following this, we will improve the network efficiency and strive to solve more problems in the field of image fusion.

Author Contributions

Conceptualization, Z.C.; methodology, Z.C.; software, Z.C.; validation, Y.D., Z.C., F.G. and Z.L.; formal analysis, Z.C.; data curation, Z.C. and Z.L.; writing—original draft preparation, Z.C.; writing—review and editing, Z.C. and Y.D.; visualization, Z.C. and Z.L.; supervision, Y.D.; funding acquisition, Y.D. and F.G. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by the National Natural Science Foundation of China grant No. 61772295, 61572270, the PHD foundation of Chongqing Normal University (No. 19XLB003), the Science and Technology Research Program of Chongqing Municipal Education Commission (KJZD.M202-000501), Chongqing Technology Innovation and Application Development Special General Project (cstc-2020jscxlyjsAX0002) and Chongqing Technology Foresight and Institutional Innovation Project (cstc2021-jsyj-.yzys-bAX0011).

Data Availability Statement

Conflicts of Interest

We declare that we have no financial and personal relationships with other people or organizations that can inappropriately influence our work, there is no professional or other personal interest of any nature or kind in any product, service and company that could be construed as influencing the position presented in the manuscript entitled “Multi-branch Multi-scale Deep Learning Image Fusion Algorithm Based On DenseNet”.

Abbreviations

The following abbreviations are used in this manuscript:
ENEntropy
MIMutual information
SSIMStructural similarity
MS-SSIMMulti-scale SSIM
VIFVisual information fidelity
SFSpatial Frequency
Q a b / f Image Quality
N a b / f Noise
DFDefinition
SDStandard Deviation.

References

  1. Liu, Z.; Mao, H.; Wu, C.Y.; Feichtenhofer, C.; Darrell, T.; Xie, S. A ConvNet for the 2020s. arXiv 2022, arXiv:2201.03545. [Google Scholar]
  2. Krizhevsky, A.; Sutskever, I.; Hinton, G. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems 25; Curran Associates, Inc.: Red Hook, NY, USA, 2012. [Google Scholar]
  3. Simonyan, K.; Zisserman, A. Very deep convolutional networks for large- scale image recognition. arXiv 2014, arXiv:1409.1556. [Google Scholar]
  4. Szegedy, C.; Liu, W.; Jia, Y.; Sermanet, P.; Rabinovich, A. Going Deeper with Convolutions; IEEE Computer Society: Washington, DC, USA, 2014. [Google Scholar]
  5. Szegedy, C.; Ioffe, S.; Vanhoucke, V.; Alemi, A. Inception-v4, inception- resnet and the impact of residual connections on learning. In Proceedings of the Thirty-First AAAI Conference on Artificial Intelligence, Phoenix, AZ, USA, 12–17 February 2016. [Google Scholar]
  6. He, K.; Zhang, X.; Ren, S.; Sun, J. Deep residual learning for image recognition. In Proceedings of the 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Las Vegas, NV, USA, 27–30 June 2016. [Google Scholar]
  7. Iandola, F.; Moskewicz, M.; Karayev, S.; Girshick, R.; Keutzer, K. Densenet: Implementing efficient convnet descriptor pyramids. arXiv 2014, arXiv:1404.1869. [Google Scholar]
  8. Liu, Y.; Chen, X.; Peng, H.; Wang, Z. Multi-focus image fusion with a deep convolutional neural network. Inf. Fusion 2017, 36, 191–207. [Google Scholar] [CrossRef]
  9. Ma, J.; Wei, Y.; Liang, P.; Chang, L.; Jiang, J. Fusiongan: A genera- tive adversarial network for infrared and visible image fusion. Inf. Fusion 2019, 48, 11–26. [Google Scholar] [CrossRef]
  10. Zhang, Y.; Liu, Y.; Sun, P.; Yan, H.; Zhao, X.; Zhang, L. Ifcnn: A general image fusion framework based on convolutional neural network. Inf. Fusion 2020, 54, 99–118. [Google Scholar] [CrossRef]
  11. Fu, Y.; Xu, T.; Wu, X.; Kittler, J. PPT Fusion: Pyramid Patch Transformerfor a Case Study in Image Fusion. arXiv 2021, arXiv:2107.13967. [Google Scholar]
  12. Hui, L.; Wu, X.J. Densefuse: A fusion approach to infrared and visible images. IEEE Trans. Image Process. 2018, 28, 2614–2623. [Google Scholar]
  13. Hui, L.; Wu, X.J.; Kittler, J. Infrared and visible image fusion using a deep learning framework. In Proceedings of the International Conference on Pattern Recognition 2018, Beijing, China, 18–20 August 2018. [Google Scholar]
  14. Fu, Y.; Wu, X.J. A Dual-branch Network for Infrared and Visible Image Fusion. arXiv 2021, arXiv:2101.09643. [Google Scholar]
  15. Li, H.; Wu, X.J.; Durrani, T. Nestfuse: An infrared and visible image fusion architecture based on nest connection and spatial/channel atten- tion models. IEEE Trans. Instrum. Meas. 2020, 69, 9645–9656. [Google Scholar] [CrossRef]
  16. Zhou, W.; Bovik, A.C.; Sheikh, H.R.; Simoncelli, E.P. Image quality assessment: From error visibility to structural similarity. IEEE Trans. Image Process. 2004, 13, 600–612. [Google Scholar]
  17. Kumar, N.; Hoffmann, N.; Oelschlägel, M.; Koch, E.; Kirsch, M.; Gumhold, S. Structural Similarity based Anatomical and Functional Brain Imaging Fusion. In Proceedings of the International Conference on Medical Image Computing and Computer Assisted Intervention and International Workshop on Mathematical Foundations of Computational Anatomy, Shenzhen, China, 17 October 2019; Springer: Cham, Switzerland, 2019. [Google Scholar]
  18. Fu, Y.; Wu, X.J.; Durrani, T. Image fusion based on generative adver- sarial network consistent with perception. Inf. Fusion 2021, 72, 110–125. [Google Scholar] [CrossRef]
  19. Prabhakar, K.R.; Srikar, V.S.; Babu, R.V. Deepfuse: A deep unsupervised approach for exposure fusion with extreme exposure image pairs. In Proceedings of the 2017 IEEE International Conference on Computer Vision (ICCV), Venice, Italy, 22–29 October 2017. [Google Scholar]
  20. Nejati, M.; Samavi, S.; Shirani, S. Multi-focus image fusion using dictionary-based sparse representation. Inf. Fusion 2015, 25, 72–84. [Google Scholar] [CrossRef]
  21. Xu, H.; Ma, J.; Le, Z.; Jiang, J.; Guo, X. Fusiondn: A unified densely connected network for image fusion. In Proceedings of the Thirty-Fourth AAAI Conference on Artificial Intelligence, New York, NY, USA, 7–12 February 2020. [Google Scholar]
  22. Roberts, J.W.; Van Aardt, J.A.; Ahmed, F.B. Assessment of image fusion procedures using entropy, image quality, and multispectral classification. J. Appl. Remote Sens. 2008, 2, 023522. [Google Scholar]
  23. Fu, Y.; Wu, X.J.; Kittler, J. Effective method for fusing infrared and visible images. J. Electron. Imaging 2021, 30, 033013. [Google Scholar] [CrossRef]
  24. Xydeas, C.S.; Pv, V. Objective image fusion performance measure. Mil. Tech. Cour. 2000, 56, 181–193. [Google Scholar]
  25. Qu, G.; Zhang, D.; Yan, P. Information measure for performance of image fusion. Electron. Lett. 2002, 38, 313–315. [Google Scholar] [CrossRef] [Green Version]
  26. Liu, Y.; Chen, X.; Wang, Z.; Wang, Z.J.; Ward, R.K.; Wang, X. Deep learning for pixel-level image fusion: Recent advances and future prospects. Inf. Fusion 2018, 42, 158–173. [Google Scholar] [CrossRef]
  27. Eskicioglu, A.M.; Fisher, P.S. Image quality measures and their perfor- mance. IEEE Trans. Commun. 1995, 43, 2959–2965. [Google Scholar]
  28. Xu, H.; Ma, J.; Jiang, J.; Guo, X.; Ling, H. U2fusion: A unified unsuper- vised image fusion network. IEEE Trans. Pattern Anal. Machine Intell. 2020, 4, 502–518. [Google Scholar]
  29. Hui, L.A.; Xjw, A.; Jk, B. Rfn-nest: An end-to-end residual fusion network for infrared and visible images. Inf. Fusion 2021, 73, 72–86. [Google Scholar]
  30. Li, H.; Wu, X.J.; Kittler, J. Mdlatlrr: A novel decomposition method for infrared and visible image fusion. IEEE Trans. Image Process. 2020, 29, 4733–4746. [Google Scholar] [CrossRef]
  31. Kumar, B.K.S. Multifocus and multispectral image fusion based on pixel significance using discrete cosine harmonic wavelet transform. Signal Image Video Process. 2013, 7, 1125–1143. [Google Scholar] [CrossRef]
  32. Liu, Y.; Chen, X.; Cheng, J.; Peng, H.; Wang, Z. Infrared and visible image fusion with convolutional neural networks. Int. J. Wavelets Multiresolut. Inf. Process. 2018, 16, 1850018. [Google Scholar] [CrossRef]
  33. Xu, H.; Ma, J.; Zhang, X.P. Mef-gan: Multi-exposure image fusion via generative adversarial networks. IEEE Trans. Image Process. 2020, 29, 7203–7216. [Google Scholar] [CrossRef]
Figure 1. The Architecture of Inception module.
Figure 1. The Architecture of Inception module.
Applsci 12 10989 g001
Figure 2. The Architecture of Network.
Figure 2. The Architecture of Network.
Applsci 12 10989 g002
Figure 3. The Encoder Architecture of Network.
Figure 3. The Encoder Architecture of Network.
Applsci 12 10989 g003
Figure 4. The Decoder Architecture of Network.
Figure 4. The Decoder Architecture of Network.
Applsci 12 10989 g004
Figure 5. The Result of Road Datasets.
Figure 5. The Result of Road Datasets.
Applsci 12 10989 g005
Figure 6. The Result of TNO Datasets.
Figure 6. The Result of TNO Datasets.
Applsci 12 10989 g006
Figure 7. The Result of Exposure Datasets.
Figure 7. The Result of Exposure Datasets.
Applsci 12 10989 g007
Table 1. The Encoder Architecture of Network.
Table 1. The Encoder Architecture of Network.
BranchsLayersKernel_SizeStridePaddingActivation
layer 17 ∗ 713Gelu
branch 1layer 2Inception---
layer 33 ∗ 311-
layer 15 ∗ 512Relu
branch 2layer 21 ∗ 110-
layer 3Inception---
layer 13 ∗ 311Relu
branch 3layer 21 ∗ 110-
layer 3Inception---
layer 43 ∗ 311-
branch 4Dense Blocks----
Table 2. The Decoder Architecture of Network.
Table 2. The Decoder Architecture of Network.
LayersKernel_SizeStridePaddingActivation
layer1Inception---
layer2Dense Blocks---
layer33 ∗ 311Sigmoid
Table 3. Objectively evaluate the classical and latest fusion algorithms.
Table 3. Objectively evaluate the classical and latest fusion algorithms.
ModelSFEN Q ab / f SSIMMS-SSIM N ab / f MIVIFSDDF
CNN15.021897.270640.574790.680320.914500.0279414.541270.7643644.957766.93236
IFCNN15.068406.973000.515000.704570.879850.0315213.946000.6248535.816027.04094
MEFGAN11.915927.161280.196000.471060.552440.0823914.322560.6073169.204275.17243
Densefuse9.587116.694150.356990.724260.850740.0018313.388290.3505930.827094.62602
FusionGAN8.639967.175330.273730.614220.735170.0168214.350670.4255842.303963.92426
DeepDec-Fusion10.788466.759950.383010.693780.823580.0094513.519900.3824631.833944.81932
Dual-Branch-Fusion28.805727.089380.347210.591380.669630.1096614.178760.5186044.4171911.78575
Ours15.353587.310370.448580.666090.919370.1642614.620740.7225647.340917.20294
The red number represents the best, and the blue number represents the second best.
Table 4. The result of TNO datasets.
Table 4. The result of TNO datasets.
ModelSFENMIVIFSDDFSSIM
Densefuse5.792256.1763812.352760.2844722.550322.784890.74928
CBF13.591456.8574913.714980.7184935.912546.785950.59957
IFCNN11.495266.5972913.194570.5922831.615345.794910.73158
Ours11.123967.0836414.167280.8325539.796005.420900.70152
Table 5. The Result of Exposure Datasets.
Table 5. The Result of Exposure Datasets.
ModelSFENMIVIFSDDFSSIM
Densefuse14.340066.7019613.403931.2370338.993115.837220.59582
CNN23.240086.5262213.052451.8184248.164409.658540.60547
IFCNN25.972696.8256413.651272.1884447.3459510.774380.59788
Ours24.030957.0993314.198652.3395953.4236010.296970.54275
Table 6. The result of ablation experiments.
Table 6. The result of ablation experiments.
ModelSFEN Q ab / f SSIMMS-SSIM N ab / f MIVIFSDDF
Exposure23.570956.828910.399760.520320.837960.1120513.657822.7695755.549529.43259
Exposure 124.030957.099330.546530.542750.916750.0636514.198652.3395953.4236010.29697
Road11.448296.887960.391650.698680.857150.0074413.775930.4317534.135245.24988
Road 115.353587.310370.448580.666090.91937 0.1642614.620740.7225647.340917.20294
Tno8.575296.328940.342810.718740.852940.0091112.657890.3535527.281843.89286
Tno111.123967.083640.456830.701520.930590.1661614.167280.8325539.796005.42090
1 The network model proposed in this paper.
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Dong, Y.; Chen, Z.; Li, Z.; Gao, F. A Multi-Branch Multi-Scale Deep Learning Image Fusion Algorithm Based on DenseNet. Appl. Sci. 2022, 12, 10989. https://doi.org/10.3390/app122110989

AMA Style

Dong Y, Chen Z, Li Z, Gao F. A Multi-Branch Multi-Scale Deep Learning Image Fusion Algorithm Based on DenseNet. Applied Sciences. 2022; 12(21):10989. https://doi.org/10.3390/app122110989

Chicago/Turabian Style

Dong, Yumin, Zhengquan Chen, Ziyi Li, and Feng Gao. 2022. "A Multi-Branch Multi-Scale Deep Learning Image Fusion Algorithm Based on DenseNet" Applied Sciences 12, no. 21: 10989. https://doi.org/10.3390/app122110989

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop