Skip to main content
. 2021 Mar 28;21(7):2348. doi: 10.3390/s21072348
Algorithm 1 Algorithm of the proposed deep unsupervised fusion learning method.
Input: The observed LR-HS image X and HR-RGB image Y
Output: Latent HR-HS image Z
1: Sample zin0 from uniform distribution with seed 0
2: for i=0 to max. iter. (I) do
3:     Sample n(0,1)i from uniform distribution
4:     Perturb zin0 with n(0,1)i: zini=zin0+βn(0,1)i
5:     Z^=Gθ(zini,θi1)
6:     X^=fDB(Z^)
7:     Y^=fC(Z^)
8:     Loss function: αβ1||XX^||F2+(1α)β2||YY^||F2
9:     Compute the gradients regarding Gθ
10:     Update θ using the ADAM algorithm [47] as θi
11: end for
12: Z=Gθ(zin0)