How to evaluate image segmentation results?
5 次查看(过去 30 天)
显示 更早的评论
I am doing with some fuzzy c means clustering based image segmentation extension work. Can please any one put the idea how to do performance analysis with some parameter with new segmentation approach.
0 个评论
采纳的回答
Image Analyst
2013-3-17
Have you tried tic and toc? Or the "Run and Time" tool on the "Home" tab?
4 个评论
Image Analyst
2013-3-17
PSNR is not appropriate for determining how well a segmentation did it's job, neither is SSIM or any of those other image comparison or image quality metrics. Only you can decide if your algorithm got the parts of the image that you think it should have. For example you can use roipoly() and poly2mask() to create binary images that have the "absolutely correct" segmentation. Then see how many pixels match in your algorithm's answer and your hand drawn answer. Alternatively you can use some other algorithm that you trust, rather than hand drawing regions, and see how your new algorithm compares to the trusted algorithm. But either way you have to get the "true" binary image for each test image if you want to see how your new algorithm compares to the "gold standard, true" segmentation.
更多回答(3 个)
Anand
2013-3-18
Two of the standard metrics used for image segmentation are dice overlap coefficient and jaccard index. These metrics measure the similarity between your segmentation and the expected segmentation output. This ofcourse means that you will need a "ground truth" segmentation result to compare against.
I found the following link that explains them nicely:
1 个评论
Image Analyst
2013-3-18
Yes, those were the kinds of things I was thinking of. Nice to see that someone has thought it out more thoroughly. Thanks for the link.
Sara Fadhil
2020-11-29
i need math-lab code or the syntax for dice similarity coefficient,variation of information,universal quality index,global consistency error,compare image boundary error,Davis bound,Jacquard index......any one can help for this
Sara Fadhil
2020-12-7
编辑:Image Analyst
2020-12-7
I need Jacquard index to evaulate image segmentation algorithm.
I need Jaccard similarity code to evaulate image segmentation algorithm.
3 个评论
Image Analyst
2020-12-8
Call them for free installation help if you can't launch your MATLAB release R2017 (or whatever version you have).
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 3-D Volumetric Image Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!