• 大小: 11KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: C/C++
  • 标签: OpenCV  手势识别  

资源简介

OpenCV手势识别-手掌特征提取,C++代码

资源截图

代码片段和文件信息

#include “stdafx.h“
#include 
#include 
// TODO: reference additional headers your program requires here
#include 
#include    // for strings
#include   // for controlling float print precision
#include   // string to number conversion
#include 
#include  
#include 
#include 
#include 

#include “opencv2/core/core.hpp“
#include “opencv2/imgproc/imgproc.hpp“
#include “opencv2/highgui/highgui.hpp“
#include “opencv2/objdetect/objdetect.hpp“
#include “opencv2/video/video.hpp“


using namespace std;  
using namespace cv;

#define PI 3.14159265




std::clock_t clock_start; //start clock
double time_consume; // time consume

cv::Mat raw_frame; //raw image
cv::Mat g

评论

共有 条评论