![]() |
|
|||||||||||
When researchers are designing and testing software they need to test their software against a 'golden standard'. The 'golden standard' is a standard which has proven to be accurate. For example, when testing the automated CTC they test it against known results of a CTC that a radiologist has studied. Correct with respect to (wrt) golden standard = True Positive (TP) (System found Polyp and it agreed with Radiologist) Missed wrt golden standard = False Negative (FN) (System didn't detect polyp but radiologist did) Found and does not agree with golden standard = False Positive (FP) (System detected polyp but no polyp found by radiologist.)
-> (# TP /# TP + # FN)
-> (1 - PTP)
-> # TN / ( # FP + # TN )
-> # correctly marked / Total # marked -> # TP / (# TP + # FP ) Probability is important to researchers when they are testing their software as they can calculate how accurate their system is.
|