Preprocessing using median filter and imfilter command
Ältere Kommentare anzeigen
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?
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Image Category Classification finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!