enter image description here

What thresholding techique should i apply for the image in order to highlight the bright regions inside the image as well as the outer boundary..

The im2bw function does not give a good result

Help!!

Edit: Most of my images have the following histogram

enter image description here

Edit: Found a triangle threshold method that suits my work :)

enter image description here

link|improve this question

If your goal is to improve the contrast on the image, then you should use a tone curve mediachance.com/pseam/help/curves.html. – Simon Feb 9 at 16:56
feedback

2 Answers

up vote 4 down vote accepted

Your question isn't very easy to answer since you don't really define what a ideal solution should accomplish.

Have you tried im2bw(yourImage, 0.1); ? I.e using a threshold for what parts should be black and waht parts shouldn't. I got descent results with that (depending on what the purpose is of course). Try it and if it isn't good enough, tell us in what way you need to improve it and i will try to help with some more advanced techniques!

EDIT: Using threshold 0.1 and 0.01 respectively, perhaps something ~0.05 should be good?

Using threshold 0.1

Using threshold 0.01

link|improve this answer
Thanks @Niclas I got this result however this isn't the only image i am working on... i ll put a histogram that most of my images show .. – vini Feb 9 at 13:59
Choosing a threshold adaptively would be best in my case – vini Feb 9 at 14:06
@vini you have to define what are you trying to do. Maybe choosing the threshold adaptively is the solution. But without more details it is difficult to suggest a solution. How do you define "bright region"? – Simon Feb 9 at 14:10
2  
Perhaps you should look into the function graythresh(). Maybe it can help you to accomplish a adaptive threshold that suits your needs. Also look into using adapthisteq() before using graythresh to "normalize" your images first.. If this won't work either i think you need to provide som more detail.. – Niclas Feb 9 at 14:23
2  
Well ultimately if you want a binary segmentation you will have to use thresholding at some point. – Simon Feb 9 at 17:25
show 7 more comments
feedback

It sounds like what you want to do is ''image segmentation'' (see http://en.wikipedia.org/wiki/Segmentation_(image_processing) ).

Most methods are based on the Chan-Vese model which identifies the region of interest by solving an optimization problem involving a level set function. Since you're using matlab, this code: http://www.stanford.edu/~tagoldst/Tom_Goldstein/Split_Bregman.html should do a good job of finding the regions you are interested in.

link|improve this answer
The code you have provided is empty .. and yes i want to do image segmentation however have not been able to find an apt method for it .. most of my images are like the ones i have provided – vini Feb 24 at 2:25
The link is "segment.zip" stanford.edu/~tagoldst/Tom_Goldstein/Split_Bregman_files/… at the bottom of the page. – rcompton Feb 24 at 2:27
it has no files inside its empty – vini Feb 24 at 2:27
?? Inside the .zip there is a folder called "segment" which you extract. Inside that there are two files "sbseg.c" and "testSegment.m" – rcompton Feb 24 at 2:29
I dont know why its showing nothing for me i ll try later maybe will get some success – vini Feb 24 at 2:32
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.