mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 15:23:05 +04:00
Merge pull request #21157 from alexgiving:atrutnev/move_resize
GAPI: Move Resize kernel from core to imgproc * Move Resize kernel from core to imgproc * Applied style comments * Adding backward compatibility * Applied Asya PR
This commit is contained in:
@@ -791,8 +791,15 @@ TEST(Fluid, UnusedNodeOutputCompileTest)
|
||||
TEST(Fluid, UnusedNodeOutputReshapeTest)
|
||||
{
|
||||
const auto test_size = cv::Size(8, 8);
|
||||
const auto get_compile_args =
|
||||
[] () { return cv::compile_args(cv::gapi::core::fluid::kernels()); };
|
||||
|
||||
const auto get_compile_args = [] () {
|
||||
return cv::compile_args(
|
||||
cv::gapi::combine(
|
||||
cv::gapi::core::fluid::kernels(),
|
||||
cv::gapi::imgproc::fluid::kernels()
|
||||
)
|
||||
);
|
||||
};
|
||||
|
||||
cv::GMat in;
|
||||
cv::GMat a, b, c, d;
|
||||
|
||||
Reference in New Issue
Block a user