我之前编写了 USB 网络摄像头,其唯一目的是从摄像头获取实时帧并显示在窗口中。为此,我使用了 cvCaptureFromCAM,它适用于 USB 相机(参见下面的代码)。
我想知道如何从千兆以太网摄像机捕获帧?我想我需要使用一些 API 从一些默认 IP 地址捕获帧。有人能指出我正确的方向吗?
我将在 Intel i3 处理器上的 Windows 7 上使用 C++ 和 OpenCV。
#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;
}
更新
所以现在我可以在供应商提供的软件 GUI 中显示实时图像。但我仍然想使用摄像机的 IP 地址显示图像(可能还有视频)。
知道摄像头的IP地址后,为什么无法访问摄像头发送的数据(图像)并在浏览器上显示?我尝试在浏览器(192.169.2.4)上输入摄像机的 IP 地址(即 192.169.2.3),但显示“找不到页面”。这是什么意思?