parent
e7502e7641
commit
f2b72928cc
1 changed files with 28 additions and 0 deletions
@ -0,0 +1,28 @@ |
||||
#include "perf_precomp.hpp" |
||||
|
||||
using namespace std; |
||||
using namespace cv; |
||||
using namespace perf; |
||||
|
||||
#define MAT_TYPES_DFT CV_32FC1, CV_64FC1 |
||||
#define MAT_SIZES_DFT sz1080p, sz2K |
||||
#define TEST_MATS_DFT testing::Combine( testing::Values(MAT_SIZES_DFT), testing::Values(MAT_TYPES_DFT) ) |
||||
|
||||
PERF_TEST_P(Size_MatType, dft, TEST_MATS_DFT) |
||||
{ |
||||
Size sz = std::tr1::get<0>(GetParam()); |
||||
int type = std::tr1::get<1>(GetParam()); |
||||
|
||||
Mat src(sz, type); |
||||
Mat dst(sz, type); |
||||
|
||||
declare.in(src, WARMUP_RNG); |
||||
declare.time(60); |
||||
|
||||
TEST_CYCLE(100)
|
||||
{
|
||||
dft(src, dst, 0.f); |
||||
} |
||||
|
||||
SANITY_CHECK(dst); |
||||
}
|
Loading…
Reference in new issue