我有以下示例代码,我正在显示我的网络摄像头。
但是如何在以下文件夹中显示一系列图片:
0.jpg
1.jpg
2.jpg
... and so on
使用imread
?
我想将该文件夹用作输入而不是我的网络摄像头。
#include <iostream>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
int main()
{
cv::VideoCapture capture(0);
cv::Mat myImage;
while(1)
{
capture>> myImage;
cv::imshow( "HEYO", myImage);
int c = cv::waitKey(1);
}
return 0;
}