mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
Remove second argument from VideoCapture_Reading perf test
This commit is contained in:
parent
d40083a926
commit
d6a8753124
@ -6,18 +6,15 @@ using namespace perf;
|
||||
using std::tr1::make_tuple;
|
||||
using std::tr1::get;
|
||||
|
||||
typedef std::tr1::tuple<String, bool> VideoCapture_Reading_t;
|
||||
typedef perf::TestBaseWithParam<VideoCapture_Reading_t> VideoCapture_Reading;
|
||||
typedef perf::TestBaseWithParam<String> VideoCapture_Reading;
|
||||
|
||||
PERF_TEST_P(VideoCapture_Reading, ReadFile,
|
||||
testing::Combine( testing::Values( "highgui/video/big_buck_bunny.avi",
|
||||
PERF_TEST_P(VideoCapture_Reading, ReadFile, testing::Values( "highgui/video/big_buck_bunny.avi",
|
||||
"highgui/video/big_buck_bunny.mov",
|
||||
"highgui/video/big_buck_bunny.mp4",
|
||||
"highgui/video/big_buck_bunny.mpg",
|
||||
"highgui/video/big_buck_bunny.wmv" ),
|
||||
testing::Values(true, true, true, true, true) ))
|
||||
"highgui/video/big_buck_bunny.wmv" ) )
|
||||
{
|
||||
string filename = getDataPath(get<0>(GetParam()));
|
||||
string filename = getDataPath(GetParam());
|
||||
|
||||
VideoCapture cap;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user