首页 > 代码库 > opencv 常用头文件介绍
opencv 常用头文件介绍
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
opencv 常用头文件介绍