比较网络摄像头帧时,cvNorm() 始终返回 0

发布于 2025-01-02 14:40:22 字数 1092 浏览 0 评论 0原文

我正在尝试编写一个程序,打印出从网络摄像头捕获的两帧(相距 30 帧)之间的范数,但 cvNorm 始终返回 0。我做错了什么?代码如下:

int main( int argc, char **argv )
{
CvCapture *capture = 0;
IplImage  *frame = 0;
int       key = 0;

/* initialize camera */ 
capture = cvCaptureFromCAM( 0 );

/* always check */
if ( !capture ) {
    fprintf( stderr, "Cannot open initialize webcam!\n" );
    return 1;
}


/* create a window for the video */
cvNamedWindow( "result", CV_WINDOW_AUTOSIZE );

IplImage *image;
IplImage pastImage;

for(int i = 0; key != 'q'; i++ ) {
    image = cvQueryFrame(capture);  

这是检查发生的地方:

if(!(i %30)){
        if(i){
            cout<<cvNorm(&pastImage,image)<<endl;
        }
        memcpy(&pastImage,image, sizeof(IplImage));
    }


    frame = image;              

    /* always check */
    if( !frame ) break;

    /* display current frame */ 
    cvShowImage( "result", frame );
    /* exit if user press 'q' */
    key = cvWaitKey( 1 );
}

/* free memory */
cvDestroyWindow( "result" );
cvReleaseCapture( &capture );

return 0;
}

I'm trying to write a program that prints out the norm between two frames (30 frames apart) captured from a webcam, but cvNorm always returns 0. What am I doing wrong? Code follows:

int main( int argc, char **argv )
{
CvCapture *capture = 0;
IplImage  *frame = 0;
int       key = 0;

/* initialize camera */ 
capture = cvCaptureFromCAM( 0 );

/* always check */
if ( !capture ) {
    fprintf( stderr, "Cannot open initialize webcam!\n" );
    return 1;
}


/* create a window for the video */
cvNamedWindow( "result", CV_WINDOW_AUTOSIZE );

IplImage *image;
IplImage pastImage;

for(int i = 0; key != 'q'; i++ ) {
    image = cvQueryFrame(capture);  

Here's where the checking occurs:

if(!(i %30)){
        if(i){
            cout<<cvNorm(&pastImage,image)<<endl;
        }
        memcpy(&pastImage,image, sizeof(IplImage));
    }


    frame = image;              

    /* always check */
    if( !frame ) break;

    /* display current frame */ 
    cvShowImage( "result", frame );
    /* exit if user press 'q' */
    key = cvWaitKey( 1 );
}

/* free memory */
cvDestroyWindow( "result" );
cvReleaseCapture( &capture );

return 0;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

踏雪无痕 2025-01-09 14:40:22

memcpy 图像对象不会复制图像。它复制图像元数据。元数据指向实际的图像像素。 OpenCV中应该有图像复制功能。就这么称呼吧

这是有关该主题的教程: http://nashruddin.com/ opencv-examples-for-operation-on-images.html/4

memcpy'ing the image object does not copy the image. It copies the image metadata. The metadata points to the actual image pixels. There should be an image copy function in OpenCV. Call that.

Here's a tutorial on the subject: http://nashruddin.com/opencv-examples-for-operation-on-images.html/4

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文