编辑人体行走运动检测链接解释了如何在Visual Studio 2010 C++上使用Opencv 2.3
检测人体运动。我下载了源代码motemp9.c
、文本文件walkImgs.txt
和output.txt
以及标题filter.h
,但不理解以下内容。
我很难执行这个程序。有人能帮我澄清这些问题吗?
-
在
motiontemp9.c
文件中,在main下,行中的文件不存在。或者这些文件walkImgs和输出?if((ReadFP=fopen("walk2.txt", "r")) == NULL) ErrorExit(ER_READ_OPEN); if((WriteFP=fopen("output2.txt", "w")) == NULL) ErrorExit(ER_WRITE_OPEN);
-
运行代码时出现以下错误
error C2660: 'cvGetSeqElem' : function does not take 3 arguments motemp9.cpp(186): error C2227: left of '->rect' must point to class/struct/union/generic type motemp9.cpp(189): error C2440: '=' : cannot convert from 'CvScalar' to 'int' 1> No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called motemp9.cpp(218): error C2664: 'cvCircle' : cannot convert parameter 4 from 'int' to 'CvScalar' 1> No constructor could take the source type, or constructor overload resolution was ambiguous motemp9.cpp(220): error C2664: 'cvLine' : cannot convert parameter 4 from 'int' to 'CvScalar' 1> No constructor could take the source type, or constructor overload resolution was ambiguous ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
请指导如何运行此代码。
你能重新表述你的第一个问题吗?因为我真的不明白。
if((ReadFP=fopen("walk2.txt", "r")) == NULL) ErrorExit(ER_READ_OPEN);
if((WriteFP=fopen("output2.txt", "w")) == NULL) ErrorExit(ER_WRITE_OPEN);
这两行只是在运行程序时检查文件是否存在。如果其中一个不存在,则返回ErrorExit
对于您的第二个问题,在本例中,
创建运动历史图像。这包括将图像转换为灰度,按顺序一次查找两帧之间的差异,从而创建运动分层历史的剪影图像。实施
因此,您需要将从自己的视频中提取的图像的路径放在walk2.txt中。
希望它能帮助