From 08c268bfc51fa7105af504e3e4dec5078b7e3517 Mon Sep 17 00:00:00 2001 From: Christine Poerschke <6458642+cpoerschke@users.noreply.github.com> Date: Sun, 24 Apr 2022 21:32:44 +0100 Subject: [PATCH] remove Imgproc_cvWarpAffine.regression test --- modules/imgproc/test/test_imgwarp.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/modules/imgproc/test/test_imgwarp.cpp b/modules/imgproc/test/test_imgwarp.cpp index c9b38f3b59..dbc8fb8704 100644 --- a/modules/imgproc/test/test_imgwarp.cpp +++ b/modules/imgproc/test/test_imgwarp.cpp @@ -1137,17 +1137,6 @@ static void check_resize_area(const Mat& expected, const Mat& actual, double tol /////////////////////////////////////////////////////////////////////////// -TEST(Imgproc_cvWarpAffine, regression) -{ - Mat src(Size(100, 100), CV_8UC1); - Mat dst(Size(100, 100), CV_8UC1); - - int w = src.cols; - int h = src.rows; - Mat M = getRotationMatrix2D(Point2f(w*0.5f, h*0.5f), 45.0, 1.0); - warpAffine(src, dst, M, Size(w, h)); -} - TEST(Imgproc_fitLine_vector_3d, regression) { std::vector points_vector;