Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Laplacian needs upsampling of Gaussian filtered output? #1

Open
Harimus opened this issue Mar 22, 2021 · 1 comment
Open

Laplacian needs upsampling of Gaussian filtered output? #1

Harimus opened this issue Mar 22, 2021 · 1 comment

Comments

@Harimus
Copy link

Harimus commented Mar 22, 2021

t_diff = current - t_gauss

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
CodeCogsEqn(2)

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 example
t_diff = current - t_gauss_up
@Harimus
Copy link
Author

Harimus commented Mar 22, 2021

Ref:
1*09CjXI9K1qqQ5-pVHfXWtg

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant