opencv_tutorial_code学习——compareHist直方图比较

tutorial_code\Histograms_Matching\compareHist_Demo.cpp

结果数值的意义:https://www.cnblogs.com/tornadomeet/archive/2012/05/03/2480824.html

compareHist()的使用方法:http://blog.csdn.net/qq_23880193/article/details/49669199

直方图比较的类型:http://blog.csdn.net/siliang13/article/details/16805421

类型:

0——HISTCMP_CORREL  相关性   越接近1表示越像

1——HISTCMP_CHISQR   卡方  越接近0表示越像 

2——HISTCMP_INTERSECT  交集法  数值越大表示越像

3——HISTCMP_BHATTACHARYYA(HISTCMP_HELLINGER     = HISTCMP_BHATTACHARYYA) 常态分布比对的BHATTACHARYYA距离法 越接近0表示越像

4——HISTCMP_CHISQR_ALT

5——HISTCMP_KL_DIV

你可能感兴趣的:(opencv)