Eliminate noise in the form of vertical lines in the image
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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
Risposta accettata
DGM
il 2 Mag 2021
A median filter might work
inpict = im2double(rgb2gray(imread('linenoise.jpg')));
outpict = medfilt2(inpict,[1 5]);
outpict = imadjust(outpict,[0.15 0.85]);
0 Commenti
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!