medpy.metric.histogram.cosine#
- medpy.metric.histogram.cosine(h1, h2)[source]#
Cosine simmilarity.
Compute the angle between the two histograms in vector space irrespective of their length. The cosine similarity between two histograms
and of size is defined as:Attributes:
not a metric, a similarity
Attributes for normalized histograms:
Attributes for not-normalized histograms:
Attributes for not-equal histograms:
not applicable
- Parameters:
- h1sequence
The first histogram.
- h2sequence
The second histogram, same bins as
h1
.
- Returns:
- cosinefloat
Cosine simmilarity.
Notes
The resulting similarity ranges from -1 meaning exactly opposite, to 1 meaning exactly the same, with 0 usually indicating independence, and in-between values indicating intermediate similarity or dissimilarity.