gpt4 book ai didi

visual-studio-2010 - 在Visual C++中比较图像和视频

转载 作者:行者123 更新时间:2023-12-02 17:53:04 25 4
gpt4 key购买 nike

我正在尝试将视频与视频(.avi格式)中已经存在的图像(.jpg格式)进行比较。我正在尝试在Visual C++中完成此任务。当比较两个静态图像时,它给出正确的结果,但是当将一个图像与视频进行比较时,在视频中未检测到该图像。我正在使用以下代码来完成上述任务:

// project1.1.cpp : Defines the entry point for the console application.

#include "stdafx.h"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/legacy/legacy.hpp"
#include <stdio.h>
#include <iostream>

IplImage* image[2] = { 0, 0 }, *image0 = 0, *image1 = 0;
CvSize size;

int w0, h0,i;
int threshold1, threshold2;
int l,level = 4;
int sthreshold1, sthreshold2;
int l_comp;
int block_size = 1000;
float parameter;
double threshold;
double rezult, min_rezult;
int filter = CV_GAUSSIAN_5x5;
CvConnectedComp *cur_comp, min_comp;
CvSeq *comp;
CvMemStorage *storage;

CvPoint pt1, pt2;

static void ON_SEGMENT(int a)
{
(void)a;
cvPyrSegmentation(image0, image1, storage, &comp,
level, threshold1+1, threshold2+1);

cvShowImage("Segmentation", image1);
}

using namespace std;
int main( int argc, char** argv )
{
char* filename;

CvCapture *capture = cvCaptureFromAVI("fractogene.avi");

if(!capture)
{
printf("!!! cvCaptureFromAVI failed (file not found?)\n");
while(1);
return -1;
}

int fps = (int) cvGetCaptureProperty(capture, CV_CAP_PROP_FPS);

cvNamedWindow("display_video", CV_WINDOW_AUTOSIZE);

IplImage* frame = NULL;
IplImage* frame1 = NULL;
char key = 0;

filename = argc == 2 ? argv[1] : (char*)"loadedimage.bmp";

if( (image[0] = cvLoadImage( filename, 1)) == 0 )
{
printf("Cannot load fileimage - %s\n", filename);
return -1;
}

frame1=image[0];

cvNamedWindow("Source", 0);
cvShowImage("Source", frame1);

while (key != 'q')
{
frame = cvQueryFrame(capture);

if (frame==frame1)
printf("frames matched\n");
else
printf("frames not matched\n");

if (!frame)
{
printf("!!! cvQueryFrame failed: no frame\n");
break;
}

cvShowImage("display_video", frame);

key = cvWaitKey(1000 / fps);
}

cvReleaseCapture(&capture);
cvWaitKey(0);

return 0;
}

我的项目即将到期。请尽可能提供帮助。期待您的答复。

最佳答案

在您的代码中,当您编写if(frame == frame1)时,您是在比较指针,而不是图像内容。

比较两个图像的简单方法是一个像素一个像素地比较每个像素。但是此方法禁止对图像进行任何修改(例如重新压缩,亮度修改,色彩空间修改...)。

有几种方法可以匹配两个可用的图像,这些图像可以接受内容的细微修改(旋转,缩放,亮度修改...)。我邀请您使用Google“图像匹配OpenCV”并阅读一些研究实验室文章。

关于visual-studio-2010 - 在Visual C++中比较图像和视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15159204/

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