我正在使用OpenCV从网络摄像头中获取实时流并在检测到面部后.我正在调整它们的大小,以便只显示我的脸.
但问题是我在C Windows窗体中做了所有这些,我希望它显示在PictureBox中,而不是在OpenCV imshow()窗口中显示.
我正在使用cv :: Mat,所以我在图片框中显示有很多问题.
我已经尝试将其转换为IplImage,但这也无效.
此外,我尝试了谷歌,但我无法找到一个有效的解决方案.我已经尝试了3天了.
face = getFace(frame); cv::imshow("window",face);
框架和面部是cv :: Mat
解决方法
这是一个C CLR函数,可以在任何Windows窗体控件上绘制OpenCV垫:
void DrawCVImage(System::Windows::Forms::Control^ control,cv::Mat& colorImage) { System::Drawing::Graphics^ graphics = control->CreateGraphics(); System::IntPtr ptr(colorImage.ptr()); System::Drawing::Bitmap^ b = gcnew System::Drawing::Bitmap(colorImage.cols,colorImage.rows,colorImage.step,System::Drawing::Imaging::PixelFormat::Format24bppRgb,ptr); System::Drawing::RectangleF rect(0,control->Width,control->Height); graphics->DrawImage(b,rect); delete graphics; }
此功能只能绘制8位3通道图像.
尝试尝试其他图像类型的位图像素格式.