We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
imfilter
Now that we have several ways to apply a spatial space kernel to an image:
imfilter(img, kern)
ifft(fft(img) .* fft(kern))
For the convolution theorem, we have utils like fftshift/ifftshift. We also have freqkern and spacekern functions.
fftshift
ifftshift
freqkern
spacekern
Although these are "obvious" for people who already know them and use them in daily life, we need one or two demos to explain them.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Now that we have several ways to apply a spatial space kernel to an image:
imfilter(img, kern)
ifft(fft(img) .* fft(kern))
For the convolution theorem, we have utils like
fftshift
/ifftshift
. We also havefreqkern
andspacekern
functions.Although these are "obvious" for people who already know them and use them in daily life, we need one or two demos to explain them.
The text was updated successfully, but these errors were encountered: