轉載:https://www.cnblogs.com/wangguchao/p/7244483.html
1.OpenCV包含的模塊
cv – 核心函數庫
cvaux – 輔助函數庫
cxcore – 數據結構與線性代數庫
highgui – GUI函數庫
ml – 機器學習函數庫
2.常用頭文件:
#include <cv.h>
#include <cvaux.h>
#include <highgui.h>
#include <ml.h>
#include <cxcore.h>
統計模型(Statistical Models)
一般貝葉斯分類器(Normal Bayes Classifier)
K-近鄰(K-NearestNeighbors)
支持向量機(Support Vector Machines)
決策樹(Decision Trees)
提升(Boosting)
梯度提高樹(Gradient Boosted Trees)
隨機樹(Random Trees)
超隨機樹(Extremely randomized trees)
期望最大化(Expectation Maximization)
神經網絡(Neural Networks)MLData