gpt4 book ai didi

opencv - 使用Opencv从相机获取部分图像

转载 作者:行者123 更新时间:2023-12-02 17:52:55 27 4
gpt4 key购买 nike

我想从相机中获取部分图像。我有这个代码。这段代码在相机上给了我矩形。我需要获取矩形包含图像。

 for(int i=0;i<(detectRect_face ? detectRect_face->total:0); i++ )
{
CvRect* r = (CvRect*)cvGetSeqElem(detectRect_face, i);
CvPoint pt1 = { r->x+20, r->y+20 };
CvPoint pt2 = { r->x + r->width-20, r->y + r->height-10 };
cvRectangle(frame, pt1, pt2, CV_RGB(255,0,0), 1,8, 0);

//I need to write here a method to get this rectangle include image.
}

最佳答案

您可以使用cvSetImageROI和cvCopy方法裁剪图像。

IplImage *dst = // Prepare partition size image.
cvSetImageROI(frame, r);
cvCopy(frame, dst);
cvResetImageROI(frame);

关于opencv - 使用Opencv从相机获取部分图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15879395/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com