【发布时间】:2017-11-10 23:20:32
【问题描述】:
我有一个 OpenCV 程序,它可以尽可能快地同时从 2 个摄像头获取图像。为了让两个相机尽可能靠近拍摄图像,我使用了 grab() 和 retrieve() 函数。我现在得到的帧速率很慢(大约 6 fps)。我想增加这个fps。有谁知道如何提高fps?
我在想也许可以将每个相机放在不同的线程上或以某种方式利用多线程,但我担心它们不会以这种方式同时捕获图像。
void takeImages(VideoCapture& cap, VideoCapture& cap1, int imagecount){
if(!cap.isOpened()|| !cap1.isOpened()) { // check if we succeeded
cout << "Can not open cameras." << endl;
return;
}
Mat frame, frame2;
for(int x = 0;x < imagecount; x++)
{
// Capture image from both camera at the same time (important).
if( !cap.grab() || !cap1.grab() )
{
cout << "Can not grab images." << endl;
return;
}
if( cap.retrieve(frame,3) || cap1.retrieve(frame,3)){
//process images here..
} else {
cout << "Can not retrieve images." << endl;
return;
}
printf("x = %d\n", x);
}
waitKey(0);
}
int main(int, char**)
{
// trying to set higher program priority to increase fps here
cout << "Nice = " << nice(21) << endl;
VideoCapture cap(0); // open the default camera
VideoCapture cap1(1);
namedWindow("cam1",1);
namedWindow("cam2",1);
std::chrono::steady_clock::time_point begin = std::chrono::steady_clock::now();
//Get the time it takes to get 200 frames from BOTH cameras.
takeImages(cap,cap1, 200);
std::chrono::steady_clock::time_point end= std::chrono::steady_clock::now();
std::cout << "Time difference = " << std::chrono::duration_cast<std::chrono::seconds>(end - begin).count() <<std::endl;
return 0;
}
【问题讨论】: