Enum HistogramComparison
Specifies the available histogram comparison methods.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum HistogramComparison : int
Fields
Name | Description |
---|---|
Bhattacharyya | Specifies that the histograms should be compared using the Bhattacharyya distance. This method only works on normalized histograms. |
ChiSquare | Specifies that the histograms should be compared using a chi-squared statistic. |
Correlation | Specifies that the histograms should be compared using a correlation measure. |
Hellinger | Specifies that the histograms should be compared using the Bhattacharyya distance. This method only works on normalized histograms. |
Intersection | Specifies that the histograms should be compared using bin intersection. |