mirror of
https://github.com/opencv/opencv.git
synced 2024-12-17 02:48:01 +08:00
f07769e9d8
Conflicts: cmake/OpenCVDetectOpenCL.cmake cmake/OpenCVModule.cmake modules/imgproc/src/floodfill.cpp modules/nonfree/src/surf.ocl.cpp modules/ocl/include/opencv2/ocl/ocl.hpp modules/ocl/include/opencv2/ocl/private/util.hpp modules/ocl/perf/main.cpp modules/ocl/src/arithm.cpp modules/ocl/src/blend.cpp modules/ocl/src/build_warps.cpp modules/ocl/src/canny.cpp modules/ocl/src/cl_programcache.hpp modules/ocl/src/columnsum.cpp modules/ocl/src/haar.cpp modules/ocl/src/hog.cpp modules/ocl/src/imgproc.cpp modules/ocl/src/initialization.cpp modules/ocl/src/match_template.cpp modules/ocl/src/matrix_operations.cpp modules/ocl/src/mcwutil.cpp modules/ocl/src/moments.cpp modules/ocl/src/mssegmentation.cpp modules/ocl/src/precomp.hpp modules/ocl/src/pyrdown.cpp modules/ocl/src/pyrlk.cpp modules/ocl/src/pyrup.cpp modules/ocl/src/split_merge.cpp modules/ocl/src/stereo_csbp.cpp modules/ocl/src/stereobm.cpp modules/ocl/test/main.cpp samples/ocl/bgfg_segm.cpp samples/ocl/facedetect.cpp samples/ocl/pyrlk_optical_flow.cpp samples/ocl/squares.cpp samples/ocl/stereo_match.cpp samples/ocl/surf_matcher.cpp samples/ocl/tvl1_optical_flow.cpp
145 lines
4.9 KiB
C++
145 lines
4.9 KiB
C++
/*M///////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
|
|
//
|
|
// By downloading, copying, installing or using the software you agree to this license.
|
|
// If you do not agree to this license, do not download, install,
|
|
// copy or use the software.
|
|
//
|
|
//
|
|
// License Agreement
|
|
// For Open Source Computer Vision Library
|
|
//
|
|
// Copyright (C) 2010-2013, Multicoreware, Inc., all rights reserved.
|
|
// Copyright (C) 2010-2013, Advanced Micro Devices, Inc., all rights reserved.
|
|
// Third party copyrights are property of their respective owners.
|
|
//
|
|
// @Authors
|
|
// Peng Xiao, pengxiao@multicorewareinc.com
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without modification,
|
|
// are permitted provided that the following conditions are met:
|
|
//
|
|
// * Redistribution's of source code must retain the above copyright notice,
|
|
// this list of conditions and the following disclaimer.
|
|
//
|
|
// * Redistribution's in binary form must reproduce the above copyright notice,
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
// and/or other oclMaterials provided with the distribution.
|
|
//
|
|
// * The name of the copyright holders may not be used to endorse or promote products
|
|
// derived from this software without specific prior written permission.
|
|
//
|
|
// This software is provided by the copyright holders and contributors as is and
|
|
// any express or implied warranties, including, but not limited to, the implied
|
|
// warranties of merchantability and fitness for a particular purpose are disclaimed.
|
|
// In no event shall the Intel Corporation or contributors be liable for any direct,
|
|
// indirect, incidental, special, exemplary, or consequential damages
|
|
// (including, but not limited to, procurement of substitute goods or services;
|
|
// loss of use, data, or profits; or business interruption) however caused
|
|
// and on any theory of liability, whether in contract, strict liability,
|
|
// or tort (including negligence or otherwise) arising in any way out of
|
|
// the use of this software, even if advised of the possibility of such damage.
|
|
//
|
|
//M*/
|
|
|
|
#include "test_precomp.hpp"
|
|
#include "opencv2/opencv_modules.hpp"
|
|
#include "opencv2/bioinspired.hpp"
|
|
#include "opencv2/imgproc.hpp"
|
|
#include "opencv2/highgui.hpp"
|
|
|
|
#if defined(HAVE_OPENCV_OCL)
|
|
|
|
#include "opencv2/ocl.hpp"
|
|
#define RETINA_ITERATIONS 5
|
|
|
|
static double checkNear(const cv::Mat &m1, const cv::Mat &m2)
|
|
{
|
|
return cv::norm(m1, m2, cv::NORM_INF);
|
|
}
|
|
|
|
#define PARAM_TEST_CASE(name, ...) struct name : testing::TestWithParam< std::tr1::tuple< __VA_ARGS__ > >
|
|
#define GET_PARAM(k) std::tr1::get< k >(GetParam())
|
|
|
|
static int oclInit = false;
|
|
|
|
PARAM_TEST_CASE(Retina_OCL, bool, int, bool, double, double)
|
|
{
|
|
bool colorMode;
|
|
int colorSamplingMethod;
|
|
bool useLogSampling;
|
|
double reductionFactor;
|
|
double samplingStrength;
|
|
|
|
cv::ocl::DevicesInfo infos;
|
|
|
|
virtual void SetUp()
|
|
{
|
|
colorMode = GET_PARAM(0);
|
|
colorSamplingMethod = GET_PARAM(1);
|
|
useLogSampling = GET_PARAM(2);
|
|
reductionFactor = GET_PARAM(3);
|
|
samplingStrength = GET_PARAM(4);
|
|
|
|
if(!oclInit)
|
|
{
|
|
cv::ocl::getOpenCLDevices(infos);
|
|
std::cout << "Device name:" << infos[0]->deviceName << std::endl;
|
|
oclInit = true;
|
|
}
|
|
}
|
|
};
|
|
|
|
TEST_P(Retina_OCL, Accuracy)
|
|
{
|
|
using namespace cv;
|
|
Mat input = imread(cvtest::TS::ptr()->get_data_path() + "shared/lena.png", colorMode);
|
|
CV_Assert(!input.empty());
|
|
ocl::oclMat ocl_input(input);
|
|
|
|
Ptr<bioinspired::Retina> ocl_retina = bioinspired::createRetina_OCL(
|
|
input.size(),
|
|
colorMode,
|
|
colorSamplingMethod,
|
|
useLogSampling,
|
|
reductionFactor,
|
|
samplingStrength);
|
|
|
|
Ptr<bioinspired::Retina> gold_retina = bioinspired::createRetina(
|
|
input.size(),
|
|
colorMode,
|
|
colorSamplingMethod,
|
|
useLogSampling,
|
|
reductionFactor,
|
|
samplingStrength);
|
|
|
|
Mat gold_parvo;
|
|
Mat gold_magno;
|
|
ocl::oclMat ocl_parvo;
|
|
ocl::oclMat ocl_magno;
|
|
|
|
for(int i = 0; i < RETINA_ITERATIONS; i ++)
|
|
{
|
|
ocl_retina->run(ocl_input);
|
|
gold_retina->run(input);
|
|
|
|
gold_retina->getParvo(gold_parvo);
|
|
gold_retina->getMagno(gold_magno);
|
|
|
|
ocl_retina->getParvo(ocl_parvo);
|
|
ocl_retina->getMagno(ocl_magno);
|
|
|
|
EXPECT_LE(checkNear(gold_parvo, (Mat)ocl_parvo), 1.0);
|
|
EXPECT_LE(checkNear(gold_magno, (Mat)ocl_magno), 1.0);
|
|
}
|
|
}
|
|
|
|
INSTANTIATE_TEST_CASE_P(Contrib, Retina_OCL, testing::Combine(
|
|
testing::Values(false, true),
|
|
testing::Values((int)cv::bioinspired::RETINA_COLOR_BAYER),
|
|
testing::Values(false/*,true*/),
|
|
testing::Values(1.0, 0.5),
|
|
testing::Values(10.0, 5.0)));
|
|
#endif
|