mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 15:23:05 +04:00
1666195984
G-API: Align operators tests to new test model (#14922) * Align operators tests to new test model * Change init function in NotOperatorTest
83 lines
2.3 KiB
C++
83 lines
2.3 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
|
|
|
|
|
|
#ifndef OPENCV_GAPI_OPERATOR_TESTS_INL_COMMON_HPP
|
|
#define OPENCV_GAPI_OPERATOR_TESTS_INL_COMMON_HPP
|
|
|
|
#include "gapi_operators_tests.hpp"
|
|
|
|
namespace opencv_test
|
|
{
|
|
TEST_P(MathOperatorMatScalarTest, OperatorAccuracyTest )
|
|
{
|
|
auto fun_gapi = op.g_api_function;
|
|
auto fun_ocv = op.ocv_function ;
|
|
|
|
// G-API code & corresponding OpenCV code ////////////////////////////////
|
|
|
|
cv::GMat in1;
|
|
cv::GScalar in2;
|
|
auto out = fun_gapi(in1, in2);
|
|
cv::GComputation c(GIn(in1, in2), GOut(out));
|
|
|
|
c.apply(gin(in_mat1, sc), gout(out_mat_gapi), getCompileArgs());
|
|
|
|
fun_ocv(in_mat1, sc, out_mat_ocv);
|
|
|
|
// Comparison //////////////////////////////////////////////////////////////
|
|
{
|
|
EXPECT_TRUE(cmpF(out_mat_gapi, out_mat_ocv));
|
|
EXPECT_EQ(out_mat_gapi.size(), sz);
|
|
}
|
|
}
|
|
|
|
TEST_P(MathOperatorMatMatTest, OperatorAccuracyTest )
|
|
{
|
|
auto fun_gapi = op.g_api_function;
|
|
auto fun_ocv = op.ocv_function ;
|
|
|
|
// G-API code & corresponding OpenCV code ////////////////////////////////
|
|
|
|
cv::GMat in1;
|
|
cv::GMat in2;
|
|
auto out = fun_gapi(in1, in2);
|
|
cv::GComputation c(GIn(in1, in2), GOut(out));
|
|
|
|
c.apply(gin(in_mat1, in_mat2), gout(out_mat_gapi), getCompileArgs());
|
|
|
|
fun_ocv(in_mat1, in_mat2, out_mat_ocv);
|
|
|
|
// Comparison //////////////////////////////////////////////////////////////
|
|
{
|
|
EXPECT_TRUE(cmpF(out_mat_gapi, out_mat_ocv));
|
|
EXPECT_EQ(out_mat_gapi.size(), sz);
|
|
}
|
|
}
|
|
|
|
TEST_P(NotOperatorTest, OperatorAccuracyTest)
|
|
{
|
|
// G-API code //////////////////////////////////////////////////////////////
|
|
cv::GMat in;
|
|
auto out = ~in;
|
|
cv::GComputation c(in, out);
|
|
|
|
c.apply(in_mat1, out_mat_gapi, getCompileArgs());
|
|
|
|
// OpenCV code /////////////////////////////////////////////////////////////
|
|
{
|
|
out_mat_ocv =~in_mat1;
|
|
}
|
|
// Comparison //////////////////////////////////////////////////////////////
|
|
{
|
|
EXPECT_EQ(0, cv::countNonZero(out_mat_ocv != out_mat_gapi));
|
|
EXPECT_EQ(out_mat_gapi.size(), sz);
|
|
}
|
|
}
|
|
} // opencv_test
|
|
|
|
#endif // OPENCV_GAPI_OPERATOR_TESTS_INL_COMMON_HPP
|