使用opencv进行运动检测时出错
Posted
技术标签:
【中文标题】使用opencv进行运动检测时出错【英文标题】:Error in motion detection using opencv 【发布时间】:2016-04-26 17:32:08 【问题描述】:我是使用 opencv 进行运动检测的初学者。我已经运行了代码,需要对人体检测做出最终决定。问题是代码没有显示最终决定。谁能帮忙告诉我代码有什么问题?由于这个问题,我有什么解决办法吗?
int main()
Mat frame;
Mat resize_blur_Img;
Mat fgMaskMOG;
Mat fgMaskMOG2;
Mat fgMaskGMG;
Mat binaryImg;
Ptr<BackgroundSubtractor>pMOG;
pMOG = new BackgroundSubtractorMOG();
char filename[100] = "C:/Users/user/Desktop/Child Entrapment Prevention System/Motion Only/64.avi";
VideoCapture stream1(filename);
Mat element = getStructuringElement(MORPH_RECT, Size(7, 7), Point(3, 3));
int frame_count = 0;
int detected_motion_count=0;
while (true)
if (!(stream1/*cap*/.read(frame)))
break;
frame_count++;
resize(frame, resize_blur_Img, Size(frame.size().width, frame.size().height));
//BLUR
pMOG->operator()(resize_blur_Img, fgMaskMOG,-1);
//MORPHOLOGY
morphologyEx(fgMaskMOG, binaryImg, CV_MOP_CLOSE, element);
//shadow delete (BINARY)
threshold(binaryImg, binaryImg, 128, 255, CV_THRESH_BINARY); //(input array, output array, threshold value, max value to use threshold type, threshold type)
imshow("Origin", resize_blur_Img);
imshow("MOG", fgMaskMOG);
//PIXEL
int TotalNumberOfPixels = fgMaskMOG.rows*fgMaskMOG.cols;
cout << "The number of pixels that are 255 is " << countNonZero(fgMaskMOG) << endl;
if (countNonZero(fgMaskMOG) >= 1)
detected_motion_count++;
printf("Motion DETECTED !\n\n", countNonZero(fgMaskMOG));
else
printf("Motion NOT DETECTED!\n\n", countNonZero(fgMaskMOG));
printf("count of frames : %d \n", frame_count);
printf("count motion detected: %d \n", detected_motion_count);
printf("Motion Found %d percent of frames ! \n", (int)(100 * detected_motion_count / frame_count));
if ((float)(detected_motion_count / frame_count) ==0.45)
printf("\n\n------------------------FINAL DECISION------------------------------");
printf("HUMAN DETECTED \n\n");
getchar();
【问题讨论】:
你期望什么输出,你会得到什么? 提供 printf("count of frames : %d \n", frame_count); printf("检测到运动计数:%d \n", detected_motion_count); 我的预期输出是当检测到的运动占总帧的 45% 以上时,会显示“人类检测到”。 【参考方案1】:你应该修改这一行
if ((float)(detected_motion_count / frame_count) ==0.45)
看起来像这样:
if (((float)detected_motion_count / (float)frame_count) >=0.45)
由于detected_motion_count
和frame_count
是整数,否则使用整数除法,结果始终为0。(至少只要frame_count
大于detected_motion_count
)
如果比率高于某个阈值(不完全等于该阈值),通常您还希望输出检测结果。
【讨论】:
以上是关于使用opencv进行运动检测时出错的主要内容,如果未能解决你的问题,请参考以下文章
调试一种在 C++ 中使用 OpenCV 从视频中寻找运动平均帧以进行运动检测的方法