mirror of
https://github.com/opencv/opencv.git
synced 2025-01-14 11:51:44 +08:00
dcaf923517
Conflicts: 3rdparty/ffmpeg/ffmpeg_version.cmake cmake/OpenCVFindLibsGrfmt.cmake cmake/templates/cvconfig.h.cmake modules/bioinspired/doc/retina/index.rst modules/calib3d/doc/camera_calibration_and_3d_reconstruction.rst modules/calib3d/src/precomp.hpp modules/contrib/src/inputoutput.cpp modules/contrib/src/precomp.hpp modules/core/include/opencv2/core/internal.hpp modules/core/include/opencv2/core/types_c.h modules/core/src/drawing.cpp modules/core/src/precomp.hpp modules/core/src/system.cpp modules/features2d/doc/common_interfaces_of_descriptor_matchers.rst modules/features2d/doc/common_interfaces_of_feature_detectors.rst modules/features2d/include/opencv2/features2d/features2d.hpp modules/features2d/src/precomp.hpp modules/flann/src/precomp.hpp modules/gpu/doc/camera_calibration_and_3d_reconstruction.rst modules/gpu/doc/image_filtering.rst modules/gpu/doc/image_processing.rst modules/gpu/doc/video.rst modules/gpu/perf/perf_imgproc.cpp modules/gpu/perf4au/main.cpp modules/gpu/src/imgproc.cpp modules/gpu/src/precomp.hpp modules/gpu/test/test_imgproc.cpp modules/highgui/CMakeLists.txt modules/highgui/test/test_precomp.hpp modules/imgproc/doc/structural_analysis_and_shape_descriptors.rst modules/imgproc/src/precomp.hpp modules/java/generator/src/cpp/Mat.cpp modules/legacy/src/precomp.hpp modules/ml/doc/k_nearest_neighbors.rst modules/ml/src/precomp.hpp modules/nonfree/doc/feature_detection.rst modules/nonfree/src/precomp.hpp modules/objdetect/include/opencv2/objdetect/objdetect.hpp modules/objdetect/src/cascadedetect.cpp modules/objdetect/src/hog.cpp modules/objdetect/src/precomp.hpp modules/objdetect/test/test_latentsvmdetector.cpp modules/ocl/src/hog.cpp modules/ocl/src/opencl/objdetect_hog.cl modules/ocl/src/precomp.hpp modules/photo/src/precomp.hpp modules/stitching/src/precomp.hpp modules/superres/perf/perf_precomp.hpp modules/superres/src/optical_flow.cpp modules/superres/src/precomp.hpp modules/superres/test/test_precomp.hpp modules/ts/include/opencv2/ts.hpp modules/video/src/precomp.hpp modules/videostab/src/precomp.hpp modules/world/src/precomp.hpp
217 lines
6.0 KiB
C++
217 lines
6.0 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) 2000-2008, Intel Corporation, all rights reserved.
|
|
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
|
|
// Third party copyrights are property of their respective owners.
|
|
//
|
|
// 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 materials 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"
|
|
|
|
#ifdef HAVE_CUDA
|
|
|
|
using namespace cvtest;
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// HistEven
|
|
|
|
PARAM_TEST_CASE(HistEven, cv::gpu::DeviceInfo, cv::Size)
|
|
{
|
|
cv::gpu::DeviceInfo devInfo;
|
|
|
|
cv::Size size;
|
|
|
|
virtual void SetUp()
|
|
{
|
|
devInfo = GET_PARAM(0);
|
|
size = GET_PARAM(1);
|
|
|
|
cv::gpu::setDevice(devInfo.deviceID());
|
|
}
|
|
};
|
|
|
|
GPU_TEST_P(HistEven, Accuracy)
|
|
{
|
|
cv::Mat src = randomMat(size, CV_8UC1);
|
|
|
|
int hbins = 30;
|
|
float hranges[] = {50.0f, 200.0f};
|
|
|
|
cv::gpu::GpuMat hist;
|
|
cv::gpu::histEven(loadMat(src), hist, hbins, (int) hranges[0], (int) hranges[1]);
|
|
|
|
cv::Mat hist_gold;
|
|
|
|
int histSize[] = {hbins};
|
|
const float* ranges[] = {hranges};
|
|
int channels[] = {0};
|
|
cv::calcHist(&src, 1, channels, cv::Mat(), hist_gold, 1, histSize, ranges);
|
|
|
|
hist_gold = hist_gold.t();
|
|
hist_gold.convertTo(hist_gold, CV_32S);
|
|
|
|
EXPECT_MAT_NEAR(hist_gold, hist, 0.0);
|
|
}
|
|
|
|
INSTANTIATE_TEST_CASE_P(GPU_ImgProc, HistEven, testing::Combine(
|
|
ALL_DEVICES,
|
|
DIFFERENT_SIZES));
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// CalcHist
|
|
|
|
PARAM_TEST_CASE(CalcHist, cv::gpu::DeviceInfo, cv::Size)
|
|
{
|
|
cv::gpu::DeviceInfo devInfo;
|
|
|
|
cv::Size size;
|
|
|
|
virtual void SetUp()
|
|
{
|
|
devInfo = GET_PARAM(0);
|
|
size = GET_PARAM(1);
|
|
|
|
cv::gpu::setDevice(devInfo.deviceID());
|
|
}
|
|
};
|
|
|
|
GPU_TEST_P(CalcHist, Accuracy)
|
|
{
|
|
cv::Mat src = randomMat(size, CV_8UC1);
|
|
|
|
cv::gpu::GpuMat hist;
|
|
cv::gpu::calcHist(loadMat(src), hist);
|
|
|
|
cv::Mat hist_gold;
|
|
|
|
const int hbins = 256;
|
|
const float hranges[] = {0.0f, 256.0f};
|
|
const int histSize[] = {hbins};
|
|
const float* ranges[] = {hranges};
|
|
const int channels[] = {0};
|
|
|
|
cv::calcHist(&src, 1, channels, cv::Mat(), hist_gold, 1, histSize, ranges);
|
|
hist_gold = hist_gold.reshape(1, 1);
|
|
hist_gold.convertTo(hist_gold, CV_32S);
|
|
|
|
EXPECT_MAT_NEAR(hist_gold, hist, 0.0);
|
|
}
|
|
|
|
INSTANTIATE_TEST_CASE_P(GPU_ImgProc, CalcHist, testing::Combine(
|
|
ALL_DEVICES,
|
|
DIFFERENT_SIZES));
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// EqualizeHist
|
|
|
|
PARAM_TEST_CASE(EqualizeHist, cv::gpu::DeviceInfo, cv::Size)
|
|
{
|
|
cv::gpu::DeviceInfo devInfo;
|
|
cv::Size size;
|
|
|
|
virtual void SetUp()
|
|
{
|
|
devInfo = GET_PARAM(0);
|
|
size = GET_PARAM(1);
|
|
|
|
cv::gpu::setDevice(devInfo.deviceID());
|
|
}
|
|
};
|
|
|
|
GPU_TEST_P(EqualizeHist, Accuracy)
|
|
{
|
|
cv::Mat src = randomMat(size, CV_8UC1);
|
|
|
|
cv::gpu::GpuMat dst;
|
|
cv::gpu::equalizeHist(loadMat(src), dst);
|
|
|
|
cv::Mat dst_gold;
|
|
cv::equalizeHist(src, dst_gold);
|
|
|
|
EXPECT_MAT_NEAR(dst_gold, dst, 3.0);
|
|
}
|
|
|
|
INSTANTIATE_TEST_CASE_P(GPU_ImgProc, EqualizeHist, testing::Combine(
|
|
ALL_DEVICES,
|
|
DIFFERENT_SIZES));
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// CLAHE
|
|
|
|
namespace
|
|
{
|
|
IMPLEMENT_PARAM_CLASS(ClipLimit, double)
|
|
}
|
|
|
|
PARAM_TEST_CASE(CLAHE, cv::gpu::DeviceInfo, cv::Size, ClipLimit)
|
|
{
|
|
cv::gpu::DeviceInfo devInfo;
|
|
cv::Size size;
|
|
double clipLimit;
|
|
|
|
virtual void SetUp()
|
|
{
|
|
devInfo = GET_PARAM(0);
|
|
size = GET_PARAM(1);
|
|
clipLimit = GET_PARAM(2);
|
|
|
|
cv::gpu::setDevice(devInfo.deviceID());
|
|
}
|
|
};
|
|
|
|
GPU_TEST_P(CLAHE, Accuracy)
|
|
{
|
|
cv::Mat src = randomMat(size, CV_8UC1);
|
|
|
|
cv::Ptr<cv::gpu::CLAHE> clahe = cv::gpu::createCLAHE(clipLimit);
|
|
cv::gpu::GpuMat dst;
|
|
clahe->apply(loadMat(src), dst);
|
|
|
|
cv::Ptr<cv::CLAHE> clahe_gold = cv::createCLAHE(clipLimit);
|
|
cv::Mat dst_gold;
|
|
clahe_gold->apply(src, dst_gold);
|
|
|
|
ASSERT_MAT_NEAR(dst_gold, dst, 1.0);
|
|
}
|
|
|
|
INSTANTIATE_TEST_CASE_P(GPU_ImgProc, CLAHE, testing::Combine(
|
|
ALL_DEVICES,
|
|
DIFFERENT_SIZES,
|
|
testing::Values(0.0, 40.0)));
|
|
|
|
#endif // HAVE_CUDA
|