Target objects
Show older comments
Hi,
I'm trying to segment images that have objects with different intensities and some of the objects have intensity close to the intensity of the background. Initially I targeted the background and region of objects. In the second phase used the function imextendedmin to target objects with the lower intensities. Now I need to segment the objects that have medium intensity, ie, objects that have the intensity of the objects targeted by imextendedmin and background. I've tried the functions and imregionalmin imhimin but got no results. Someone help me, please?
6 Comments
Jan
on 13 Dec 2011
What exactly is your question?
Marlene
on 13 Dec 2011
Marlene
on 13 Dec 2011
Image Analyst
on 14 Dec 2011
How can we help you? Have you provided us an image to look at? Any sample code? I don't see any so I don't know what I can do. I care about the image more than anything (such as your algorithm) since often the algorithm people think will work is totally way off base. What are you expecting from us, given that you're not providing us with anything very useful? Post your image on tinypic.com and post another image with the objects you want to measure outlined in red.
Marlene
on 14 Dec 2011
Marlene
on 15 Dec 2011
Answers (1)
Sean de Wolski
on 15 Dec 2011
%Something along the lines of:
[fx fy] = gradient(I);
GM = hypot(fx,fy);
M = shrinkWrap(GM,'objthresh',too_be_determined(see_help));
Categories
Find more on Morphological Operations 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!