how to integrate a automatic thresholding in my code?
3 次查看(过去 30 天)
显示 更早的评论
I have a code that can manually define thresholding value . I want to integrate a automatic thresholding in my code so that it can define thresholding value based on the image. Please help anyone ... this is my code ...Waiting for your replay......
0 个评论
回答(2 个)
Image Analyst
2014-6-13
The algorithm that woudl be best to use depends on your image. There is not one algorithm that works perfectly for all images, not even graythresh().
2 个评论
Image Analyst
2014-6-13
Asif's "Answer" moved here since it's not an answer to his original post:
Thanks for reply. But if i want to define automatic thresholding value based on every image . That will be better. Is there any way to do that?
Image Analyst
2014-6-13
Yes, there are lots of ways. I like triangle methods. For some images with bimodal histograms (objects on a uniform background) the Otsu method given by graythresh() works okay. You can also try multithresh() and imquantize().
Whether an automatic threshold is best depends on your images. If you have good control over your illumination conditions, it's quite possible that a fixed threshold will work while an algorithm that forces it to find some threshold will fail. For example if you have bright parts on a uniform background, Otsu might work find if there are one or more parts in the image. But if the image is 100% parts or 0% parts, then whatever threshold it finds will be wrong. In that case a fixed threshold is the way to go. Attach 3 of your images if you want advice.
Asif Hasan
2014-6-15
1 个评论
Image Analyst
2014-6-15
Maybe try a more robust algorithm like those listed here: http://www.visionbib.com/bibliography/contentspeople.html#Face%20Recognition,%20Detection,%20Tracking,%20Gesture%20Recognition,%20Fingerprints,%20Biometrics especially this section
21.2.6.5 Finding Facial Features, Eye Detection
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!