added minMaxLoc, cornerHarris, remap and dft performance tests

This commit is contained in:
Alexey Spizhevoy
2011-01-25 09:54:17 +00:00
parent 8644c6f86b
commit 72b0ec90b9
3 changed files with 96 additions and 11 deletions

View File

@@ -15,6 +15,7 @@ public:
const std::string& name() const { return name_; }
void gen(cv::Mat& mat, int rows, int cols, int type);
void gen(cv::Mat& mat, int rows, int cols, int type, double low, double high);
virtual void run() = 0;
@@ -83,7 +84,7 @@ private:
#define TEST(name) \
struct name##_test: public Test \
struct name##_test: Test \
{ \
name##_test(): Test(#name) { TestSystem::instance()->add(this); } \
void run(); \