how to integrate a automatic thresholding in my code?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (2)
Image Analyst
el 13 de Jun. de 2014
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 comentarios
Image Analyst
el 13 de Jun. de 2014
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
el 13 de Jun. de 2014
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
el 15 de Jun. de 2014
1 comentario
Image Analyst
el 15 de Jun. de 2014
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
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!