Preprocessing using median filter and imfilter command
3 views (last 30 days)
Show older comments
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?
0 Comments
Accepted Answer
Image Analyst
on 29 May 2013
I don't see the difference between the original image and the desired output image. What is the difference? Also, I don't understand why you're taking the vertical Sobel edge filter and then subtracting it from the original? What do you expect that to produce? Are you trying to suppress edges for some reason?
4 Comments
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!