我想在窗口中设置感兴趣区域,从相机中捕获图像。怎么做? 我正在使用C#与OpenCVSharp和Visual C#。
类似的东西:
using (CvCapture cap = CvCapture.FromCamera(0)) // device type + camera index
using (CvWindow v = new CvWindow("Live Stream"))
while (CvWindow.WaitKey(10) < 0)
{
using (IplImage src = cap.QueryFrame())
v.Image = src;
// Then set ROI and send it to picturebox
pictureBox.Image = BitmapConverter.ToBitmap(ROI);
}
答案 0 :(得分:1)
我不了解C#,但是我在C ++(使用OpenCV 2)中如何做到这一点。希望翻译很容易。语句Mat roiRect = frame(Rect(200,200,100,100));
创建一个标题,与frame
共享数据,但仅限于感兴趣的区域。
using namespace cv;
int main(int argc, const char * argv[]) {
VideoCapture cap;
if(argc > 1)
cap.open(string(argv[1]));
else
cap.open(0);
Mat frame;
namedWindow("video", 1);
for(;;) {
cap >> frame;
if(!frame.data)
break;
//Create the region of interest
Mat roiRect = frame(Rect(200,200,100,100));
//Do something with the region of interest
roiRect *= 0.4;
imshow("video", frame);
if(waitKey(30) >= 0)
break;
}
return 0;
}
答案 1 :(得分:0)
我会在图片顶部创建一个矩形,this link可以提供帮助。
使用创建的矩形裁剪选定区域:
Rectangle cropArea new Rectangle(0, 0, 10, 10);
Bitmap bmpImage = new Bitmap(img);
Bitmap bmpCrop = bmpImage.Clone(cropArea, bmpImage.PixelFormat);