Borrar filtros
Borrar filtros

high pass filter implement on a image

9 visualizaciones (últimos 30 días)
muhammad
muhammad el 15 de En. de 2012
Comentada: Pekko Tuominen el 3 de Jul. de 2017
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 comentario
Pekko Tuominen
Pekko Tuominen el 3 de Jul. de 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?

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 15 de En. de 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.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by