检测视频的某个区域内的运动

时间:2014-01-22 12:41:50

标签: opencv simplecv

我是一名生物学家,在我的实验工作中,我想开发一种可以检测载玻片上任何动作的软件。

我想修改以下代码,以便它可以检测围绕特定xy坐标而不是整个帧的所需半径圆内的运动。你能告诉我们需要做哪些改变吗?

from SimpleCV import *

from SimpleCV import VirtualCamera
#from time import *
vir = VirtualCamera("video.mpg", "video")
vir.getImage().show()
cam = Camera()
threshold = 0.2 # if mean exceeds this amount do something

while True:
        previous = vir.getImage() #grab a frame
        #time.sleep(0.5) #wait for half a second
        current = vir.getImage() #grab another frame
        diff = current - previous
        lines = diff.findLines(threshold=1, minlinelength=1)
        lines.draw(width=2)
        current.addDrawingLayer(diff.dl())  
        matrix = diff.getNumpy()
        mean = matrix.mean()
        current.show()

        if mean >= threshold:
                print "Motion Detected"
                print mean

1 个答案:

答案 0 :(得分:1)

在C ++中使用OpenCV:

//Subtract consecutive frames
cv::Mat matN=cv::imread("frame1.jpg");
cv::Mat matM=cv::imread("frame2.jpg");
cv::Mat matDiff=abs(matM-matN);

//Set region of interest (subframe)
int x(10),y(10),width(30),height(40);
cv::Rect myRegionOfInterest(x,y,width,height);

//Define motion
double Threshold=0.1;
double nze=cv::countNonZero( matDiff(myRegionOfInterest) );
double motionFactor=nze/(width*height*C); //C=255 for uchar, C=1 for binary, etc.
if (motionFactor>Threshold)
 std::cout<<"Motion detected at specific ROI";
相关问题