Previous topic

medpy.metric.binary.precision

Next topic

medpy.metric.binary.sensitivity

This Page

medpy.metric.binary.recall

medpy.metric.binary.recall(result, reference)[source]

Recall.

Parameters:

result : array_like

Input data containing objects. Can be any type but will be converted into binary: background where 0, object everywhere else.

reference : array_like

Input data containing objects. Can be any type but will be converted into binary: background where 0, object everywhere else.

Returns:

recall : float

The recall between two binary datasets, here mostly binary objects in images, which is defined as the fraction of relevant instances that are retrieved. The recall is not symmetric.

See also

precision

Notes

Not symmetric. The inverse of the recall is precision. High recall means that an algorithm returned most of the relevant results.

References

[R15]http://en.wikipedia.org/wiki/Precision_and_recall
[R16]http://en.wikipedia.org/wiki/Confusion_matrix#Table_of_confusion