通常我们在opencv窗口中显示网络摄像头或视频动作:
CvCapture* capture = cvCreateCameraCapture(0);
cvNamedWindow( "title", CV_WINDOW_AUTOSIZE );
cvMoveWindow("title",x,y);
while(1)
{
frame = cvQueryFrame( capture );
if( !frame )
{
break;
}
cvShowImage( "title", frame );
char c = cvWaitKey(33);
if( c == 27 )
{
break;
}
}
我尝试使用成功以windows形式显示图像的pictureBox:
pictureBox1->Image = gcnew System::Drawing::Bitmap( image->width,image->height,image->widthStep,System::Drawing::Imaging::PixelFormat::Undefined, ( System::IntPtr ) image-> imageData);
但是当我试图从视频中显示捕获的图像时它不起作用,这是源:
CvCapture* capture = cvCreateCameraCapture(0);
while(1)
{
frame = cvQueryFrame( capture );
if( !frame )
{
break;
}
pictureBox1->Image = gcnew System::Drawing::Bitmap( frame->width,frame->height,frame->widthStep,System::Drawing::Imaging::PixelFormat::Undefined, ( System::IntPtr ) frame-> imageData);
char c = cvWaitKey(33);
if( c == 27 )
{
break;
}
}
无论如何都使用Windows窗体而不是opencv窗口来显示视频或网络摄像头?
或者我的代码有问题吗? 谢谢你的帮助...... :)
答案 0 :(得分:1)
建议:使用VideoInput而不是CvCapture(CvCapture是highgui库的一部分,不是用于生产用途,而是用于快速测试)。是的VideoInput主页看起来很奇怪,但是这个库非常值得。
以下是VideoInput用法的快速示例(从VideoInput.h文件中提取):
//create a videoInput object
videoInput VI;
//Prints out a list of available devices and returns num of devices found
int numDevices = VI.listDevices();
int device1 = 0; //this could be any deviceID that shows up in listDevices
int device2 = 1; //this could be any deviceID that shows up in listDevices
//if you want to capture at a different frame rate (default is 30)
//specify it here, you are not guaranteed to get this fps though.
//VI.setIdealFramerate(dev, 60);
//setup the first device - there are a number of options:
VI.setupDevice(device1); //setup the first device with the default settings
//VI.setupDevice(device1, VI_COMPOSITE); //or setup device with specific connection type
//VI.setupDevice(device1, 320, 240); //or setup device with specified video size
//VI.setupDevice(device1, 320, 240, VI_COMPOSITE); //or setup device with video size and connection type
//VI.setFormat(device1, VI_NTSC_M); //if your card doesn't remember what format it should be
//call this with the appropriate format listed above
//NOTE: must be called after setupDevice!
//optionally setup a second (or third, fourth ...) device - same options as above
VI.setupDevice(device2);
//As requested width and height can not always be accomodated
//make sure to check the size once the device is setup
int width = VI.getWidth(device1);
int height = VI.getHeight(device1);
int size = VI.getSize(device1);
unsigned char * yourBuffer1 = new unsigned char[size];
unsigned char * yourBuffer2 = new unsigned char[size];
//to get the data from the device first check if the data is new
if(VI.isFrameNew(device1)){
VI.getPixels(device1, yourBuffer1, false, false); //fills pixels as a BGR (for openCV) unsigned char array - no flipping
VI.getPixels(device1, yourBuffer2, true, true); //fills pixels as a RGB (for openGL) unsigned char array - flipping!
}
//same applies to device2 etc
//to get a settings dialog for the device
VI.showSettingsWindow(device1);
//Shut down devices properly
VI.stopDevice(device1);
VI.stopDevice(device2);
答案 1 :(得分:1)
当您从相机捕获图像时,应该知道像素格式,它很可能是24位BGR的格式。 System::Drawing::Imaging::PixelFormat::Format24bppRgb
将是最接近的格式,但您可能会得到奇怪的颜色显示。重新排列颜色组件将解决此问题。
实际上,这里有.net版本的opencv库: http://code.google.com/p/opencvdotnet/ 和这里: http://www.emgu.com/wiki/index.php/Main_Page
希望它有所帮助!
答案 2 :(得分:1)
我不知道你是否会喜欢这个,但你可以使用OpenGL在其他窗口中显示视频流,而不是opencv提供的视频流。 (捕捉框架并将其显示在矩形......或类似的东西上......)
答案 3 :(得分:0)
您可能想要考虑的另一个选项是使用emgu。这是一个带有winforms控件的opencv的.Net包装器。