<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Thermal Image Super-Resolution via Lightweight Efficient Channel Attention Network</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Andrii Didenko</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Andrii Oliinyk</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>CMIS-2025: Eighth International Workshop on Computer Modeling and Intelligent Systems</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>Single Image Super-resolution (SISR) methods are actively developed with the help of advancements in Convolution Neural Networks (CNNs) and attention mechanisms. Following the progress in RGB SISR methods, thermal image super-resolution methods (TISR) are beginning to adopt and implement these advancements. Despite showing prominent results, modern state-of-the-art SISR methods often have a large number of parameters, leading to a significant computational overhead and memory consumption and making it difficult to run these methods in real-time or on edge devices. To address these problems, we propose a parameter-efficient TISR model named LECAN, which consists of a stack of efficient channelspatial attention blocks (ECSAB). Specifically, the ECSAB combines Pixel Attention (PA) with the proposed Efficient Contrast-aware Channel Attention (ECCA) to extract both spatial and channel-wise features while maintaining a low parameter count. Meanwhile, the Attentive Feature Fusion (AFF) mechanism effectively combines information from all blocks, capturing both low-level and high-level features. The qualitative and quantitative results show that the proposed method achieves superior results among same-size models while preserving the texture and patterns of the thermal image with a small number of parameters.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Image super-resolution</kwd>
        <kwd>thermal image</kwd>
        <kwd>deep learning</kwd>
        <kwd>attention mechanism</kwd>
        <kwd>lightweight network1</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        The ability of thermography to capture light information beyond the visible scope has made it in
demand in many spheres. Unlike thermal cameras, RGB cameras often struggle to capture images in
low-light and bad weather conditions, making them highly sensitive and dependent tools. Moreover,
thermal images are also used as an additional source of information, enhancing the overall process of
data analysis. These advancements have made thermography a preferable instrument in many fields,
including medicine [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], UAVs [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], agriculture [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], etc.
      </p>
      <p>On the other hand, due to the high cost and complexity of producing high-resolution thermal
cameras, the output infrared image is often low-resolution. This constraint makes analyzing thermal
data difficult, making it harder to distinguish small details in the image. This, in turn, leads to a
decrease in the quality of data analysis. To overcome this issue, image super-resolution (ISR)
techniques can be used, that are invariant of the camera hardware.</p>
      <p>With the development of CNNs, ISR task can be accurately solved with the help of deep learning
techniques. These methods rely on the convolution operation, which can effectively extract patterns
and textures of different complexity. On the other hand, to achieve high performance, these methods
stack a sufficient amount of layers, making the overall size of the model large. This disadvantage
makes it hard to integrate these models on edge devices or use them in real-time.</p>
      <p>Efficient ISR methods help to decrease the size of the model while keeping the overall
performance high. On the other hand, the development of such methods remains difficult due to the
complexity of accuracy-size trade-off.</p>
      <p>In this paper, we propose a novel architecture called Lightweight Efficient Channel Attention
Network (LECAN) that is based on a combination of channel and spatial attention mechanisms. To
keep the number of parameters low, we propose a combination of Contrast-aware and Efficient
Channel Attention mechanisms. This structure helps to accurately extract fine details at different
frequency levels.</p>
      <p>The main contribution of the paper is:
0009-0009-9236-3936 (A. Didenko); 0000-0002-6740-6078 (A. Oliinyk)
© 2025 Copyright for this paper by its authors.</p>
      <p>Use permitted under Creative Commons License Attribution 4.0 International (CC BY 4.0).


</p>
      <p>We propose a novel architecture called LECAN that consists its key components called
Efficient Channel-Spatial Attention Blocks (ECSAB). The architecture of ECSAB allows to
extraction spatial and channel features in parallel by dynamically recalibrating the
importance of channels and pixels.</p>
      <p>We propose to use the Efficient Contrast-aware Channel Attention block (ECCA) for
solving the TISR task. This idea combines the strength of contrast-aware feature
extraction and the efficiency of ECA.</p>
      <p>The qualitative and quantitative results show that the proposed method demonstrates
competitive results in different benchmarks with less number of parameters.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related work</title>
      <sec id="sec-2-1">
        <title>2.1. Image Super-Resolution methods 2.1.1. CNN-based</title>
        <p>
          Image SR methods began rapid development since the CNNs became popular. SRCNN [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ] was the first
