Target objects

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 Kommentare

Jan
Jan am 13 Dez. 2011
What exactly is your question?
Marlene
Marlene am 13 Dez. 2011
Hi,
My question is if anyone knows how do I target objects with higher intensity.
Marlene
Marlene am 13 Dez. 2011
I detected the local minima (imextendedmin), now I need to detect the "average" local.
Image Analyst
Image Analyst am 14 Dez. 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
Marlene am 14 Dez. 2011
Sorry, I'm new here! Already posted my picture is in
http://s1178.photobucket.com/albums/x378/msmaxado/
The first image (img1) is the image has no background, only the objects region. In the second image (img2), the gray is the result of the first segmentation and the white the result of the second segmentation (using the imextendedmin). Now I need to segment the objects in the red circle(img3). How can I do?
Marlene
Marlene am 15 Dez. 2011
No one knows how to help me?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Sean de Wolski
Sean de Wolski am 15 Dez. 2011

0 Stimmen

I think I would use my shrinkWrap function from the fex on the gradient magnitude image.
%Something along the lines of:
[fx fy] = gradient(I);
GM = hypot(fx,fy);
M = shrinkWrap(GM,'objthresh',too_be_determined(see_help));

Gefragt:

am 13 Dez. 2011

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by