【发布时间】:2015-05-19 21:46:10
【问题描述】:
我目前有一段显示视频的代码,我正在尝试对其进行扩展,以便显示当前帧和前一帧之间的差异,以便检测运动。我知道我将不得不使用absdiff() 函数来显示两个图像之间的对比度,但我不确定如何将前一帧存储为Mat。有人可以看看我下面的代码,并告诉我应该在哪里添加这个“上一帧”代码,以及我应该写什么。我想它不会花很长时间,我只是在网上找不到任何教程......
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.Size;
import org.opencv.highgui.VideoCapture;
import org.opencv.highgui.Highgui;
import org.opencv.imgproc.Imgproc;
// ********************************************************
public class CaptureVideo {
public static void main(String[] args) throws InterruptedException {
// load the Core OpenCV library by name
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
// create video capture device object
VideoCapture cap = new VideoCapture();
// try to use the hardware device if present
int CAM_TO_USE = 0;
// create a new image object
Mat matFrame = new Mat();
// try to open first capture device (0)
try {
cap.open(CAM_TO_USE);
} catch (Exception e1) {
System.out.println("No webcam attached");
// otherwise try opening a video file
try{
cap.open("files/video.mp4");
} catch (Exception e2) {
System.out.println("No video file found");
}
}
// if the a video capture source is now open
if (cap.isOpened())
{
// create a new window object
Imshow ims = new Imshow("From video source ... ");
boolean keepProcessing = true;
while (keepProcessing)
{
// grab the next frame from video source
cap.grab();
// decode and return the grabbed video frame
cap.retrieve(matFrame);
// if the frame is valid (not end of video for example)
if (!(matFrame.empty()))
{
// *** to any processing here***
// display image with a delay of 40ms (i.e. 1000 ms / 25 = 25 fps)
ims.showImage(matFrame);
Thread.sleep(40);
} else {
keepProcessing = false;
}
}
} else {
System.out.println("error cannot open any capture source - exiting");
}
// close down the camera correctly
cap.release();
}
}
我尝试在 else 语句之后添加以下代码,但所产生的只是黑屏(我认为这是因为 'previousFrame' 只是 'matFrame' 的副本):
previousFrame = matFrame;
Core.absdiff(matFrame, previousFrame, diffFrame);
ims.showImage(diffFrame);
谁能指出我哪里出错了?
【问题讨论】:
标签: java image opencv image-processing video-processing