|
Algorithm 1 Complete algorithm with TFADGAN and SR method |
|
Input: HR thermal image , Unpaired LR thermal image
|
|
Output: Degraded LR thermal image , Reconstructed HR thermal image
|
|
1: for i in range(N) do
|
|
2: Select unpaired HR thermal image and LR thermal image
|
|
3: Train TFADGAN to generate degraded LR thermal image corresponding to HR thermal image and compute total loss in Equation (13)
|
|
4: Update TFADGAN
|
|
5: end for
|
|
6: for i in range(M) do
|
|
7: Select the degraded LR thermal image and paired HR thermal image
|
|
8: Train SR network, generate reconstructed HR thermal image and compute reconstruction loss
|
|
9: Update SR network
|
|
10: end for
|