Confusion matrix to validate image segmentation
4 views (last 30 days)
Show older comments
Ishara Nipuni
on 23 Dec 2018
Edited: Ishara Nipuni
on 9 Jan 2019
I have a segmented image of an xray image. I need to make a confusion matrix to validate that segmentation. Can anyone tell me please how can I apply a confusion matrix to validate image segmentation?
The origial image and te segmented image are shown below.
The first one is the original image and the second one is the segmented image.
3 Comments
Image Analyst
on 23 Dec 2018
Plus (you probably already know this) you can't make a confusion matrix on just one image. You'd need at least two and preferably hundreds or thousands.
Accepted Answer
Image Analyst
on 23 Dec 2018
If you have the Statistics and Machine Learning Toolbox, you can use confusionmat() and confusionchart(). Of course you still have to do a bunch of experiments to determine true positive, true negatives, false positives, and false negatives. I assume you know how to do that. It's basically a list of whether you got the diagnosis right or wrong. You have to decide how to determine if the segmentation is right or wrong, like use the Sorensen-Dice metric to see how much of your segmentation overlaps a hand drawn segmentation by the radiologist.
5 Comments
Image Analyst
on 27 Dec 2018
What parameters do you have available for you to vary? The threshold and minimum blob size for example? So you pick one set of parameters and determine if the image is a true positive, true negative, false positive, or false negative. Do it on a bunch of images and determine the counts for those, so the sum of those 4 results will sum to 200 if you had 200 images. Then you vary the parameters and try again. Each time you vary the parameters, you will get a point on the ROC cuve and two values you can add to your confusion matrix.
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!