2012-04-14 05:50:59 +08:00
|
|
|
#include "perf_precomp.hpp"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace cv;
|
|
|
|
using namespace perf;
|
|
|
|
using std::tr1::make_tuple;
|
|
|
|
using std::tr1::get;
|
|
|
|
|
2012-10-26 18:55:16 +08:00
|
|
|
#ifndef ANDROID
|
|
|
|
|
2012-10-10 23:40:19 +08:00
|
|
|
typedef perf::TestBaseWithParam<String> VideoCapture_Reading;
|
2012-04-14 05:50:59 +08:00
|
|
|
|
2012-10-10 23:40:19 +08:00
|
|
|
PERF_TEST_P(VideoCapture_Reading, ReadFile, testing::Values( "highgui/video/big_buck_bunny.avi",
|
2012-04-14 05:50:59 +08:00
|
|
|
"highgui/video/big_buck_bunny.mov",
|
|
|
|
"highgui/video/big_buck_bunny.mp4",
|
|
|
|
"highgui/video/big_buck_bunny.mpg",
|
2012-10-10 23:40:19 +08:00
|
|
|
"highgui/video/big_buck_bunny.wmv" ) )
|
2012-04-14 05:50:59 +08:00
|
|
|
{
|
2012-10-10 23:40:19 +08:00
|
|
|
string filename = getDataPath(GetParam());
|
2012-04-14 05:50:59 +08:00
|
|
|
|
|
|
|
VideoCapture cap;
|
|
|
|
|
|
|
|
TEST_CYCLE() cap.open(filename);
|
|
|
|
|
2012-10-09 23:39:03 +08:00
|
|
|
bool dummy = cap.isOpened();
|
|
|
|
SANITY_CHECK(dummy);
|
2012-04-14 05:50:59 +08:00
|
|
|
}
|
2012-10-26 18:55:16 +08:00
|
|
|
|
|
|
|
#endif //ANDROID
|