You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that the Laplacian on each layer is not conducting up-sampling. If I recall correctly, The equation of Laplacian image at layer i is
In the current implementation it looks like The second term in the equation is not expand(G_{i+1}) but rather, gaussian_smoothing(G_i). Should it not be:
t_gauss_down=downsample(t_gauss) #t_gauss_up=upsample(t_gauss_down) #Upsampling, could be nearest for examplet_diff=current-t_gauss_up
The text was updated successfully, but these errors were encountered:
laploss/laploss.py
Line 28 in 7a1025e
I noticed that the Laplacian on each layer is not conducting up-sampling. If I recall correctly, The equation of Laplacian image at layer i is
In the current implementation it looks like The second term in the equation is not
expand(G_{i+1})
but rather,gaussian_smoothing(G_i)
. Should it not be:The text was updated successfully, but these errors were encountered: