gpt4 book ai didi

c++ - 如何在 C++ 中从相机流式传输图像/数据

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:47:35 24 4
gpt4 key购买 nike

我有一个 USB 相机插入我的电脑(使用 Windows 7),我正在尝试创建一个程序来从相机流式传输图像。

我该怎么做呢?我有摄像头的 VID 和 PID,但对它一无所知。请帮忙。

谢谢

最佳答案

如果你会用OpenCV,有一个很好的例子here

 #include "cv.h" 
#include "highgui.h"
#include <stdio.h>
// A Simple Camera Capture Framework
int main() {
CvCapture* capture = cvCaptureFromCAM( CV_CAP_ANY );
if ( !capture ) {
fprintf( stderr, "ERROR: capture is NULL \n" );
getchar();
return -1;
}
// Create a window in which the captured images will be presented
cvNamedWindow( "mywindow", CV_WINDOW_AUTOSIZE );
// Show the image captured from the camera in the window and repeat
while ( 1 ) {
// Get one frame
IplImage* frame = cvQueryFrame( capture );
if ( !frame ) {
fprintf( stderr, "ERROR: frame is null...\n" );
getchar();
break;
}
cvShowImage( "mywindow", frame );
// Do not release the frame!
//If ESC key pressed, Key=0x10001B under OpenCV 0.9.7(linux version),
//remove higher bits using AND operator
if ( (cvWaitKey(10) & 255) == 27 ) break;
}
// Release the capture device housekeeping
cvReleaseCapture( &capture );
cvDestroyWindow( "mywindow" );
return 0;
}

关于c++ - 如何在 C++ 中从相机流式传输图像/数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10551423/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com