2011-09-06 23:30:28 +08:00
|
|
|
#include "perf_precomp.hpp"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace cv;
|
|
|
|
using namespace perf;
|
2011-12-30 00:46:16 +08:00
|
|
|
using std::tr1::make_tuple;
|
|
|
|
using std::tr1::get;
|
2011-09-06 23:30:28 +08:00
|
|
|
|
2012-10-17 07:18:30 +08:00
|
|
|
#define TYPICAL_MAT_SIZES_ABS TYPICAL_MAT_SIZES
|
2011-09-06 23:30:28 +08:00
|
|
|
#define TYPICAL_MAT_TYPES_ABS CV_8SC1, CV_8SC4, CV_32SC1, CV_32FC1
|
|
|
|
#define TYPICAL_MATS_ABS testing::Combine( testing::Values( TYPICAL_MAT_SIZES_ABS), testing::Values( TYPICAL_MAT_TYPES_ABS) )
|
|
|
|
|
2012-10-17 07:18:30 +08:00
|
|
|
PERF_TEST_P(Size_MatType, abs, TYPICAL_MATS_ABS)
|
2011-09-06 23:30:28 +08:00
|
|
|
{
|
2011-12-30 00:46:16 +08:00
|
|
|
Size sz = get<0>(GetParam());
|
|
|
|
int type = get<1>(GetParam());
|
2011-09-06 23:30:28 +08:00
|
|
|
|
|
|
|
cv::Mat a = Mat(sz, type);
|
|
|
|
cv::Mat c = Mat(sz, type);
|
|
|
|
|
2011-12-30 00:46:16 +08:00
|
|
|
declare.in(a, WARMUP_RNG).out(c);
|
2011-09-06 23:30:28 +08:00
|
|
|
|
2011-12-30 00:46:16 +08:00
|
|
|
TEST_CYCLE() c = cv::abs(a);
|
2011-09-06 23:30:28 +08:00
|
|
|
|
|
|
|
SANITY_CHECK(c);
|
|
|
|
}
|