Next Article in Journal
Glacial Outburst Floods Responsible for Major Environmental Shift in Arctic Coastal Catchment, Rekvedbukta, Albert I Land, Svalbard
Previous Article in Journal
Estimation of the Key Water Quality Parameters in the Surface Water, Middle of Northeast China, Based on Gaussian Process Regression
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Correction

Correction: Czerkawski et al. Deep Internal Learning for Inpainting of Cloud-Affected Regions in Satellite Imagery. Remote Sens. 2022, 14, 1342

1
Department of Electronic and Electrical Engineering, University of Strathclyde, Glasgow G1 1XW, UK
2
Department of Chemical and Process Engineering, University of Strathclyde, Glasgow G1 1XJ, UK
*
Author to whom correspondence should be addressed.
Remote Sens. 2022, 14(24), 6324; https://doi.org/10.3390/rs14246324
Submission received: 5 July 2022 / Accepted: 14 September 2022 / Published: 14 December 2022
(This article belongs to the Section AI Remote Sensing)
Following the publication of the article [1], it was discovered that the computation of the inpainting Structural Similarity Index (SSIM) metric value was incorrect. However, the relationship between method performances remains unchanged upon correction and all of the conclusions made in the original manuscript still stand.
The issue was related to the following line, where masked SSIM is computed:
   i_ssim_val = ssim(s2_out[mask == mask.min()],
                                            s2_gt[mask == mask.min()],
                                            multichannel=True)
Indexing a 3-channel two-dimensional image of 256 by 256 pixels in the above manner returns a spatially flattened array with 3 channels. This does not raise any Python error messages, since the scikit-image function for SSIM computation [2] accepts both two-dimensional and one-dimensional signals. The spatially flattened array with 3 channels results in the use of a single-dimensional kernel by the function, which is inconsistent with the description of SSIM computation in [1], where a two-dimensional 11 × 11 kernel is defined. Instead, the correct procedure to compute inpainting SSIM should be:
   whole_ssim, ssim_img = ssim(s2_gt,
                                                                     s2_out,
                                                                     multichannel = True,
                                                                     full = True)
         i_ssim_val = ssim_img[mask == mask.min()].mean()
Based on this change, the following updates to the paper are:
  • Figure 2 caption delete duplicate explanation “(c) multi-source residual”
  • Figure 4 SSIM values
  • Figure 5 SSIM of inpainted Region (purple trace)
  • Figure 6 SSIM values
  • Table 2 Inpainting SSIM
  • The sentence in line 257 should read “The inpainting quality appears to be consistent for cloud coverage ratio between 0.1% to 16%, where the inpainted region SSIM is approximately 0.75 for the Scotland and India regions.”
  • Figure 9 and Figure 10 SSIM values (the outlier images are still the same)
  • Sentence in line 355 should read “The multi-temporal and multi-source (MS-MT) mode offers the highest performance of the three evaluated modes with an average SSIM greater than 0.87 and 0.64 for the whole image and inpainting regions, respectively.”
The authors apologize for any inconvenience caused and state that the scientific conclusions are unaffected. This correction was approved by the Academic Editor. The original publication has also been updated.

References

  1. Czerkawski, M.; Upadhyay, P.; Davison, C.; Werkmeister, A.; Cardona, J.; Atkinson, R.; Michie, C.; Andonovic, I.; Macdonald, M.; Tachtatzis, C. Deep Internal Learning for Inpainting of Cloud-Affected Regions in Satellite Imagery. Remote Sens. 2022, 14, 1342. [Google Scholar] [CrossRef]
  2. Module: Metrics. Available online: https://scikit-image.org/docs/dev/api/skimage.metrics.html#skimage.metrics.structural_similarity (accessed on 19 May 2022).
