mirror of
https://github.com/opencv/opencv.git
synced 2025-01-01 22:24:06 +08:00
4cf9990d4e
Conflicts: doc/tutorials/definitions/noContent.rst doc/tutorials/gpu/gpu-basics-similarity/gpu-basics-similarity.rst doc/tutorials/introduction/android_binary_package/dev_with_OCV_on_Android.rst doc/tutorials/introduction/how_to_write_a_tutorial/how_to_write_a_tutorial.rst modules/core/include/opencv2/core/core.hpp modules/core/include/opencv2/core/internal.hpp modules/core/include/opencv2/core/version.hpp modules/gpu/CMakeLists.txt modules/highgui/perf/perf_output.cpp modules/highgui/test/test_video_io.cpp modules/ocl/include/opencv2/ocl/ocl.hpp modules/ocl/perf/main.cpp modules/ocl/src/hog.cpp modules/ocl/src/initialization.cpp modules/ocl/src/moments.cpp modules/ocl/src/opencl/moments.cl modules/ocl/test/main.cpp modules/ocl/test/test_moments.cpp modules/python/test/test.py modules/ts/include/opencv2/ts/ts_perf.hpp modules/ts/src/precomp.hpp modules/ts/src/ts_perf.cpp
41 lines
1.5 KiB
C++
41 lines
1.5 KiB
C++
#include "perf_precomp.hpp"
|
|
|
|
#if BUILD_WITH_VIDEO_OUTPUT_SUPPORT
|
|
|
|
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;
|
|
|
|
PERF_TEST_P(VideoWriter_Writing, WriteFrame,
|
|
testing::Combine( testing::Values( "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" ),
|
|
testing::Bool()))
|
|
{
|
|
string filename = getDataPath(get<0>(GetParam()));
|
|
bool isColor = get<1>(GetParam());
|
|
Mat image = imread(filename, 1);
|
|
#if defined(HAVE_MSMF) && !defined(HAVE_VFW) && !defined(HAVE_FFMPEG) // VFW has greater priority
|
|
VideoWriter writer(cv::tempfile(".wmv"), VideoWriter::fourcc('W', 'M', 'V', '3'),
|
|
25, cv::Size(image.cols, image.rows), isColor);
|
|
#else
|
|
VideoWriter writer(cv::tempfile(".avi"), VideoWriter::fourcc('X', 'V', 'I', 'D'),
|
|
25, cv::Size(image.cols, image.rows), isColor);
|
|
#endif
|
|
|
|
TEST_CYCLE() { image = imread(filename, 1); writer << image; }
|
|
|
|
bool dummy = writer.isOpened();
|
|
SANITY_CHECK(dummy);
|
|
}
|
|
|
|
#endif // BUILD_WITH_VIDEO_OUTPUT_SUPPORT
|