opencv/modules/highgui/test/test_positioning.cpp

223 lines
7.6 KiB
C++
Raw Normal View History

/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "test_precomp.hpp"
#include "opencv2/highgui/highgui_c.h"
2012-02-11 23:28:03 +08:00
#include <stdio.h>
using namespace cv;
using namespace std;
class CV_VideoPositioningTest: public cvtest::BaseTest
{
public:
enum {PROGRESSIVE, RANDOM};
2012-10-17 07:18:30 +08:00
CV_VideoPositioningTest();
~CV_VideoPositioningTest();
virtual void run(int) = 0;
protected:
2012-10-17 07:18:30 +08:00
vector <int> idx;
void run_test(int method);
private:
2012-10-17 07:18:30 +08:00
void generate_idx_seq(CvCapture *cap, int method);
};
class CV_VideoProgressivePositioningTest: public CV_VideoPositioningTest
{
public:
2012-10-17 07:18:30 +08:00
CV_VideoProgressivePositioningTest() : CV_VideoPositioningTest() {};
~CV_VideoProgressivePositioningTest();
void run(int);
};
class CV_VideoRandomPositioningTest: public CV_VideoPositioningTest
{
public:
2012-10-17 07:18:30 +08:00
CV_VideoRandomPositioningTest(): CV_VideoPositioningTest() {};
~CV_VideoRandomPositioningTest();
void run(int);
};
CV_VideoPositioningTest::CV_VideoPositioningTest() {}
CV_VideoPositioningTest::~CV_VideoPositioningTest() {}
CV_VideoProgressivePositioningTest::~CV_VideoProgressivePositioningTest() {}
CV_VideoRandomPositioningTest::~CV_VideoRandomPositioningTest() {}
void CV_VideoPositioningTest::generate_idx_seq(CvCapture* cap, int method)
{
2012-10-17 07:18:30 +08:00
idx.clear();
int N = (int)cvGetCaptureProperty(cap, CAP_PROP_FRAME_COUNT);
2012-10-17 07:18:30 +08:00
switch(method)
{
case PROGRESSIVE:
{
int pos = 1, step = 20;
do
{
idx.push_back(pos);
pos += step;
}
while (pos <= N);
break;
}
case RANDOM:
{
RNG rng(N);
idx.clear();
for( int i = 0; i < N-1; i++ )
idx.push_back(rng.uniform(0, N));
2012-02-06 21:53:25 +08:00
idx.push_back(N-1);
2012-10-17 07:18:30 +08:00
std::swap(idx.at(rng.uniform(0, N-1)), idx.at(N-1));
break;
}
default:break;
}
}
void CV_VideoPositioningTest::run_test(int method)
{
2012-10-17 07:18:30 +08:00
const string& src_dir = ts->get_data_path();
ts->printf(cvtest::TS::LOG, "\n\nSource files directory: %s\n", (src_dir+"video/").c_str());
const string ext[] = {"avi", "mov", "mp4", "mpg"};
int n = (int)(sizeof(ext)/sizeof(ext[0]));
2012-02-06 21:53:25 +08:00
int failed_videos = 0;
2012-10-17 07:18:30 +08:00
for (int i = 0; i < n; ++i)
{
// skip random positioning test in plain mpegs
if( method == RANDOM && ext[i] == "mpg" )
continue;
string file_path = src_dir + "video/big_buck_bunny." + ext[i];
ts->printf(cvtest::TS::LOG, "\nReading video file in %s...\n", file_path.c_str());
2012-02-11 23:28:03 +08:00
2012-10-17 07:18:30 +08:00
CvCapture* cap = cvCreateFileCapture(file_path.c_str());
2012-10-17 07:18:30 +08:00
if (!cap)
{
ts->printf(cvtest::TS::LOG, "\nFile information (video %d): \n\nName: big_buck_bunny.%s\nFAILED\n\n", i+1, ext[i].c_str());
2012-02-06 21:53:25 +08:00
ts->printf(cvtest::TS::LOG, "Error: cannot read source video file.\n");
2012-10-17 07:18:30 +08:00
ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_TEST_DATA);
2012-02-06 21:53:25 +08:00
failed_videos++; continue;
2012-10-17 07:18:30 +08:00
}
cvSetCaptureProperty(cap, CAP_PROP_POS_FRAMES, 0);
2012-10-17 07:18:30 +08:00
generate_idx_seq(cap, method);
int N = (int)idx.size(), failed_frames = 0, failed_positions = 0, failed_iterations = 0;
2012-02-06 21:53:25 +08:00
for (int j = 0; j < N; ++j)
2012-10-17 07:18:30 +08:00
{
bool flag = false;
cvSetCaptureProperty(cap, CAP_PROP_POS_FRAMES, idx.at(j));
/* IplImage* frame = cvRetrieveFrame(cap);
2012-02-06 21:53:25 +08:00
if (!frame)
2012-10-17 07:18:30 +08:00
{
2012-02-06 21:53:25 +08:00
if (!failed_frames)
{
ts->printf(cvtest::TS::LOG, "\nFile information (video %d): \n\nName: big_buck_bunny.%s\n", i+1, ext[i].c_str());
}
failed_frames++;
ts->printf(cvtest::TS::LOG, "\nIteration: %d\n\nError: cannot read a frame with index %d.\n", j, idx.at(j));
ts->set_failed_test_info(cvtest::TS::FAIL_EXCEPTION);
flag = !flag;
} */
2012-02-06 21:53:25 +08:00
int val = (int)cvGetCaptureProperty(cap, CAP_PROP_POS_FRAMES);
2012-02-06 21:53:25 +08:00
if (idx.at(j) != val)
2012-10-17 07:18:30 +08:00
{
2012-02-06 21:53:25 +08:00
if (!(failed_frames||failed_positions))
{
ts->printf(cvtest::TS::LOG, "\nFile information (video %d): \n\nName: big_buck_bunny.%s\n", i+1, ext[i].c_str());
}
failed_positions++;
if (!failed_frames)
{
ts->printf(cvtest::TS::LOG, "\nIteration: %d\n", j);
}
ts->printf(cvtest::TS::LOG, "Required pos: %d\nReturned pos: %d\n", idx.at(j), val);
ts->printf(cvtest::TS::LOG, "Error: required and returned positions are not matched.\n");
2012-10-17 07:18:30 +08:00
ts->set_failed_test_info(cvtest::TS::FAIL_INVALID_OUTPUT);
flag = true;
2012-10-17 07:18:30 +08:00
}
if (flag)
{
failed_iterations++;
failed_videos++;
break;
}
2012-10-17 07:18:30 +08:00
}
2012-10-17 07:18:30 +08:00
cvReleaseCapture(&cap);
}
2012-02-06 21:53:25 +08:00
ts->printf(cvtest::TS::LOG, "\nSuccessfull experiments: %d (%d%%)\n", n-failed_videos, 100*(n-failed_videos)/n);
ts->printf(cvtest::TS::LOG, "Failed experiments: %d (%d%%)\n", failed_videos, 100*failed_videos/n);
}
2012-10-17 07:18:30 +08:00
void CV_VideoProgressivePositioningTest::run(int)
{
2012-10-17 07:18:30 +08:00
run_test(PROGRESSIVE);
}
void CV_VideoRandomPositioningTest::run(int)
{
2012-10-17 07:18:30 +08:00
run_test(RANDOM);
}
#if BUILD_WITH_VIDEO_INPUT_SUPPORT && defined HAVE_FFMPEG
TEST (Highgui_Video, seek_progressive) { CV_VideoProgressivePositioningTest test; test.safe_run(); }
TEST (Highgui_Video, seek_random) { CV_VideoRandomPositioningTest test; test.safe_run(); }
#endif