How do I calculate the precision, recall and F1score for an image database?

7 views (last 30 days)
I work on dermoscopy images, I used fcm clustering for segmentation and also I obtained another mask to overlay on the initial image and I need to see if the segmentation was good enough. Can you please provide some ideas? Thanks in advance

Answers (1)

KALYAN ACHARJYA
KALYAN ACHARJYA on 15 Jun 2019
Edited: KALYAN ACHARJYA on 17 May 2020
To calcuate the precision and recall you need ground truth images
Lets clear the issue
  1. You have dermoscopy images
  2. You applied some method to finding region of Interest>> as result segmneted image
  3. Now you have to compare resultant segmented image with respective Grond thruth image (or Manual verification by experts)
Precision=TP/(TP+FP); I assuemd that you know these terms
Recal=TP/(TP+FN)
F1 Score= Average of 1/(Precision & Recal)
Must read article here (Easy and Best Way)
Regrads

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!