图像怎样存储在计算机内,c++ - 如何将捕获的图像存储在OpenCV中(将图片保存到计算机) - 堆栈内存溢出...

一般来说,我对OpenCV和c ++编程还是很陌生。 我正在执行一个项目,该项目存储了我的网络摄像头中的图像。 我能够显示相机图像并以某种方式检测到脸部,但是我不知道如何保存图像。

为了捕获网络摄像头检测到的面部并将其存储到计算机中,我该怎么办?

使用下面的代码,我如何将其编辑为:

侦测到脸部5秒钟后,从实时摄像头捕获图像

将图像保存为jpg格式的文件夹

非常感谢您提供的任何帮助!

我的代码:

#include

#include

#include

#include

#include

#include

using namespace cv;

using namespace std;

int main(int argc, char** argv)

{

// capture from web camera init

VideoCapture cap(0);

cap.open(0);

Mat img;

// Initialize the inbuilt Harr Cascade frontal face detection

// Below mention the path of where your haarcascade_frontalface_alt2.xml file is located

CascadeClassifier face_cascade;

face_cascade.load("C:/OpenCV/sources/data/haarcascades/haarcascade_frontalface_alt2.xml");

// i tried changing this line to match my folder in C Drive

for (;;)

{

// Image from camera to Mat

cap >> img;

// Just resize input image if you want

resize(img, img, Size(1000, 640));

// Container of faces

vector faces;

// Detect faces

face_cascade.detectMultiScale(img, faces, 1.1, 2, 0 | CV_HAAR_SCALE_IMAGE, Size(140, 140));

// error message appears here

//Show the results

// Draw circles on the detected faces

for (int i = 0; i < faces.size(); i++)

{

Point center(faces[i].x + faces[i].width*0.5, faces[i].y + faces[i].height*0.5);

ellipse(img, center, Size(faces[i].width*0.5, faces[i].height*0.5), 0, 0, 360, Scalar(255, 0, 255), 4, 8, 0);

}

// To draw rectangles around detected faces

/* for (unsigned i = 0; i

rectangle(img,faces[i], Scalar(255, 0, 0), 2, 1);*/

imshow("wooohooo", img);

int key2 = waitKey(20);

}

return 0;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值