Figure 4. Comparison of DIP-based Synthesis Approaches. Median score samples from 4 repeated runs are shown. Metric values are given for the inpainting region.
Figure 4. Comparison of DIP-based Synthesis Approaches. Median score samples from 4 repeated runs are shown. Metric values are given for the inpainting region.
Remotesensing 14 06324 g004
Figure 5. SSIM and RMSE plots for the cloud coverage sweeps for MS-MT mode for (a) Scotland Region (b) India Region.
Figure 5. SSIM and RMSE plots for the cloud coverage sweeps for MS-MT mode for (a) Scotland Region (b) India Region.
Remotesensing 14 06324 g005
Figure 6. Samples of images reconstructed in the cloud coverage sweep procedure (ranging from 0.5% to 64.0% cloud cover) for MS-MT mode in Scotland (top row) and India (bottom row). The SSIM and RMSE metric values are shown for the inpainted region.
Figure 6. Samples of images reconstructed in the cloud coverage sweep procedure (ranging from 0.5% to 64.0% cloud cover) for MS-MT mode in Scotland (top row) and India (bottom row). The SSIM and RMSE metric values are shown for the inpainted region.
Remotesensing 14 06324 g006
Figure 9. Reconstructions with the lowest (top two rows) and highest (bottom two rows) performance for both SSIM and RMSE for the Scotland region. Each row contains all three stacked modes (MS, MT, and MS-MT).
Figure 9. Reconstructions with the lowest (top two rows) and highest (bottom two rows) performance for both SSIM and RMSE for the Scotland region. Each row contains all three stacked modes (MS, MT, and MS-MT).
Remotesensing 14 06324 g009
Figure 10. Reconstructions with the lowest (top two rows) and highest (bottom two rows) performance for both SSIM and RMSE for the India region. Each row contains all three stacked modes (MS, MT, and MS-MT).
Figure 10. Reconstructions with the lowest (top two rows) and highest (bottom two rows) performance for both SSIM and RMSE for the India region. Each row contains all three stacked modes (MS, MT, and MS-MT).
Remotesensing 14 06324 g010
Table 2. MS—Multi-Source (Sentinel 1), MT—Multi-Temporal, -R—Residual Variants. Optimal performance maximizes SSIM and minimizes RMSE. This occurs for the modes using temporal support data, with the MS-MT mode surpassing all other for both dataset and both for the inpainting region and the whole image.
Table 2. MS—Multi-Source (Sentinel 1), MT—Multi-Temporal, -R—Residual Variants. Optimal performance maximizes SSIM and minimizes RMSE. This occurs for the modes using temporal support data, with the MS-MT mode surpassing all other for both dataset and both for the inpainting region and the whole image.
Dataset Direct ModesStacked Modes
BasicMS-RMT-RMSMTMS-MT
ScotlandWholeSSIM ↑0.840.730.860.840.880.88
RMSE ↓0.090.130.080.080.070.07
InpaintingSSIM ↑0.580.330.660.580.730.73
RMSE ↓0.150.230.150.140.120.11
IndiaWholeSSIM ↑0.840.740.840.840.870.87
RMSE ↓0.070.120.080.070.060.05
InpaintingSSIM ↑0.530.320.570.530.640.66
RMSE ↓0.130.210.150.120.110.09
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Czerkawski, M.; Upadhyay, P.; Davison, C.; Werkmeister, A.; Cardona, J.; Atkinson, R.; Michie, C.; Andonovic, I.; Macdonald, M.; Tachtatzis, C. Correction: Czerkawski et al. Deep Internal Learning for Inpainting of Cloud-Affected Regions in Satellite Imagery. Remote Sens. 2022, 14, 1342. Remote Sens. 2022, 14, 6324. https://doi.org/10.3390/rs14246324

AMA Style

Czerkawski M, Upadhyay P, Davison C, Werkmeister A, Cardona J, Atkinson R, Michie C, Andonovic I, Macdonald M, Tachtatzis C. Correction: Czerkawski et al. Deep Internal Learning for Inpainting of Cloud-Affected Regions in Satellite Imagery. Remote Sens. 2022, 14, 1342. Remote Sensing. 2022; 14(24):6324. https://doi.org/10.3390/rs14246324

Chicago/Turabian Style

Czerkawski, Mikolaj, Priti Upadhyay, Christopher Davison, Astrid Werkmeister, Javier Cardona, Robert Atkinson, Craig Michie, Ivan Andonovic, Malcolm Macdonald, and Christos Tachtatzis. 2022. "Correction: Czerkawski et al. Deep Internal Learning for Inpainting of Cloud-Affected Regions in Satellite Imagery. Remote Sens. 2022, 14, 1342" Remote Sensing 14, no. 24: 6324. https://doi.org/10.3390/rs14246324

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