mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
3.0 KiB
63 lines
3.0 KiB
5 years ago
|
// 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) 2020 Intel Corporation
|
||
|
|
||
|
|
||
|
#include "../test_precomp.hpp"
|
||
|
|
||
|
#include "../common/gapi_video_tests.hpp"
|
||
|
#include <opencv2/gapi/cpu/video.hpp>
|
||
|
|
||
|
namespace
|
||
|
{
|
||
|
#define VIDEO_CPU [] () { return cv::compile_args(cv::gapi::video::cpu::kernels()); }
|
||
|
|
||
|
#ifdef HAVE_OPENCV_VIDEO
|
||
|
#define WITH_VIDEO(X) X
|
||
|
#else
|
||
|
#define WITH_VIDEO(X) DISABLED_##X
|
||
|
#endif // HAVE_OPENCV_VIDEO
|
||
|
|
||
|
#define INSTANTIATE_TEST_CASE_MACRO_P(prefix, test_case_name, generator, ...) \
|
||
|
INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator, __VA_ARGS__)
|
||
|
} // anonymous namespace
|
||
|
|
||
|
namespace opencv_test
|
||
|
{
|
||
|
INSTANTIATE_TEST_CASE_MACRO_P(WITH_VIDEO(OptFlowLKTestCPU), OptFlowLKTest,
|
||
|
Combine(Values(VIDEO_CPU),
|
||
|
Values("cv/optflow/rock_%01d.bmp",
|
||
|
"cv/optflow/frames/1080p_%02d.png"),
|
||
|
Values(1, 3, 4),
|
||
|
Values(std::make_tuple(9, 9), std::make_tuple(15, 15)),
|
||
|
Values(7, 11),
|
||
|
Values(cv::TermCriteria(cv::TermCriteria::COUNT |
|
||
|
cv::TermCriteria::EPS,
|
||
|
30, 0.01))));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_MACRO_P(WITH_VIDEO(OptFlowLKTestForPyrCPU), OptFlowLKTestForPyr,
|
||
|
Combine(Values(VIDEO_CPU),
|
||
|
Values("cv/optflow/rock_%01d.bmp",
|
||
|
"cv/optflow/frames/1080p_%02d.png"),
|
||
|
Values(1, 3, 4),
|
||
|
Values(std::make_tuple(9, 9), std::make_tuple(15, 15)),
|
||
|
Values(7, 11),
|
||
|
Values(cv::TermCriteria(cv::TermCriteria::COUNT |
|
||
|
cv::TermCriteria::EPS,
|
||
|
30, 0.01)),
|
||
|
testing::Bool()));
|
||
|
|
||
|
INSTANTIATE_TEST_CASE_MACRO_P(WITH_VIDEO(OptFlowLKInternalTestCPU), OptFlowLKTestForPyr,
|
||
|
Combine(Values(VIDEO_CPU),
|
||
|
Values("cv/optflow/rock_%01d.bmp"),
|
||
|
Values(1),
|
||
|
Values(std::make_tuple(10, 10)),
|
||
|
Values(15),
|
||
|
Values(cv::TermCriteria(cv::TermCriteria::COUNT |
|
||
|
cv::TermCriteria::EPS,
|
||
|
21, 0.05)),
|
||
|
Values(true)));
|
||
|
} // opencv_test
|