如何获取矩形内图像的内容
本文关键字:图像 何获取 获取 | 更新日期: 2023-09-27 18:31:49
我需要获取被矩形包围的图像的内容。我正在使用emguCV DetectMultiScale函数,该函数返回一个矩形数组,其中包含获取内容所需的检测到的图像的位置或区域。谢谢!
results = FindPeople.Find(frameImage, tryUseCuda, tryuseOpenCL, out processingTime, out peopleCount);
foreach (Rectangle rect in results)
{
CvInvoke.Rectangle(frameImage, rect, new Bgr(Color.Red).MCvScalar);
//Get content of the Rectangle here, frameImage = image
}
您需要
使用ROI。
CvInvoke.Rectangle(frameImage, rect, new Bgr(Color.Red).MCvScalar);
frameImage.ROI = rect; // Will cut your original image down to your rect