how to apply median filter to a color image?
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Sivakumaran Chandrasekaran
il 30 Mar 2014
Risposto: Image Analyst
il 30 Mar 2014
I applied median filter to a color image.. herewith i have mentioned the code.. is it correct?
img=shadow_imadjust;
R = img(:,:,1);
G = img(:,:,2);
B = img(:,:,3);
medfilimg(:,:,1) = medfilt2®;
medfilimg(:,:,2) = medfilt2(G);
medfilimg(:,:,3) = medfilt2(B);
figure,imshow(medfilimg);
0 Commenti
Risposta accettata
Image Analyst
il 30 Mar 2014
Change this
medfilimg(:,:,1) = medfilt2®;
to
medfilimg(:,:,1) = medfilt2(R);
and it should be fine. See http://www.mathworks.com/matlabcentral/answers/13205-tutorial-how-to-format-your-question-with-markup
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!