method to apply a CNN network to solve SR, consisting of 3 convolutional layers and becoming a
state-of-the-art method at one time. However, 3 convolutional layers are not enough to learn a
sufficient amount of patterns for reconstruction. The authors of VDSR [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ] used 20 convolutional
layers, showing significant improvements in results. Combining the advancements of residual
learning [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] to increase the performance of very deep CNNs with Generative Adversarial Networks
(GANs), the authors of SRGAN [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] proposed a GAN-based SR model to further boost the performance
of SR methods. On the other hand, the training process of GAN-based is difficult due to hard
convergence and mode collapse. To achieve better performance, the authors of EDSR [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] proposed to
remove batch normalization in SrResNet [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] blocks. Despite the fact that the process of stacking layers
can gradually improve the accuracy of SR models, it will eventually become inefficient to apply in
realworld scenarios because of the large number of parameters. Addressing this problem, the authors of
RCAN [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] proposed the use of the Channel Attention (CA) mechanism to adaptively enhance
channelwise features based on the interdependencies of the channels.
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>2.1.2. Efficient SR</title>
        <p>To overcome the problem of considerable complexity of most state-of-the-art methods, efficient
models can be used. These models try to minimize the overall complexity by removing unnecessary
layers, reducing the number of parameters of basic building blocks, distilling large models, etc.</p>
        <p>The authors of PAN [10] proposed a network with Pixel Attention (PA) mechanism, that aims to
enhance spatial dependencies with fewer parameters. A2N model [11] uses building blocks that consist
of attention and non-attention branches weighted by a dynamic attention module, that helps to
dynamically adjust the impact of each attention branch. IMDN [12] employs the channel-splitting
strategy, in which one part of the channels is kept while the other part is passed on for further
processing. This strategy allows to improve the performance while reducing the number of
parameters. The authors of RFDN [13] successfully improved the idea behind IMDN by enhancing
channel-splitting operation and reducing the number of parameters in convolutional layers. BSRN
[14] further improves channel splitting idea</p>
        <p>Although efficient models are able to produce an upscaled image quickly and with low
computational costs, the quality of the output image remains low compared to the original image. This
trade-off emphasizes the need to develop efficient models that can process images with high accuracy
while remaining small in size.</p>
      </sec>
      <sec id="sec-2-3">
        <title>2.2. Attention mechanism</title>
        <p>Inspired by human attention, the attention mechanism in deep learning helps the model focus
more on important parts of the input data. The Squeeze-and-Excitation (SE) [15] block was proposed
to enhance features in channel dimension by assigning weights to each channel. CBAM [16] further
expands this idea by assigning weights not only in the channels but also in the spatial dimensions. The
Efficient Channel Attention (ECA) is an improvement of the SE block that uses a one-dimensional
convolutional block to reduce the model complexity. The self-attention mechanism that is used in
Vision Transformers [18] also inspired the development of transformer-based models for low-level
vision tasks. SwinIR [18] adopted the Swin Transformer [20] as a baseline by creating a Residual Swin
Transformer Block with a convolutional layer and long residual connection. IPT [21] also applied
ViTbased architecture and introduced multi-task pretraining for low-level vision. HAT [22] combines
channel attention and window-based attention to enhance performance by activating more input
pixels.</p>
        <p>In this work, we endeavor to enhance the ISR model with the strength of the attention mechanism,
while keeping the model efficient at the same time.</p>
      </sec>
      <sec id="sec-2-4">
        <title>2.3. Thermal Image Super-Resolution</title>
        <p>Due to the domain specificity of RGB and infrared images, which include visual and contextual
differences, directly applying SR methods developed and trained for RGB images on infrared images
may not be beneficial. Therefore, there is a need to design and train models directly for the TISR task.</p>
        <p>The authors of the PSRGAN [23] proposed to use GAN-based model along with multistage transfer
learning for solving TISR task. TherISuRNet [24] method consists of several residual blocks for
extracting features and different frequency levels. The authors of MPRANet [25] proposed
residualand attention-based network with convolution of different kernel sizes. ChaSNet [26] uses
channelsplitting technique to improve feature extraction. LISN [27] also uses a channel-splitting idea to
reduce the number of parameters. LDANet [28] uses blocks with attention and non-attention branches
weighted by dynamic attention modules.</p>
        <p>Despite noticeable results in TISR, this area is still under-researched compared to other low-level
