Clear Filters
Clear Filters

high pass filter implement on a image

9 views (last 30 days)
hello. i want to apply a high pass filter on a image. i m not understanding how apply a ideal high pass filter on image.please any one guide me.
  1 Comment
Pekko Tuominen
Pekko Tuominen on 3 Jul 2017
Do you mean ideal in the same sense as a rectangular frequency filter is ideal for 1D signals? Or ideal with respect to the end result in some visual sense?

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 15 Jan 2012
There may be no ideal filter. Here's one possibility:
kernel = [-1 -1 -1;-1 8 -1;-1 -1 -1];
filteredImage = imfilter(grayImage, kernel, 'same');
You could also do filtering in the Fourier domain if you want.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!