2019-01-14 18:33:38 +08:00
|
|
|
// This file is part of OpenCV project.
|
|
|
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
|
|
|
// of this distribution and at http://opencv.org/license.html.
|
|
|
|
|
|
|
|
#include "test_precomp.hpp"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
namespace opencv_test { namespace {
|
|
|
|
|
|
|
|
const int FRAME_COUNT = 120;
|
|
|
|
|
|
|
|
inline void generateFrame(int i, Mat & frame)
|
|
|
|
{
|
|
|
|
::generateFrame(i, FRAME_COUNT, frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(videoio_dynamic, basic_write)
|
|
|
|
{
|
|
|
|
const Size FRAME_SIZE(640, 480);
|
|
|
|
const double FPS = 100;
|
|
|
|
const String filename = cv::tempfile(".avi");
|
2019-03-05 05:37:09 +08:00
|
|
|
const int fourcc = VideoWriter::fourcc('M', 'J', 'P', 'G');
|
2019-01-14 18:33:38 +08:00
|
|
|
|
|
|
|
bool fileExists = false;
|
|
|
|
{
|
|
|
|
vector<VideoCaptureAPIs> backends = videoio_registry::getWriterBackends();
|
|
|
|
for (VideoCaptureAPIs be : backends)
|
|
|
|
{
|
|
|
|
VideoWriter writer;
|
|
|
|
writer.open(filename, be, fourcc, FPS, FRAME_SIZE, true);
|
|
|
|
if (writer.isOpened())
|
|
|
|
{
|
|
|
|
Mat frame(FRAME_SIZE, CV_8UC3);
|
|
|
|
for (int j = 0; j < FRAME_COUNT; ++j)
|
|
|
|
{
|
|
|
|
generateFrame(j, frame);
|
|
|
|
writer << frame;
|
|
|
|
}
|
|
|
|
writer.release();
|
|
|
|
fileExists = true;
|
|
|
|
}
|
|
|
|
EXPECT_FALSE(writer.isOpened());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!fileExists)
|
|
|
|
{
|
|
|
|
cout << "None of backends has been able to write video file - SKIP reading part" << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
vector<VideoCaptureAPIs> backends = videoio_registry::getStreamBackends();
|
|
|
|
for (VideoCaptureAPIs be : backends)
|
|
|
|
{
|
|
|
|
VideoCapture cap;
|
|
|
|
cap.open(filename, be);
|
|
|
|
if(cap.isOpened())
|
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
Mat frame;
|
|
|
|
if (cap.grab())
|
|
|
|
{
|
|
|
|
if (cap.retrieve(frame))
|
|
|
|
{
|
|
|
|
++count;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
EXPECT_EQ(count, FRAME_COUNT);
|
|
|
|
cap.release();
|
|
|
|
}
|
|
|
|
EXPECT_FALSE(cap.isOpened());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
remove(filename.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}} // opencv_test::<anonymous>::
|