vision tasks. This supports the need to develop robust methods directly for solving TISR task.</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Method</title>
      <p>This section describes the architecture of the building blocks and the overall proposed network for
thermal image SISR, as well as the motivation for their implementation and usage.</p>
      <sec id="sec-3-1">
        <title>3.1. Network Architecture</title>
        <p>The architecture of the proposed networks (Figure 1) follows the extended standard structure for
the SR models: shallow feature extractor (SFE), deep feature extractor (DFE), feature fusion (FF), and
image reconstruction (IR, upsampling).
where xSFE– output features from SFE module;
ILR – low-resolution image;
fSFE – the function of the SFE module.</p>
        <p>After shallow features are extracted, the output from the SFE module is then processed by the DFE
module. The DFE module is the main part of the network which is responsible for extracting
highlevel features and complex patterns that might be useful for ISR. The DFE module consists of a stack of
Efficient Channel-Spatial Attention Blocks (ECSAB), which will be explained in Section 3.2. The
xSFE=f SFE ( I LR ) ,
(1)
output of the DFE module is the stack of outputs of each ECSAB module that is then processed by the
AFF module. Mathematically, the DFE is represented as follows (2):</p>
        <p>x DFE=f DFE ( xSFE )={f B1( xSFE ); f B2( f B1( xSFE ));…; f BN ( f BN−1(… f B1( xSFE )…))},
where xDFE– outputs from DFE module;
f</p>
        <p>BN – the function of N-th ECSAB block.</p>
        <p>The stacked outputs from the DFE module are then processed by the FF module to accurately fuse
and extract the interdependencies between the output channels of each ECSAB block and the spatial
features of the fused results. The FF module is represented by the AFF block, which is described in
Section 3.3. Mathematically, the output of the FF module is expressed as follows (3):
(2)
x FF=f FF ( f DFE ( f SFE ( I LR ))),
where xFF – output features from FF module;
fFF– the function of the FF module.</p>
        <p>Finally, the IR module reconstructs the high-resolution image by upscaling it with the desired
factor. Figure 2 shows the IR block. The IR module consists of one IR block if upscaling factor is 2 and
two IR block if upscaling factor is 4.
(3)
(4)
(5)
where xIR – output from IR module;
NN – nearest neighbor interpolation.</p>
        <p>The overall mathematical formula for ISR is the following (5):</p>
        <p>I SR=f IR ( f FF ( f DFE ( f SFE ( I LR ))))+ B ( I LR ) ,
where ISR – output upscaled image;
fIR – the function of the IR module;
B – bilinear interpolation.</p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Efficient Contrast-aware Channel Attention Block</title>
        <p>Simply combining the strength of the ECA [17] and CCA [12], we propose the ECCA block as part
of the TISR method. First, the ECCA inherits parameter efficiency from the ECA block. Secondly, the
contrast-aware part from CCA introduces a better refinement of textures and edges, allowing the
model to capture information from low-, medium-, and high-level features. Following the original
paper, the contrast-aware operation is the summation of each channel's standard deviation and mean.
Figure 3 shows the structures of spatial-based attention (PA) and channel-based attention (including
the proposed ECCA).</p>
        <p>Mathematically, ECCA can be expressed as follows (6):
