
C 汇总
今天你那里吹风了吗
这个作者很懒,什么都没留下…
展开
-
openCV与C++的图像识别(六)——人脸识别
/*参考博客:https://blog.youkuaiyun.com/fu6543210/article/details/79671922*/#include <iostream>#include <string>#include <opencv2/core/core.hpp>#include <opencv2/highgui/h...原创 2019-10-25 15:00:32 · 1497 阅读 · 0 评论 -
openCV与C++的图像识别(五)——颜色直方图输出相似度
两张军装图 0.393316吴京截取图 0.956293两张敬礼图 0.519365军装和夜景 0.627251#include "StdAfx.h"#include <opencv2/core/core.hpp>#include <opencv2/highgui/highgui.hpp>#include <opencv2/imgproc/i...原创 2019-10-24 15:04:54 · 1784 阅读 · 2 评论 -
openCV与C++的图像识别(四)——纹理图输出
#include "StdAfx.h"#include <opencv2/opencv.hpp>#include <opencv/highgui.h>using namespace std;using namespace cv;int main(){ Mat src_img = imread("F:/www/person.jpg"); imshow("...原创 2019-10-24 14:52:12 · 1551 阅读 · 0 评论 -
openCV与C++的图像识别(三)——特征点匹配
#include "stdafx.h"#include "opencv2/core/core.hpp"#include "opencv2/features2d/features2d.hpp"#include "opencv2/highgui/highgui.hpp"#include "opencv2/nonfree/nonfree.hpp"#include "opencv2/legac...原创 2019-10-24 14:33:49 · 3949 阅读 · 0 评论 -
openCV与C++的图像识别(二)——pHash
/*参考博客:https://blog.youkuaiyun.com/akadiao/article/details/79779634配置环境参考:https://blog.youkuaiyun.com/qq_28584889/article/details/87914831*/#include <iostream>#include <bitset>#include <s...原创 2019-10-24 14:26:04 · 628 阅读 · 0 评论 -
openCV与C++的图像识别(一)——aHash
/*开发环境Microsoft Visual Studio 10.0 C++ + openCV 2.4.2 + cmake关于环境配置可以参考这篇博客 https://blog.youkuaiyun.com/qq_28584889/article/details/87914831*/#inclued "stdafx.h"#include <iostream>#in...原创 2019-10-24 14:14:34 · 5005 阅读 · 0 评论