problem matlab excercise FIX table

1 view (last 30 days)
helloto everybody.i have a problem, please help me. You tell which of the following screens is a FIR filter and in case of what kind and what would be the effect on a digital image. thnaks to all

Accepted Answer

Image Analyst
Image Analyst on 9 Dec 2016
They are all FIR filters, but of various effects. The top one blurs the image. The middle one is a bit weird, but is probably a valley detection or curved line detection filter. The bottom one is clearly an edge detector.
Please accept the answer if it answers your question(s).
  3 Comments
prova 995
prova 995 on 9 Dec 2016
I accepted the answer on filters but I also need the main program (main) in addition to the function you gave me does not work otherwise. thank you very much. i don't understand this things
Image Analyst
Image Analyst on 9 Dec 2016
I don't know what main program you're talking about. If you want, you can call those filters by making up the 3x3 arrays and calling imfilter() or conv2().
kernel = [2,2,2;2,14,2;2,2,2]/30;
outputImage = imfilter(inputImage, kernel);

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!