mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 20:20:20 +08:00
228 lines
12 KiB
C++
228 lines
12 KiB
C++
|
// This file is part of OpenCV project.
|
||
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
||
|
// of this distribution and at http://opencv.org/license.html.
|
||
|
//
|
||
|
// Copyright (C) 2018 Intel Corporation
|
||
|
|
||
|
|
||
|
#include "../test_precomp.hpp"
|
||
|
|
||
|
#include "../common/gapi_imgproc_tests.hpp"
|
||
|
#include "opencv2/gapi/gpu/imgproc.hpp"
|
||
|
|
||
|
#define IMGPROC_GPU cv::gapi::imgproc::gpu::kernels()
|
||
|
|
||
|
namespace opencv_test
|
||
|
{
|
||
|
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(Filter2DTestGPU, Filter2DTest,
|
||
|
Combine(Values(AbsTolerance_Float_Int(1e-5, 1e-3).to_compare_f()),
|
||
|
Values(CV_8UC1, CV_8UC3, CV_16UC1, CV_16SC1, CV_32FC1),
|
||
|
Values(3, 4, 5, 7),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480),
|
||
|
cv::Size(128, 128)),
|
||
|
Values(cv::BORDER_DEFAULT),
|
||
|
Values(-1, CV_32F),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(BoxFilterTestGPU, BoxFilterTest,
|
||
|
Combine(Values(AbsTolerance_Float_Int(1e-5, 1e-3).to_compare_f()),
|
||
|
Values(/*CV_8UC1,*/ CV_8UC3, CV_16UC1, CV_16SC1, CV_32FC1),
|
||
|
Values(3,5),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
Values(cv::BORDER_DEFAULT),
|
||
|
Values(-1, CV_32F),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU)))); //TODO: 8UC1 doesn't work
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(SepFilterTestGPU_8U, SepFilterTest,
|
||
|
Combine(Values(AbsToleranceSepFilter(1e-4f).to_compare_f()),
|
||
|
Values(CV_8UC1, CV_8UC3),
|
||
|
Values(3),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
Values(-1, CV_16S, CV_32F),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(SepFilterTestGPU_other, SepFilterTest,
|
||
|
Combine(Values(AbsToleranceSepFilter(1e-4f).to_compare_f()),
|
||
|
Values(CV_16UC1, CV_16SC1, CV_32FC1),
|
||
|
Values(3),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
Values(-1, CV_32F),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(BlurTestGPU, BlurTest,
|
||
|
Combine(Values(AbsTolerance_Float_Int(1e-4, 1e-2).to_compare_f()),
|
||
|
Values(CV_8UC1, CV_8UC3, CV_16UC1, CV_16SC1, CV_32FC1),
|
||
|
Values(3,5),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
Values(cv::BORDER_DEFAULT),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(gaussBlurTestGPU, GaussianBlurTest,
|
||
|
Combine(Values(AbsToleranceGaussianBlur_Float_Int(1e-5, 0.05).to_compare_f()), //TODO: too relaxed?
|
||
|
Values(CV_8UC1, CV_8UC3, CV_16UC1, CV_16SC1, CV_32FC1),
|
||
|
Values(3, 5),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(MedianBlurTestGPU, MedianBlurTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(CV_8UC1, CV_8UC3, CV_16UC1, CV_16SC1, CV_32FC1),
|
||
|
Values(3, 5),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(ErodeTestGPU, ErodeTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(CV_8UC1, CV_8UC3, CV_16UC1, CV_16SC1, CV_32FC1),
|
||
|
Values(3, 5),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
Values(cv::MorphShapes::MORPH_RECT,
|
||
|
cv::MorphShapes::MORPH_CROSS,
|
||
|
cv::MorphShapes::MORPH_ELLIPSE),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(Erode3x3TestGPU, Erode3x3Test,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(CV_8UC1, CV_8UC3, CV_16UC1, CV_16SC1, CV_32FC1),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(1,2,4),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(DilateTestGPU, DilateTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(CV_8UC1, CV_8UC3, CV_16UC1, CV_16SC1, CV_32FC1),
|
||
|
Values(3, 5),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
Values(cv::MorphShapes::MORPH_RECT,
|
||
|
cv::MorphShapes::MORPH_CROSS,
|
||
|
cv::MorphShapes::MORPH_ELLIPSE),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(Dilate3x3TestGPU, Dilate3x3Test,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(CV_8UC1, CV_8UC3, CV_16UC1, CV_16SC1, CV_32FC1),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(1,2,4),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(SobelTestGPU, SobelTest,
|
||
|
Combine(Values(AbsTolerance_Float_Int(1e-4, 1e-4).to_compare_f()),
|
||
|
Values(CV_8UC1, CV_8UC3, CV_16UC1, CV_16SC1/*, CV_32FC1*/), //TODO: CV_32FC1 fails accuracy
|
||
|
Values(3, 5),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
Values(-1, CV_32F),
|
||
|
Values(0, 1),
|
||
|
Values(1, 2),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(EqHistTestGPU, EqHistTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(CannyTestGPU, CannyTest,
|
||
|
Combine(Values(AbsTolerance_Float_Int(1e-4, 1e-2).to_compare_f()),
|
||
|
Values(CV_8UC1, CV_8UC3),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
Values(3.0, 120.0),
|
||
|
Values(125.0, 240.0),
|
||
|
Values(3, 5),
|
||
|
testing::Bool(),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(RGB2GrayTestGPU, RGB2GrayTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(BGR2GrayTestGPU, BGR2GrayTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(RGB2YUVTestGPU, RGB2YUVTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(YUV2RGBTestGPU, YUV2RGBTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(RGB2LabTestGPU, RGB2LabTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(BGR2LUVTestGPU, BGR2LUVTest,
|
||
|
Combine(Values(ToleranceTriple(0.25 * 3, 0.01 * 3, 0.0001 * 3).to_compare_f()),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(LUV2BGRTestGPU, LUV2BGRTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(BGR2YUVTestGPU, BGR2YUVTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_P(YUV2BGRTestGPU, YUV2BGRTest,
|
||
|
Combine(Values(AbsExact().to_compare_f()),
|
||
|
Values(cv::Size(1280, 720),
|
||
|
cv::Size(640, 480)),
|
||
|
/*init output matrices or not*/ testing::Bool(),
|
||
|
Values(cv::compile_args(IMGPROC_GPU))));
|
||
|
|
||
|
|
||
|
} // opencv_test
|