程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> c++-請問C++:void detectAndDisplay( Mat frame );

c++-請問C++:void detectAndDisplay( Mat frame );

編輯:編程解疑
請問C++:void detectAndDisplay( Mat frame );

人臉識別的一段代碼,請問這個語句怎麼看

#include "opencv2/core/core.hpp"
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"

#include
#include

using namespace std;
using namespace cv;

string face_cascade_name = "haarcascade_frontalface_alt.xml";
CascadeClassifier face_cascade;
string window_name = "人臉識別";

void detectAndDisplay( Mat frame );

最佳回答:


將光標定位在detectAndDisplay,然後右鍵,轉到定義(goto declareation)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved