Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚找到了减去视频背景和图像序列的算法,就像下面链接中的算法:
OpenCV:如何使用 createBackgroundSubtractorMOG
但是我怎样才能对网络摄像头的图像做同样的事情呢?
您可以通过从网络摄像头而不是视频中捕获帧来做到这一点。因此,使用以下代码从您的网络摄像头获取帧:
using namespace cv; VideoCapture cap; cap.open(0); Mat frame; for(;;) { cap >> frame; // This frame will contain the current webcam frame } waitKey(0);
我希望现在您能够在这个“网络摄像头框架”上应用 BG 算法。