x ECCA=Sigmoid ( Conv 1 d ( meanc ( xin )+ stdc ( xin )) ,
(6)
where xECCA – output from ECCA block;
xin – input to the ECCA block;
meanc – per channel mean;
stdc – per channel standard deviation</p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Efficient Channel-Spatial Attention Block</title>
        <p>The key component of the proposed method is the ECSA block and its combination of
channelwise and pixel-wise attention mechanisms. Specifically, this combination of two attention
mechanisms allows the model to simultaneously focus on reweighting the feature maps along the
channel dimension with the ECCA and emphasize the importance of individual pixels within the
feature maps with the PA. Consequently, the network is able to leverage complementary information
is across both spatial and channel dimensions. The parallel structure of applying attention
mechanisms to the input features ensures independent behavior of extracting spatial and
channelwise dependencies with a further combination of the feature maps. Residual connections allow the
preservation of input features’ information for further layers. Figure 4 shows the architecture of the
ECSA block.</p>
      </sec>
      <sec id="sec-3-4">
        <title>3.4. Attentive Feature Fusion</title>
        <p>The AFF block serves as a additional part of the proposed model and its main goal is to efficiently
fuse output features from different detailization levels. To do this, outputs from each ECSA block are
concatenated along the channel dimension. Then, concatenated channels are processed with an ECCA
block to extract dependencies across all blocks channel-wise. This operation allows the model to
attend more to important information that might be spread along channels of different blocks,
efficiently combining low-level and high-level features. Then, to reduce the number of parameters, the
point-wise convolution is applied. In the end, the PA block is used to further process spatial
information. In general, this module is based on the assumption that different levels of deep feature
extraction might carry some portion of useful features and the attentive combination of features
might improve the selection of this information. Figure 5 shows the architecture of the FFA block.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Experimental analysis</title>
      <p>The training setup for all models was the same to exclude the dependency of training parameters.
AdamW [29] was used as an optimizer. The learning rate was set to 2e-4 with a MiltuStepLR scheduler
that multiplies the learning rate by 0.5 at the following milestones: 50k, 65k, 80k, and 90k. The total
number of iterations was set to 100k. During training, a patch of size 256×256 was randomly cropped
from the HR image along with the corresponding patch from the LR image. The batch size during
training was set to 8. Horizontal and vertical flips were used as data augmentation techniques, as well
as random JPG compression with quality varying from 0.9 to 1. RSNR and SSIM were used as
evaluation metrics. The experiments were conducted with PyTorch framework.</p>
      <sec id="sec-4-1">
        <title>4.1. Training and testing datasets</title>
        <p>For training, we used the Challenge dataset [30]. This dataset consists of thermal images of three
different resolutions: LR Domo, MR Axis, and HR FLIR. To create a training set for this task, we
downsampled HR FLIR thermal images by the scales of 2 and 4. The resulting dataset contains 951
images for training and 50 images for validation.</p>
        <p>For testing, we used a recent Challenge dataset (Challenge 2) [30]. This dataset contains 1000
images, where 900 images are provided for training and validation, while the other 100 images are
used to evaluate entries for the challenge (ground-truth is hidden). To create a testing set, 900 GT
images were downsampled by scales of 2 and 4.</p>
        <p>We also used CVC-09: FIR Sequence Pedestrian Dataset [31] by randomly selecting 1000 GT images
and downsampling them by scales of 2 and 4.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Ablation study</title>
        <p>We conducted the ablation study to examine the effect of different attention mechanisms in the
network. Specifically, we trained 4 models with CA, ECA, CCA, and ECCA blocks in the architecture.
The results of the ablation study on Channel Attention type are shown in Table 1.</p>
        <p>The results show that the contrast-aware part of the Channel Attention can improve the
performance, while the usage of parameter-efficient Channel Attention reduces overall model
complexity, keeping model’s accuracy high.</p>
      </sec>
      <sec id="sec-4-3">
        <title>4.3. Quantitative evaluation</title>
        <p>
          We compared our proposed model with several state-of-the-art methods: SRCNN [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ], BSRN [14],
PAN [10], RFDN [13], A2N [11], and IMDN [12]. The quantitative evaluation shows that the proposed
method achieves competitive results while remaining relatively small compared to other models.
Tables 2-5 present quantitative results for each method, as well as the size of each model.
        </p>
      </sec>
      <sec id="sec-4-4">
        <title>4.4. Qualitative evaluation</title>
        <p>The quantitative results show that the proposed method is able to reconstruct different patterns
and textures of thermal images. The proposed model can Figures 6-9 present a qualitative analysis of
LECAN comparing to state-of-the-art methods.</p>
      </sec>
      <sec id="sec-4-5">
        <title>4.5. Inference speed evaluation</title>
        <p>Inference evaluations were conducted on a server CPU AMD EPYC 7R32. The input image size is
256x256, and an average time of 10 runs was chosen. Table 6 lists the inference speed results in ms and
the number of Floating Point Operations (FLOPs). The results show good trade-off between accuracy
and inference speed.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion</title>
      <p>In this paper, we propose LECAN for solving the TISR task. The proposed model consists of four main
parts: shallow feature extraction, deep feature extraction, attentive feature fusion, and image
reconstruction. The deep feature extraction consists of several ECSAB blocks. The ECSAB block
efficiently combines channel and spatial attention mechanisms, where channel attention is
represented by the Efficient Contrast-aware Channel Attention (ECCA) block, and spatial attention is
represented by the Pixel Attention (PA) block. The combination of Contrast-aware and Efficient
Channel Attention mechanisms allows to reduce the number of parameters and enhances the overall
performance of the model. The qualitative and quantitative comparisons show that the proposed
method demonstrates competitive results while maintaining a low parameter count. Further work can
be aimed to improve the extraction of more complex features by enhancing attention mechanisms.</p>
    </sec>
    <sec id="sec-6">
      <title>Declaration on Generative AI</title>
      <p>During the preparation of this work, the authors used Grammarly in order to: Grammar and spelling
check. After using this tool, the authors reviewed and edited the content as needed and take full
responsibility for the publication’s content.
[10] H. Zhao, X. Kong, J. He, Y. Qiao, C. Dong, Efficient Image Super-Resolution Using Pixel Attention
in: Proceedings of 2020 European Conference on Computer Vision, Glasgow, 2020, pp. 56-72,
doi:10.1007/978-3-030-67070-2_3.
[11] H. Chen, J. Gu, Z. Zhang, Attention in Attention Network for Image Super-Resolution, 2021,
doi:arXiv:2104.09497v3.
[12] Z. Hui, X. Gao, Y. Yang, X. Wang, Lightweight Image Super-Resolution with Information
Multidistillation Network, in: Proceedings of the 27th ACM International Conference on Multimedia,
New York, 2019, pp. 2024–2032, doi:10.1145/3343031.3351084.
[13] J. Liu, J. Tang, G. Wu, Residual Feature Distillation Network for Lightweight Image
SuperResolution, in Proceedings of Computer Vision – ECCV 2020 Workshops, Glasgow, 2020,
pp.4155, doi:10.1007/978-3-030-67070-2_2.
[14] Z. Li et al., Blueprint Separable Residual Network for Efficient Image Super-Resolution, in:
Proceedings of 2022 IEEE/CVF Conference on Computer Vision and Pattern Recognition
Workshops (CVPRW), New Orleans, 2022, pp. 832-842, doi:10.1109/CVPRW56347.2022.00099.
[15] J. Hu, L. Shen. G. Sun, Squeeze-and-Excitation Networks, in: Proceedings of 2018 IEEE/CVF
Conference on Computer Vision and Pattern Recognition, Salt Lake City, 2018, pp. 7132-7141,
doi:10.1109/CVPR.2018.00745.
[16] S. Woo, J. Park, J. Lee, and I. S. Kweon, CBAM: Convolutional Block Attention Module, in:
Proceedings of ECCV 2018 15th European Conference, Munich, 2018, pp.3-19,
doi:10.1007/978-3030-01234-2_1.
[17] Q. Wang, B. Wu, P. Zhu, P. Li, W. Zuo. Q. Hu, ECA-Net: Efficient Channel Attention for Deep
Convolutional Neural Networks, in: Proceedings of 2020 IEEE/CVF Conference on Computer
Vision and Pattern Recognition (CVPR), Seattle, 2020, pp. 11531-11539,
doi:10.1109/CVPR42600.2020.01155.
[18] A. Dosovitskiy et al., An Image is Worth 16x16 Words: Transformers for Image Recognition at
Scale, 2021 International Conference on Learning Representations, 2021,
doi:10.48550/arXiv.2010.11929.
[19] J. Liang, J et. al., SwinIR: Image Restoration Using Swin Transformer, in: Proceedings of 2021
IEEE/CVF International Conference on Computer Vision Workshops (ICCVW), Montreal, 2021,
pp. 1833-1844, doi:10.1109/ICCVW54120.2021.00210.
[20] Z. Liu et al., Swin Transformer: Hierarchical Vision Transformer using Shifted Windows, in:
Proceedings of 2021 IEEE/CVF International Conference on Computer Vision (ICCV), Montreal,
2021, pp. 9992-10002, doi:10.1109/ICCV48922.2021.00986.
[21] H. Chen et al., Pre-Trained Image Processing Transformer, in: Proceedings of 2021 IEEE/CVF
Conference on Computer Vision and Pattern Recognition (CVPR), Nashville, 2021, pp.
1229412305, doi:10.1109/CVPR46437.2021.01212.
[22] X. Chen, X. Wang, J. Zhou, Y. Qiao, C. Dong. Activating More Pixels in Image Super-Resolution
Transformer, in: Proceedings of 2023 IEEE/CVF Conference on Computer Vision and Pattern
Recognition (CVPR), Vancouver, 2023, pp. 22367-22377, doi:10.1109/CVPR52729.2023.02142.
[23] Y. Huang, Z. Jiang, R. Lan, S. Zhang, K. Pi, Infrared Image Super-Resolution via Transfer Learning
and PSRGAN, IEEE Signal Processing Letters (2021), volume 28, 2021, pp. 982-986.
doi:10.1109/LSP.2021.3077801.
[24] V. Chudasama et al., TherISuRNet - A Computationally Efficient Thermal Image
SuperResolution Network, in: Proceedings of 2020 IEEE/CVF Conference on Computer Vision and
Pattern Recognition Workshops (CVPRW), Seattle, 2020, pp. 388-397,
doi:10.1109/CVPRW50498.2020.00051.
[25] H. Zhang, Y Hu, M. Yan, B. Ma, Thermal image super-resolution via multi-path residual attention
network, Signal, Image and Video Processing (2023), volume 17, 2023, pp. 2073–2081.
doi:10.1007/s11760-022-02421-x.
[26] K. Prajapati et al., Channel Split Convolutional Neural Network (ChaSNet) for Thermal Image
Super-Resolution, in: Proceedings of 2021 IEEE/CVF Conference on Computer Vision and Pattern
Recognition Workshops (CVPRW), Nashville, 2021, pp. 4363-4372,
doi:10.1109/CVPRW53098.2021.00493.
[27] S. Lue et al., Infrared Image Super-Resolution via Lightweight Information Split Network, in:
Advanced Intelligent Computing Technology and Applications ICIC 2024, volume 14869,
Singapure, 2024. doi:10.1007/978-981-97-5603-2_24.
[28] H. Zhang, Y. Hu, Lightweight dynamic attention network for single thermal image
superresolution, Signal, Image and Video Processing (2024), volume 18, 2024, pp. 2195-2206.
doi:10.1007/s11760-023-02886-4.
[29] I. Loshchilov, F. Hutter, Decoupled Weight Decay Regularization, in: Proceedings of the 7th
International Conference on Learning Representations, New Orleans, 2019.
doi:10.48550/arXiv.1711.05101.
[30] R. E. Rivadeneira, A. D. Sappa, and B. X. Vintimilla, Thermal image super-resolution: a novel
architecture and dataset, in: Proceedings of the 15th International Joint Conference on Computer
Vision, Imaging and Computer Graphics Theory and Applications, volume 4, Valletta, 2020, pp.
111-119. doi:10.5220/0009173601110119.
[31] R. E. Rivadeneira et al., Thermal Image Super-Resolution Challenge Results-PBVS 2024, in:
Proceedings of 2024 IEEE/CVF Conference on Computer Vision and Pattern Recognition
Workshops (CVPRW), Seattle, 2024, pp. 3113-3122, doi:10.1109/CVPRW63382.2024.00317.
[32] Socarr Was, Y., Ramos, S., V Wazquez, D., L Wopez, A.M., Gevers, T.: Adapting pedestrian detection
from synthetic to far infrared images. In: ICCV Workshops, vol. 3 (2013).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>R.</given-names>
            <surname>Ishimwe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Abutaleb</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Ahmed</surname>
          </string-name>
          , Applications of Thermal Imaging in Agriculture - A
          <string-name>
            <surname>Review</surname>
          </string-name>
          ,
          <source>Advances in Remote Sensing</source>
          (
          <year>2014</year>
          ), volume
          <volume>3</volume>
          ,
          <year>2014</year>
          , pp.
          <fpage>128</fpage>
          -
          <lpage>140</lpage>
          . doi:
          <volume>10</volume>
          .4236/ars.
          <year>2014</year>
          .
          <volume>33011</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <surname>Q. Zhang.</surname>
          </string-name>
          ,
          <string-name>
            <surname>L. Zhou.</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>An</surname>
          </string-name>
          ,
          <article-title>Real-Time Recognition Algorithm of Small Target for UAV Infrared Detection</article-title>
          ,
          <string-name>
            <surname>Sensors</surname>
          </string-name>
          (
          <year>2024</year>
          ), volume
          <volume>10</volume>
          ,
          <year>2024</year>
          , doi:10.3390/s24103075.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>M. B.</given-names>
            <surname>Rakhunde</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gotarkar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. G.</given-names>
            <surname>Choudhari</surname>
          </string-name>
          ,
          <article-title>Thermography as a Breast Cancer Screening Technique: A Review Article</article-title>
          ,
          <string-name>
            <surname>Cureus</surname>
          </string-name>
          (
          <year>2024</year>
          ), volume
          <volume>14</volume>
          ,
          <year>2024</year>
          , doi:10.7759/cureus.31251.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>C.</given-names>
            <surname>Dong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. C.</given-names>
            <surname>Loy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Tang</surname>
          </string-name>
          ,
          <article-title>Image Super-Resolution Using Deep Convolutional Networks in:</article-title>
          <source>Proceedings of ECCV</source>
          <year>2014</year>
          , Zurich,
          <year>2014</year>
          , pp.
          <fpage>184</fpage>
          -
          <lpage>199</lpage>
          , doi:10.1007/978-3-
          <fpage>319</fpage>
          -10593-2_
          <fpage>13</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>J.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K. M.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <article-title>Accurate Image Super-Resolution Using Very Deep Convolutional Networks</article-title>
          ,
          <source>in: Proceedings of 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)</source>
          ,
          <source>Las Vegas</source>
          ,
          <year>2016</year>
          , pp.
          <fpage>1646</fpage>
          -
          <lpage>1654</lpage>
          , doi:10.1109/CVPR.
          <year>2016</year>
          .
          <volume>182</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>K.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Ren. J. Sun</surname>
          </string-name>
          ,
          <article-title>Deep Residual Learning for Image Recognition</article-title>
          ,
          <source>in: Proceedings of 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)</source>
          ,
          <source>Las Vegas</source>
          ,
          <year>2016</year>
          , pp.
          <fpage>770</fpage>
          -
          <lpage>778</lpage>
          , doi:10.1109/CVPR.
          <year>2016</year>
          .
          <volume>90</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>C.</given-names>
            <surname>Ledig</surname>
          </string-name>
          et al.,
          <article-title>Photo-Realistic Single Image Super-Resolution Using a Generative Adversarial Network</article-title>
          ,
          <source>in: Proceedings of 2017 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)</source>
          , Honolulu, pp.
          <fpage>105</fpage>
          -
          <lpage>114</lpage>
          , doi:10.1109/CVPR.
          <year>2017</year>
          .
          <volume>19</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>B.</given-names>
            <surname>Lim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Son</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Nah. K. M. Lee</surname>
          </string-name>
          ,
          <article-title>Enhanced Deep Residual Networks for Single Image Super-Resolution</article-title>
          ,
          <source>in: Proceedings of 2017 IEEE Conference on Computer Vision and Pattern Recognition Workshops (CVPRW)</source>
          ,
          <year>Honolulu</year>
          ,
          <year>2017</year>
          , pp.
          <fpage>1132</fpage>
          -
          <lpage>1140</lpage>
          , doi:10.1109/CVPRW.
          <year>2017</year>
          .
          <volume>151</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Zhong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Fu</surname>
          </string-name>
          ,
          <article-title>Image Super-Resolution Using Very Deep Residual Channel Attention Networks</article-title>
          ,
          <source>in: Proceedings of ECCV</source>
          <year>2018</year>
          , Munich,
          <year>2018</year>
          , pp
          <fpage>294</fpage>
          -
          <lpage>310</lpage>
          , doi:10.1007/978-3-
          <fpage>030</fpage>
          -01234-2_
          <fpage>18</fpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>