Last active
November 27, 2019 22:03
-
-
Save vmarkovtsev/e612ccaf045fa228966241dd5a98539f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The kernel size is 15 instead of 5 for greater detail. | |
dim = 15 | |
kernel = np.squeeze(create_lanczos_resize_kernel(dim).numpy()[:, :, 0, 0]) | |
plt.contourf(np.linspace(-dim, dim, dim * 2 + 1), np.linspace(-dim, dim, dim * 2 + 1), kernel) | |
plt.colorbar() | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment