Commit 58101835 authored by Alexey Spizhevoy's avatar Alexey Spizhevoy

refactoring of gpu perf. tests

parent b9ed1489
...@@ -4,20 +4,9 @@ ...@@ -4,20 +4,9 @@
using namespace std; using namespace std;
using namespace cv; using namespace cv;
void Test::gen(Mat& mat, int rows, int cols, int type, Scalar low, Scalar high)
{
mat.create(rows, cols, type);
RNG rng(0);
rng.fill(mat, RNG::UNIFORM, low, high);
}
void Test::gen(Mat& mat, int rows, int cols, int type) void Test::gen(Mat& mat, int rows, int cols, int type)
{ {
mat.create(rows, cols, type); mat.create(rows, cols, type);
Mat mat8u(rows, cols * mat.elemSize(), CV_8U, mat.data, mat.step); Mat mat8u(rows, cols * mat.elemSize(), CV_8U, mat.data, mat.step);
RNG rng(0); RNG rng(0);
...@@ -35,7 +24,6 @@ void TestSystem::run() ...@@ -35,7 +24,6 @@ void TestSystem::run()
vector<Test*>::iterator it = tests_.begin(); vector<Test*>::iterator it = tests_.begin();
for (; it != tests_.end(); ++it) for (; it != tests_.end(); ++it)
{ {
can_flush_ = false;
Test* test = *it; Test* test = *it;
cout << endl << test->name() << ":\n"; cout << endl << test->name() << ":\n";
...@@ -82,6 +70,7 @@ void TestSystem::flush() ...@@ -82,6 +70,7 @@ void TestSystem::flush()
description_.str(""); description_.str("");
cout << resetiosflags(ios_base::fixed | ios_base::left) << endl; cout << resetiosflags(ios_base::fixed | ios_base::left) << endl;
can_flush_ = false; can_flush_ = false;
} }
......
#ifndef OPENCV_GPU_SAMPLE_PERFORMANCE_H_
#define OPENCV_GPU_SAMPLE_PERFORMANCE_H_
#include <iostream> #include <iostream>
#include <cstdio> #include <cstdio>
#include <vector> #include <vector>
...@@ -7,13 +10,10 @@ ...@@ -7,13 +10,10 @@
class Test class Test
{ {
public: public:
Test(const std::string& name): name_(name) {} explicit Test(const std::string& name): name_(name) {}
const std::string& name() const { return name_; } const std::string& name() const { return name_; }
void gen(cv::Mat& mat, int rows, int cols, int type,
cv::Scalar low, cv::Scalar high);
void gen(cv::Mat& mat, int rows, int cols, int type); void gen(cv::Mat& mat, int rows, int cols, int type);
virtual void run() = 0; virtual void run() = 0;
...@@ -96,4 +96,6 @@ private: ...@@ -96,4 +96,6 @@ private:
#define CPU_OFF TestSystem::instance()->cpuOff() #define CPU_OFF TestSystem::instance()->cpuOff()
#define GPU_OFF TestSystem::instance()->gpuOff() #define GPU_OFF TestSystem::instance()->gpuOff()
#define SUBTEST TestSystem::instance()->subtest() #define SUBTEST TestSystem::instance()->subtest()
#define DESCRIPTION TestSystem::instance()->subtest() #define DESCRIPTION TestSystem::instance()->subtest()
\ No newline at end of file
#endif // OPENCV_GPU_SAMPLE_PERFORMANCE_H_
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment