C++Opencv人脸识别案例

这里就不介绍详细的过程了,有兴趣的同学可以去B站看视频,有具体的教程。人脸识别案例

#include <iostream>
#include<opencv2\opencv.hpp>


using namespace std;
using namespace cv;


void face_detector_demo() {

	std::string root_dir = "D:/opencv4.6.0/opencv/sources/samples/dnn/face_detector/";
	dnn::Net net = dnn::readNetFromTensorflow(root_dir + "opencv_face_detector_uint8.pb", root_dir + "opencv_face_detector.pbtxt");
	//VideoCapture capture("test.mp4");
	VideoCapture capture(0);
	Mat frame;
	while (true) {
		capture.read(frame);
		flip(frame, frame, 1);  //镜像翻转
		if (frame.empty()) {
			break;
		}
		Mat blob = dnn::blobFromImage(frame, 1.0, Size(300, 300), Scalar(104, 177, 123), false, false);
		net.setInput(blob);				//NCHW
		Mat probs = net.forward();		// 
		Mat res(Size(probs.size[2], probs.size[3]), CV_32F, probs.ptr<float>());
		// 解析结果
		for (int i = 0; i < res.rows; i++) {
			float confidence = res.at<float>(i, 2);
			if (confidence > 0.5) {
				int x1 = static_cast<int>(res.at<float>(i, 3) * frame.cols);
				int y1 = static_cast<int>(res.at<float>(i, 4) * frame.rows);
				int x2 = static_cast<int>(res.at<float>(i, 5) * frame.cols);
				int y2 = static_cast<int>(res.at<float>(i, 6) * frame.rows);
				Rect box(x1, y1, x2 - x1, y2 - y1);
				rectangle(frame, box, Scalar(0, 255, 0), 2, 8, 0);
			}
		}
		Mat dst;
		imshow("人脸检测演示:", frame);
		int c = waitKey(10);
		if (c == 27) {
			break;
		}
	}
}


int main()
{
	face_detector_demo();
	system("pause");
}

  • 0
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值