2011-09-12 15:48:09 +08:00
|
|
|
#include "perf_precomp.hpp"
|
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
using namespace std;
|
|
|
|
using namespace testing;
|
|
|
|
|
|
|
|
namespace {
|
2011-12-28 20:53:08 +08:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
2012-05-23 20:58:01 +08:00
|
|
|
// StereoBM
|
2011-12-28 20:53:08 +08:00
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
typedef pair<string, string> pair_string;
|
|
|
|
DEF_PARAM_TEST_1(ImagePair, pair_string);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-30 20:23:18 +08:00
|
|
|
static pair_string make_string_pair(const string& a, const string& b)
|
|
|
|
{
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
return pair<string, string>(a, b);
|
|
|
|
#else
|
|
|
|
return make_pair<string, string>(a, b);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
PERF_TEST_P(ImagePair, Calib3D_StereoBM, Values(make_string_pair("gpu/perf/aloe.jpg", "gpu/perf/aloeR.jpg")))
|
2012-08-17 19:14:14 +08:00
|
|
|
{
|
|
|
|
declare.time(5.0);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Mat imgLeft = readImage(GetParam().first, cv::IMREAD_GRAYSCALE);
|
2012-08-17 19:14:14 +08:00
|
|
|
ASSERT_FALSE(imgLeft.empty());
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Mat imgRight = readImage(GetParam().second, cv::IMREAD_GRAYSCALE);
|
2012-08-17 19:14:14 +08:00
|
|
|
ASSERT_FALSE(imgRight.empty());
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const int preset = 0;
|
|
|
|
const int ndisp = 256;
|
2012-05-23 20:58:01 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
if (runOnGpu)
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
cv::gpu::StereoBM_GPU d_bm(preset, ndisp);
|
|
|
|
|
|
|
|
cv::gpu::GpuMat d_imgLeft(imgLeft);
|
|
|
|
cv::gpu::GpuMat d_imgRight(imgRight);
|
|
|
|
cv::gpu::GpuMat d_dst;
|
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
d_bm(d_imgLeft, d_imgRight, d_dst);
|
2012-08-17 21:34:58 +08:00
|
|
|
|
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
d_bm(d_imgLeft, d_imgRight, d_dst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cv::StereoBM bm(preset, ndisp);
|
|
|
|
|
|
|
|
cv::Mat dst;
|
|
|
|
|
|
|
|
bm(imgLeft, imgRight, dst);
|
|
|
|
|
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
bm(imgLeft, imgRight, dst);
|
|
|
|
}
|
2011-09-12 15:48:09 +08:00
|
|
|
}
|
2011-12-28 20:53:08 +08:00
|
|
|
}
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2011-12-28 20:53:08 +08:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2012-05-23 20:58:01 +08:00
|
|
|
// StereoBeliefPropagation
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-30 20:23:18 +08:00
|
|
|
PERF_TEST_P(ImagePair, Calib3D_StereoBeliefPropagation, Values(make_string_pair("gpu/stereobp/aloe-L.png", "gpu/stereobp/aloe-R.png")))
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-08-17 19:14:14 +08:00
|
|
|
declare.time(10.0);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Mat imgLeft = readImage(GetParam().first);
|
2012-08-17 19:14:14 +08:00
|
|
|
ASSERT_FALSE(imgLeft.empty());
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Mat imgRight = readImage(GetParam().second);
|
2012-08-17 19:14:14 +08:00
|
|
|
ASSERT_FALSE(imgRight.empty());
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const int ndisp = 64;
|
2012-05-23 20:58:01 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
if (runOnGpu)
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
cv::gpu::StereoBeliefPropagation d_bp(ndisp);
|
|
|
|
|
|
|
|
cv::gpu::GpuMat d_imgLeft(imgLeft);
|
|
|
|
cv::gpu::GpuMat d_imgRight(imgRight);
|
|
|
|
cv::gpu::GpuMat d_dst;
|
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
d_bp(d_imgLeft, d_imgRight, d_dst);
|
2012-08-17 21:34:58 +08:00
|
|
|
|
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
d_bp(d_imgLeft, d_imgRight, d_dst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FAIL();
|
2011-09-12 15:48:09 +08:00
|
|
|
}
|
2011-12-28 20:53:08 +08:00
|
|
|
}
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2011-12-28 20:53:08 +08:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2012-05-23 20:58:01 +08:00
|
|
|
// StereoConstantSpaceBP
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-30 20:23:18 +08:00
|
|
|
PERF_TEST_P(ImagePair, Calib3D_StereoConstantSpaceBP, Values(make_string_pair("gpu/stereobm/aloe-L.png", "gpu/stereobm/aloe-R.png")))
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-08-17 19:14:14 +08:00
|
|
|
declare.time(10.0);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Mat imgLeft = readImage(GetParam().first, cv::IMREAD_GRAYSCALE);
|
2012-08-17 19:14:14 +08:00
|
|
|
ASSERT_FALSE(imgLeft.empty());
|
2012-05-23 20:58:01 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Mat imgRight = readImage(GetParam().second, cv::IMREAD_GRAYSCALE);
|
2012-08-17 19:14:14 +08:00
|
|
|
ASSERT_FALSE(imgRight.empty());
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const int ndisp = 128;
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
if (runOnGpu)
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
cv::gpu::StereoConstantSpaceBP d_csbp(ndisp);
|
|
|
|
|
|
|
|
cv::gpu::GpuMat d_imgLeft(imgLeft);
|
|
|
|
cv::gpu::GpuMat d_imgRight(imgRight);
|
|
|
|
cv::gpu::GpuMat d_dst;
|
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
d_csbp(d_imgLeft, d_imgRight, d_dst);
|
2012-08-17 21:34:58 +08:00
|
|
|
|
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
d_csbp(d_imgLeft, d_imgRight, d_dst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FAIL();
|
2011-09-12 15:48:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-28 20:53:08 +08:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2012-05-23 20:58:01 +08:00
|
|
|
// DisparityBilateralFilter
|
2011-12-28 20:53:08 +08:00
|
|
|
|
2012-08-30 20:23:18 +08:00
|
|
|
PERF_TEST_P(ImagePair, Calib3D_DisparityBilateralFilter, Values(make_string_pair("gpu/stereobm/aloe-L.png", "gpu/stereobm/aloe-disp.png")))
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Mat img = readImage(GetParam().first, cv::IMREAD_GRAYSCALE);
|
2012-08-17 19:14:14 +08:00
|
|
|
ASSERT_FALSE(img.empty());
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Mat disp = readImage(GetParam().second, cv::IMREAD_GRAYSCALE);
|
2012-08-17 19:14:14 +08:00
|
|
|
ASSERT_FALSE(disp.empty());
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const int ndisp = 128;
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
if (runOnGpu)
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
cv::gpu::DisparityBilateralFilter d_filter(ndisp);
|
|
|
|
|
|
|
|
cv::gpu::GpuMat d_img(img);
|
|
|
|
cv::gpu::GpuMat d_disp(disp);
|
|
|
|
cv::gpu::GpuMat d_dst;
|
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
d_filter(d_disp, d_img, d_dst);
|
2012-08-17 21:34:58 +08:00
|
|
|
|
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
d_filter(d_disp, d_img, d_dst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FAIL();
|
2011-09-12 15:48:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-28 20:53:08 +08:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2012-05-23 20:58:01 +08:00
|
|
|
// TransformPoints
|
2011-12-28 20:53:08 +08:00
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
DEF_PARAM_TEST_1(Count, int);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
PERF_TEST_P(Count, Calib3D_TransformPoints, Values(5000, 10000, 20000))
|
2012-05-23 20:58:01 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
const int count = GetParam();
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
cv::Mat src(1, count, CV_32FC3);
|
|
|
|
fillRandom(src, -100, 100);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Mat rvec = cv::Mat::ones(1, 3, CV_32FC1);
|
|
|
|
const cv::Mat tvec = cv::Mat::ones(1, 3, CV_32FC1);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
if (runOnGpu)
|
|
|
|
{
|
|
|
|
cv::gpu::GpuMat d_src(src);
|
|
|
|
cv::gpu::GpuMat d_dst;
|
2012-08-17 19:14:14 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
cv::gpu::transformPoints(d_src, rvec, tvec, d_dst);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
cv::gpu::transformPoints(d_src, rvec, tvec, d_dst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
FAIL();
|
2011-09-12 15:48:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-28 20:53:08 +08:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2012-05-23 20:58:01 +08:00
|
|
|
// ProjectPoints
|
2011-12-28 20:53:08 +08:00
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
PERF_TEST_P(Count, Calib3D_ProjectPoints, Values(5000, 10000, 20000))
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
const int count = GetParam();
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
cv::Mat src(1, count, CV_32FC3);
|
|
|
|
fillRandom(src, -100, 100);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Mat rvec = cv::Mat::ones(1, 3, CV_32FC1);
|
|
|
|
const cv::Mat tvec = cv::Mat::ones(1, 3, CV_32FC1);
|
|
|
|
const cv::Mat camera_mat = cv::Mat::ones(3, 3, CV_32FC1);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
if (runOnGpu)
|
|
|
|
{
|
|
|
|
cv::gpu::GpuMat d_src(src);
|
|
|
|
cv::gpu::GpuMat d_dst;
|
2012-08-17 19:14:14 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
cv::gpu::projectPoints(d_src, rvec, tvec, camera_mat, cv::Mat(), d_dst);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
cv::gpu::projectPoints(d_src, rvec, tvec, camera_mat, cv::Mat(), d_dst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2012-05-23 20:58:01 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
cv::Mat dst;
|
|
|
|
|
|
|
|
cv::projectPoints(src, rvec, tvec, camera_mat, cv::noArray(), dst);
|
|
|
|
|
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
cv::projectPoints(src, rvec, tvec, camera_mat, cv::noArray(), dst);
|
|
|
|
}
|
2012-05-23 20:58:01 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// SolvePnPRansac
|
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
PERF_TEST_P(Count, Calib3D_SolvePnPRansac, Values(5000, 10000, 20000))
|
2012-05-23 20:58:01 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
declare.time(10.0);
|
2012-05-23 20:58:01 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const int count = GetParam();
|
2012-05-23 20:58:01 +08:00
|
|
|
|
|
|
|
cv::Mat object(1, count, CV_32FC3);
|
2012-08-17 19:14:14 +08:00
|
|
|
fillRandom(object, -100, 100);
|
2012-05-23 20:58:01 +08:00
|
|
|
|
|
|
|
cv::Mat camera_mat(3, 3, CV_32FC1);
|
2012-08-17 19:14:14 +08:00
|
|
|
fillRandom(camera_mat, 0.5, 1);
|
2012-05-23 20:58:01 +08:00
|
|
|
camera_mat.at<float>(0, 1) = 0.f;
|
|
|
|
camera_mat.at<float>(1, 0) = 0.f;
|
|
|
|
camera_mat.at<float>(2, 0) = 0.f;
|
|
|
|
camera_mat.at<float>(2, 1) = 0.f;
|
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Mat dist_coef(1, 8, CV_32F, cv::Scalar::all(0));
|
2012-05-23 20:58:01 +08:00
|
|
|
|
|
|
|
std::vector<cv::Point2f> image_vec;
|
|
|
|
cv::Mat rvec_gold(1, 3, CV_32FC1);
|
2012-08-17 19:14:14 +08:00
|
|
|
fillRandom(rvec_gold, 0, 1);
|
2012-05-23 20:58:01 +08:00
|
|
|
cv::Mat tvec_gold(1, 3, CV_32FC1);
|
2012-08-17 19:14:14 +08:00
|
|
|
fillRandom(tvec_gold, 0, 1);
|
2012-05-23 20:58:01 +08:00
|
|
|
cv::projectPoints(object, rvec_gold, tvec_gold, camera_mat, dist_coef, image_vec);
|
|
|
|
|
|
|
|
cv::Mat image(1, count, CV_32FC2, &image_vec[0]);
|
|
|
|
|
|
|
|
cv::Mat rvec;
|
|
|
|
cv::Mat tvec;
|
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
if (runOnGpu)
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-05-23 20:58:01 +08:00
|
|
|
cv::gpu::solvePnPRansac(object, image, camera_mat, dist_coef, rvec, tvec);
|
2012-08-17 21:34:58 +08:00
|
|
|
|
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
cv::gpu::solvePnPRansac(object, image, camera_mat, dist_coef, rvec, tvec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cv::solvePnPRansac(object, image, camera_mat, dist_coef, rvec, tvec);
|
|
|
|
|
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
cv::solvePnPRansac(object, image, camera_mat, dist_coef, rvec, tvec);
|
|
|
|
}
|
2011-09-12 15:48:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-28 20:53:08 +08:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2012-05-23 20:58:01 +08:00
|
|
|
// ReprojectImageTo3D
|
2011-12-28 20:53:08 +08:00
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
PERF_TEST_P(Sz_Depth, Calib3D_ReprojectImageTo3D, Combine(GPU_TYPICAL_MAT_SIZES, Values(CV_8U, CV_16S)))
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Size size = GET_PARAM(0);
|
|
|
|
const int depth = GET_PARAM(1);
|
2012-05-23 20:58:01 +08:00
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
cv::Mat src(size, depth);
|
|
|
|
fillRandom(src, 5.0, 30.0);
|
2012-05-23 20:58:01 +08:00
|
|
|
|
|
|
|
cv::Mat Q(4, 4, CV_32FC1);
|
2012-08-17 19:14:14 +08:00
|
|
|
fillRandom(Q, 0.1, 1.0);
|
2012-05-23 20:58:01 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
if (runOnGpu)
|
|
|
|
{
|
|
|
|
cv::gpu::GpuMat d_src(src);
|
|
|
|
cv::gpu::GpuMat d_dst;
|
2012-05-23 20:58:01 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
cv::gpu::reprojectImageTo3D(d_src, d_dst, Q);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
cv::gpu::reprojectImageTo3D(d_src, d_dst, Q);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2012-05-23 20:58:01 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
cv::Mat dst;
|
|
|
|
|
|
|
|
cv::reprojectImageTo3D(src, dst, Q);
|
|
|
|
|
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
cv::reprojectImageTo3D(src, dst, Q);
|
|
|
|
}
|
2012-05-23 20:58:01 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// DrawColorDisp
|
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
PERF_TEST_P(Sz_Depth, Calib3D_DrawColorDisp, Combine(GPU_TYPICAL_MAT_SIZES, Values(CV_8U, CV_16S)))
|
2012-05-23 20:58:01 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
const cv::Size size = GET_PARAM(0);
|
|
|
|
const int type = GET_PARAM(1);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
cv::Mat src(size, type);
|
|
|
|
fillRandom(src, 0, 255);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
if (runOnGpu)
|
|
|
|
{
|
|
|
|
cv::gpu::GpuMat d_src(src);
|
|
|
|
cv::gpu::GpuMat d_dst;
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
cv::gpu::drawColorDisp(d_src, d_dst, 255);
|
2011-09-12 15:48:09 +08:00
|
|
|
|
2012-08-17 21:34:58 +08:00
|
|
|
TEST_CYCLE()
|
|
|
|
{
|
|
|
|
cv::gpu::drawColorDisp(d_src, d_dst, 255);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2011-09-12 15:48:09 +08:00
|
|
|
{
|
2012-08-17 21:34:58 +08:00
|
|
|
FAIL();
|
2011-09-12 15:48:09 +08:00
|
|
|
}
|
|
|
|
}
|
2011-12-28 20:53:08 +08:00
|
|
|
|
2012-08-17 19:14:14 +08:00
|
|
|
} // namespace
|