Preprocessing using median filter and imfilter command
Mostra commenti meno recenti
hi,
I have following image http://www.flickr.com/photos/95383933@N08/8876902700/ I want to do some preprocessing I did like this
if true
f=imread('brp.jpg');f=f(:,:,1);
med=medfilt2(f,'symmetric');
ed=[-1 2 -1; 0 0 0;1 -2 1];
f=im2double(f);
ed=f-imfilter(f, ed,'replicate');
Pre=ed+f;
figure, imshow(Pre)
% code
end
after doing this I can get following types of Images
http://www.flickr.com/photos/95383933@N08/8876991668/in/photostream/ but what should I do to get this Image http://www.flickr.com/photos/95383933@N08/8876365169/in/photostream/ Where I am Wrong?
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Image Category Classification in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!