Eliminate noise in the form of vertical lines in the image

28 views (last 30 days)
how i can eliminate noise in the form of vertical lines in this image ? what is the best filter for it and which parameter in perfect for this filter? please help
  3 Comments
Image Analyst
Image Analyst on 2 May 2021
@Jonas, @DGM Looks good to me - median was what I would have suggested. Can you move your comments down to the official Answer section, where you can get credit for them, instead of up here where it's to be used for asking for clarification of the question?

Sign in to comment.

Accepted Answer

DGM
DGM on 2 May 2021
A median filter might work
inpict = im2double(rgb2gray(imread('linenoise.jpg')));
outpict = medfilt2(inpict,[1 5]);
outpict = imadjust(outpict,[0.15 0.85]);

More Answers (0)

Community Treasure Hunt

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

Start Hunting!