mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 22:00:25 +08:00
87b569d812
general: - all iterative tests have been replaced with parameterized tests - old-style try..catch tests have been modified to use EXPECT_/ASSERT_ gtest macros - added temporary files cleanup - modified MatComparator error message formatting imgcodecs: - test_grfmt.cpp split to test_jpg.cpp, test_png.cpp, test_tiff.cpp, etc. videoio: - added public HAVE_VIDEO_INPUT, HAVE_VIDEO_OUTPUT definitions to cvconfig.h - built-in MotionJPEG codec could not be tested on some platforms (read_write test was disabled if ffmpeg is off, encoding/decoding was handled by ffmpeg otherwise). - image-related tests moved to imgcodecs (Videoio_Image) - several property get/set tests have been combined into one - added MotionJPEG test video to opencv_extra
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
#include "perf_precomp.hpp"
|
|
|
|
#ifdef HAVE_VIDEO_OUTPUT
|
|
|
|
using namespace std;
|
|
using namespace cv;
|
|
using namespace perf;
|
|
using std::tr1::make_tuple;
|
|
using std::tr1::get;
|
|
|
|
typedef std::tr1::tuple<std::string, bool> VideoWriter_Writing_t;
|
|
typedef perf::TestBaseWithParam<VideoWriter_Writing_t> VideoWriter_Writing;
|
|
|
|
const string image_files[] = {
|
|
"python/images/QCIF_00.bmp",
|
|
"python/images/QCIF_01.bmp",
|
|
"python/images/QCIF_02.bmp",
|
|
"python/images/QCIF_03.bmp",
|
|
"python/images/QCIF_04.bmp",
|
|
"python/images/QCIF_05.bmp"
|
|
};
|
|
|
|
PERF_TEST_P(VideoWriter_Writing, WriteFrame,
|
|
testing::Combine(
|
|
testing::ValuesIn(image_files),
|
|
testing::Bool()))
|
|
{
|
|
const string filename = getDataPath(get<0>(GetParam()));
|
|
const bool isColor = get<1>(GetParam());
|
|
Mat image = imread(filename, 1);
|
|
#if defined(HAVE_MSMF) && !defined(HAVE_VFW) && !defined(HAVE_FFMPEG) // VFW has greater priority
|
|
const string outfile = cv::tempfile(".wmv");
|
|
const int fourcc = VideoWriter::fourcc('W', 'M', 'V', '3');
|
|
#else
|
|
const string outfile = cv::tempfile(".avi");
|
|
const int fourcc = VideoWriter::fourcc('X', 'V', 'I', 'D');
|
|
#endif
|
|
|
|
VideoWriter writer(outfile, fourcc, 25, cv::Size(image.cols, image.rows), isColor);
|
|
TEST_CYCLE_N(100) { writer << image; }
|
|
SANITY_CHECK_NOTHING();
|
|
remove(outfile.c_str());
|
|
}
|
|
|
|
#endif // HAVE_VIDEO_OUTPUT
|