How to separate image as like below in the given link?
Show older comments
hi FRIENDS,
thanks to all ..i have an image .by applying GAUSSIAN STANDARD SMOOTHING FILTER I HAVE TO GET THE RESULT LIKE
(GAUSSIAN SMOOTHING FILTER)
ORIGINAL IMAGE -----------------------------> SMOOTH PART +EDGES
sigma=5,
I=imread('lena256.jpg');
h=fspecial('gaussian',[10,10],sigma);
figure,surfc(h);
o=imfilter(I,h,'same','conv');
figure,imshow(o);
HOW TO SEPARATE IT ... HERE I HAVE CODE FOR GETTING SMOOTH PART.. HOW TO FOR EDGES PART OF IMAGE ...I HAVE LINK FOR THIS PLEASE GO THROUGH IT.. THEY HAVE GIVEN FOUR FIGURES ..BOTTOM ROW OF FIGURES I WANTED TO GET ...PLEASE ANY ONE HELP ME
2 Comments
Jan
on 24 Sep 2011
Using standard upper/lower case improves the readability.
krithika P
on 25 Sep 2011
Accepted Answer
More Answers (0)
Categories
Find more on Convert Image Type in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!