在opencv中将矩阵转换为向量

时间:2013-08-08 05:20:18

标签: vector mat roi

我编写了一个用于创建描述视频中特征的矩阵的代码。我使用ROI裁剪图像中的特征并将其保存在矩阵中。整个程序在for循环中。现在如何绘制这些矩阵使用imshow ..

Mat patch;
for(unsigned int i=0;i<boundRect.size();i++)
{
Point centre=Point(boundRect[i].x+(boundRect[i].width)/2,boundRect[i].y+ (boundRect[i].height)/2);
circle(output,centre,5,CV_RGB(0,255,0),-1);
cv::Rect myROI(centre.x-40,centre.y+40,centre.x+40,centre.y-40);
patch=output(myROI);
}

0 个答案:

没有答案