How to apply highpass filter on image in Matlab??

129 views (last 30 days)
I need to apply highpass filter on image, Is there a function in Matlab to apply highpass filter on the image??

Accepted Answer

Prasanth Sikakollu
Prasanth Sikakollu on 9 Jun 2019
Try imfilter() function.
B = imfilter(A,h) filters the multidimensional array A with the multidimensional filter h and returns the result in B.
Refer to the following documentation link on imfilter function:
Hope this helps.
  5 Comments
DGM
DGM on 26 Jan 2022
The 'laplacian' and laplacian-of-gaussian ('log') filters are both high-pass filters. The laplacian of gaussian filter may help reduce the response to image noise.

Sign in to comment.

More Answers (0)

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!